Fix import issue in ai_providers.py
This commit is contained in:
+5
-1
@@ -4,7 +4,11 @@ import logging
|
|||||||
import anthropic
|
import anthropic
|
||||||
from openai import OpenAI
|
from openai import OpenAI
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
from functions import functions
|
from tools.github_tool import GitHubTool
|
||||||
|
|
||||||
|
# Initialize GitHubTool and get functions
|
||||||
|
github_tool = GitHubTool()
|
||||||
|
functions = github_tool.get_functions()
|
||||||
|
|
||||||
class AIProvider(ABC):
|
class AIProvider(ABC):
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user