salim4n commited on
Commit
f2b7cd0
·
verified ·
1 Parent(s): 941fa7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ if not os.path.exists("freights.db"):
15
  initialize_database(csv_url)
16
 
17
  # Create the main agent
18
- model_id = "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B"
19
  model = HfApiModel(model_id=model_id, token=os.environ["HF_API_KEY"])
20
 
21
  agent = CodeAgent(tools=[sql_query, get_schema, get_csv_as_dataframe], model=model)
 
15
  initialize_database(csv_url)
16
 
17
  # Create the main agent
18
+ model_id = "meta-llama/Llama-3.3-70B-Instruct"
19
  model = HfApiModel(model_id=model_id, token=os.environ["HF_API_KEY"])
20
 
21
  agent = CodeAgent(tools=[sql_query, get_schema, get_csv_as_dataframe], model=model)