Skip to content

Commit c86ef96

Browse files
add setup file and update rrequirements.
1 parent f82b691 commit c86ef96

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
)

weather_vibes_agp/tutorials/02-weather-vibes-agent/weather_vibes/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fastapi==0.110.0
33
uvicorn==0.27.0
44
python-dotenv==1.0.0
55
jinja2==3.1.2
6-
pydantic==2.5.3
6+
pydantic
77
rich>=13.0.0
88

99
# Direct OpenAI dependency instead of relying on Simple Agent Framework's LLM utility
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .weather_tool import WeatherTool
2-
from .recommendations_tool import RecommendationsTool
2+
from .recommendation_tool import RecommendationsTool
33
from .youtube_tool import YouTubeTool
44

55
__all__ = ["WeatherTool", "RecommendationsTool", "YouTubeTool"]

0 commit comments

Comments
 (0)