Update app.py
Browse filesremoved litellm as it was giving rate limit and replaced with hfapi
app.py
CHANGED
|
@@ -217,7 +217,7 @@ sanity_checker = QuestionSanityChecker(llm)
|
|
| 217 |
# 7) smolagents Integration: GROQ Model and Web Search
|
| 218 |
###############################################################################
|
| 219 |
# Initialize the smolagents' LiteLLMModel with GROQ model
|
| 220 |
-
smol_model =
|
| 221 |
|
| 222 |
# Instantiate the DuckDuckGo search tool
|
| 223 |
search_tool = DuckDuckGoSearchTool()
|
|
|
|
| 217 |
# 7) smolagents Integration: GROQ Model and Web Search
|
| 218 |
###############################################################################
|
| 219 |
# Initialize the smolagents' LiteLLMModel with GROQ model
|
| 220 |
+
smol_model = HfApiModel()
|
| 221 |
|
| 222 |
# Instantiate the DuckDuckGo search tool
|
| 223 |
search_tool = DuckDuckGoSearchTool()
|