baconnier commited on
Commit
7f468a9
1 Parent(s): c68a73d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -45,7 +45,7 @@ class PromptRefiner:
45
  model="meta-llama/Meta-Llama-3-70B-Instruct",
46
  messages=messages,
47
  max_tokens=4000,
48
- temperature=0.3
49
  )
50
  response_content = response.choices[0].message.content.strip()
51
  try:
@@ -141,7 +141,7 @@ class GradioInterface:
141
  "Qwen/Qwen2.5-0.5B-Instruct"
142
  ],
143
  value="meta-llama/Meta-Llama-3-70B-Instruct",
144
- label="Choose the Model to apply to the prompts"
145
  )
146
  apply_button = gr.Button("Apply Prompts")
147
 
 
45
  model="meta-llama/Meta-Llama-3-70B-Instruct",
46
  messages=messages,
47
  max_tokens=4000,
48
+ temperature=0.8
49
  )
50
  response_content = response.choices[0].message.content.strip()
51
  try:
 
141
  "Qwen/Qwen2.5-0.5B-Instruct"
142
  ],
143
  value="meta-llama/Meta-Llama-3-70B-Instruct",
144
+ label="Choose the Model to apply to the prompts (the one you will used)"
145
  )
146
  apply_button = gr.Button("Apply Prompts")
147