Achille Thin - Genesis commited on
Commit
ac3472f
·
1 Parent(s): ec58aac

tmperature decrease

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -28,7 +28,7 @@ env_api_key = os.environ.get("MISTRAL_API_KEY")
28
  query_engine = None
29
 
30
  # Define LLMs
31
- llm = MistralAI(api_key=env_api_key, model=llm_model, temperature = 0.2)
32
  embed_model = MistralAIEmbedding(model_name="mistral-embed", api_key=env_api_key, max_length=5000)
33
 
34
  # create client and a new collection
@@ -61,6 +61,8 @@ def create_prompt(farmSize, cultures):
61
  prompt += """I need you to answer in French formulating a concise table with the crops you want to grow and by parcel, and predicting gross margin per hectare according to the scenario asked for (mean, pessimistic or optimistic. Default: mean).
62
  Réponds en français en formulant un tableau concis avec les cultures que tu veux cultiver et par parcelle, et en prévoyant la marge brute et le coût par hectare selon le scénario demandé (moyen, pessimiste ou optimiste. Par défaut : moyen).\n"
63
  """
 
 
64
  return prompt
65
 
66
 
 
28
  query_engine = None
29
 
30
  # Define LLMs
31
+ llm = MistralAI(api_key=env_api_key, model=llm_model, temperature = 0.1)
32
  embed_model = MistralAIEmbedding(model_name="mistral-embed", api_key=env_api_key, max_length=5000)
33
 
34
  # create client and a new collection
 
61
  prompt += """I need you to answer in French formulating a concise table with the crops you want to grow and by parcel, and predicting gross margin per hectare according to the scenario asked for (mean, pessimistic or optimistic. Default: mean).
62
  Réponds en français en formulant un tableau concis avec les cultures que tu veux cultiver et par parcelle, et en prévoyant la marge brute et le coût par hectare selon le scénario demandé (moyen, pessimiste ou optimiste. Par défaut : moyen).\n"
63
  """
64
+
65
+ #prompt += "Le scénario choisi est le moyen."
66
  return prompt
67
 
68