removed unnecessary files

This commit is contained in:
2024-08-18 14:27:20 -05:00
parent 3acad2f861
commit a8bda7622e
6 changed files with 2 additions and 296 deletions
+2 -1
View File
@@ -8,13 +8,14 @@ from telegram.ext import Application, CommandHandler, MessageHandler, filters, C
from openai import OpenAI
from dotenv import load_dotenv
from tools.base_tool import BaseTool
from anthropic import Anthropic
# Load environment variables
load_dotenv()
openai_client = OpenAI()
anthropic_client = anthropic.Anthropic(
anthropic_client = Anthropic(
api_key=os.environ.get("ANTHROPIC_API_KEY"),
default_headers={"anthropic-beta": "max-tokens-3-5-sonnet-2024-07-15"}
)