earrieta commited on
Commit
7428353
·
1 Parent(s): 58edd81

initial commit

Browse files
Files changed (5) hide show
  1. __main__.py +0 -0
  2. agent.py +10 -0
  3. prompts.py +0 -0
  4. requirements.txt +18 -0
  5. tools.py +0 -0
__main__.py ADDED
File without changes
agent.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import os
3
+ from dotenv import load_dotenv
4
+
5
+ load_dotenv()
6
+ openai.api_key = os.getenv("OPENAI_API_KEY")
7
+
8
+ client = OpenAI()
9
+
10
+
prompts.py ADDED
File without changes
requirements.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ annotated-types==0.7.0
2
+ anyio==4.11.0
3
+ certifi==2025.11.12
4
+ distro==1.9.0
5
+ dotenv==0.9.9
6
+ h11==0.16.0
7
+ httpcore==1.0.9
8
+ httpx==0.28.1
9
+ idna==3.11
10
+ jiter==0.12.0
11
+ openai==2.8.1
12
+ pydantic==2.12.4
13
+ pydantic_core==2.41.5
14
+ python-dotenv==1.2.1
15
+ sniffio==1.3.1
16
+ tqdm==4.67.1
17
+ typing-inspection==0.4.2
18
+ typing_extensions==4.15.0
tools.py ADDED
File without changes