Upload folder using huggingface_hub
Browse files- app.py +1 -1
- requirements.txt +2 -1
app.py
CHANGED
|
@@ -107,7 +107,7 @@ final_answer = FinalAnswerTool()
|
|
| 107 |
duck_search = DuckDuckGoSearchTool()
|
| 108 |
wiki_search = WikipediaSearchTool()
|
| 109 |
|
| 110 |
-
model = LiteLLMModel(model_id='gemini-2.0-flash')
|
| 111 |
|
| 112 |
agent = CodeAgent(
|
| 113 |
tools=[
|
|
|
|
| 107 |
duck_search = DuckDuckGoSearchTool()
|
| 108 |
wiki_search = WikipediaSearchTool()
|
| 109 |
|
| 110 |
+
model = LiteLLMModel(model_id='gemini/gemini-2.0-flash')
|
| 111 |
|
| 112 |
agent = CodeAgent(
|
| 113 |
tools=[
|
requirements.txt
CHANGED
|
@@ -3,4 +3,5 @@ requests
|
|
| 3 |
smolagents==1.12.0
|
| 4 |
litellm==1.65.3
|
| 5 |
wikipedia-api
|
| 6 |
-
google-auth
|
|
|
|
|
|
| 3 |
smolagents==1.12.0
|
| 4 |
litellm==1.65.3
|
| 5 |
wikipedia-api
|
| 6 |
+
google-auth
|
| 7 |
+
google-api-python-client
|