Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def format_prompt(message, history):
|
|
13 |
return prompt
|
14 |
|
15 |
def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0):
|
16 |
-
temperature = max(float(temperature), 1e-2)
|
17 |
top_p = float(top_p)
|
18 |
|
19 |
generate_kwargs = dict(
|
@@ -34,7 +34,6 @@ temperature = max(float(temperature), 1e-2)
|
|
34 |
yield output
|
35 |
return output
|
36 |
|
37 |
-
|
38 |
for response in stream:
|
39 |
output += response.token.text
|
40 |
if "http" in output: # assuming the AI writes a direct image link in its response
|
|
|
13 |
return prompt
|
14 |
|
15 |
def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0):
|
16 |
+
temperature = max(float(temperature), 1e-2)
|
17 |
top_p = float(top_p)
|
18 |
|
19 |
generate_kwargs = dict(
|
|
|
34 |
yield output
|
35 |
return output
|
36 |
|
|
|
37 |
for response in stream:
|
38 |
output += response.token.text
|
39 |
if "http" in output: # assuming the AI writes a direct image link in its response
|