Spaces:
Sleeping
Sleeping
Update agents/investigator.py
Browse files- agents/investigator.py +1 -1
agents/investigator.py
CHANGED
@@ -23,7 +23,7 @@ import re
|
|
23 |
load_dotenv(override=True)
|
24 |
|
25 |
|
26 |
-
llm = Ollama(model="
|
27 |
wrn = Ollama(model="openfc", base_url=os.getenv('OLLAMA_HOST'))
|
28 |
llama3 = Ollama(model="llama3", base_url=os.getenv('OLLAMA_HOST'), temperature=0.3)
|
29 |
|
|
|
23 |
load_dotenv(override=True)
|
24 |
|
25 |
|
26 |
+
llm = Ollama(model="codestral", base_url=os.getenv('OLLAMA_HOST'), temperature=0.3, num_predict=8192, num_ctx=32768)
|
27 |
wrn = Ollama(model="openfc", base_url=os.getenv('OLLAMA_HOST'))
|
28 |
llama3 = Ollama(model="llama3", base_url=os.getenv('OLLAMA_HOST'), temperature=0.3)
|
29 |
|