Merge pull request #40 from bucolucas/fix-import-issue

Fix import issue in ai_providers.py
This commit is contained in:
2024-08-18 13:47:09 -05:00
committed by GitHub
+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