Phoenix21 commited on
Commit
27ce43c
·
verified ·
1 Parent(s): 14e0c9e

Update app.py

Browse files

removed litellm as it was giving rate limit and replaced with hfapi

Files changed (1) hide show
  1. app.py +1 -1
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 = LiteLLMModel("groq/llama3-8b-8192")
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()