Fix import issue in ai_providers.py

This commit is contained in:
2024-08-18 13:45:34 -05:00
parent 3b7f517c3c
commit 5563760626
+5 -1
View File
@@ -4,7 +4,11 @@ import logging
import anthropic
from openai import OpenAI
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):
@abstractmethod