Update initialize.py
Alessandro committed
Sep 20, 2024 at 21:50 UTC
edae5fb00594ca849f833d85f513b380cf8a56a0
1 file changed
+2
-1
initialize.py
+2
-1
@@ -11,6 +11,7 @@ def initialize():
11
# chat_llm = models.get_azure_openai_chat(deployment_name="gpt-4o-mini", temperature=0)
12
# chat_llm = models.get_anthropic_chat(model_name="claude-3-5-sonnet-20240620", temperature=0)
13
# chat_llm = models.get_google_chat(model_name="gemini-1.5-flash", temperature=0)
14
+ # chat_llm = models.get_mistral_chat(model_name="mistral-small-latest", temperature=0)
15
# chat_llm = models.get_groq_chat(model_name="llama-3.1-70b-versatile", temperature=0)
16
17
# utility model used for helper functions (cheaper, faster)
@@ -55,4 +56,4 @@ def initialize():
56
)
57
58
# return config object
58
- return config
\ No newline at end of file
59
+ return config