Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -44,7 +44,7 @@ class PromptRefiner:
|
|
| 44 |
response = self.client.chat_completion(
|
| 45 |
model="meta-llama/Meta-Llama-3-70B-Instruct",
|
| 46 |
messages=messages,
|
| 47 |
-
max_tokens=
|
| 48 |
temperature=0.8
|
| 49 |
)
|
| 50 |
response_content = response.choices[0].message.content.strip()
|
|
@@ -86,7 +86,7 @@ class PromptRefiner:
|
|
| 86 |
response = self.client.chat_completion(
|
| 87 |
model=model,
|
| 88 |
messages=messages,
|
| 89 |
-
max_tokens=
|
| 90 |
temperature=0.8
|
| 91 |
)
|
| 92 |
|
|
|
|
| 44 |
response = self.client.chat_completion(
|
| 45 |
model="meta-llama/Meta-Llama-3-70B-Instruct",
|
| 46 |
messages=messages,
|
| 47 |
+
max_tokens=2000,
|
| 48 |
temperature=0.8
|
| 49 |
)
|
| 50 |
response_content = response.choices[0].message.content.strip()
|
|
|
|
| 86 |
response = self.client.chat_completion(
|
| 87 |
model=model,
|
| 88 |
messages=messages,
|
| 89 |
+
max_tokens=2000,
|
| 90 |
temperature=0.8
|
| 91 |
)
|
| 92 |
|