We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb8e3a9 commit 9d302d6Copy full SHA for 9d302d6
llama_github/llm_integration/initial_load.py
@@ -67,11 +67,11 @@ def __init__(self,
67
elif mistral_api_key is not None and mistral_api_key != "" and self.llm is None:
68
logger.info("Initializing Codestral API...")
69
from langchain_mistralai.chat_models import ChatMistralAI
70
- self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="mistral-large-latest")
+ self.llm = ChatMistralAI(mistral_api_key=mistral_api_key, model="open-mistral-nemo")
71
self.llm_simple = ChatMistralAI(
72
mistral_api_key=mistral_api_key,
73
model="mistral-small-latest",
74
- temperature=0.26
+ temperature=0.2
75
)
76
self.model_type = "OpenAI"
77
elif openai_api_key is not None and openai_api_key != "" and self.llm is None:
0 commit comments