eong commited on
Commit
914998b
·
verified ·
1 Parent(s): 7e9a308

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -83,7 +83,7 @@ final_answer = FinalAnswerTool()
83
 
84
  model = LiteLLMModel(
85
  model_id="ollama_chat/qwen2:7b", # Or try other Ollama-supported models
86
- api_base=str(os.getenv(key=ollama_server_ip)), # Default Ollama local server
87
  num_ctx=8192,
88
  )
89
 
 
83
 
84
  model = LiteLLMModel(
85
  model_id="ollama_chat/qwen2:7b", # Or try other Ollama-supported models
86
+ api_base=os.getenv(key='ollama_server_ip'), # Default Ollama local server
87
  num_ctx=8192,
88
  )
89