File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
weather_vibes_agp/tutorials/02-weather-vibes-agent Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ from setuptools import setup , find_packages
2
+
3
+ setup (
4
+ name = "weather_vibes" ,
5
+ version = "0.1.0" ,
6
+ packages = find_packages (),
7
+ install_requires = [
8
+ "fastapi==0.110.0" ,
9
+ "uvicorn==0.27.0" ,
10
+ "python-dotenv==1.0.0" ,
11
+ "jinja2==3.1.2" ,
12
+ "pydantic" ,
13
+ "rich>=13.0.0" ,
14
+ "openai>=1.0.0" ,
15
+ "requests==2.31.0" ,
16
+ "google-api-python-client==2.111.0" ,
17
+ ],
18
+ )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ fastapi==0.110.0
3
3
uvicorn == 0.27.0
4
4
python-dotenv == 1.0.0
5
5
jinja2 == 3.1.2
6
- pydantic == 2.5.3
6
+ pydantic
7
7
rich >= 13.0.0
8
8
9
9
# Direct OpenAI dependency instead of relying on Simple Agent Framework's LLM utility
Original file line number Diff line number Diff line change 1
1
from .weather_tool import WeatherTool
2
- from .recommendations_tool import RecommendationsTool
2
+ from .recommendation_tool import RecommendationsTool
3
3
from .youtube_tool import YouTubeTool
4
4
5
5
__all__ = ["WeatherTool" , "RecommendationsTool" , "YouTubeTool" ]
You can’t perform that action at this time.
0 commit comments