Spaces:
Runtime error
Runtime error
Update main.py
Browse files
main.py
CHANGED
@@ -42,9 +42,9 @@ def generate(item: Item):
|
|
42 |
# Format the prompt
|
43 |
formatted_prompt = format_prompt(f"{item.system_prompt}, {item.prompt}", item.history)
|
44 |
|
45 |
-
# Call text_generation on your model
|
46 |
stream = client.text_generation(
|
47 |
-
|
48 |
**generate_kwargs,
|
49 |
stream=True,
|
50 |
)
|
|
|
42 |
# Format the prompt
|
43 |
formatted_prompt = format_prompt(f"{item.system_prompt}, {item.prompt}", item.history)
|
44 |
|
45 |
+
# Call text_generation on your model (correct argument: formatted_prompt)
|
46 |
stream = client.text_generation(
|
47 |
+
formatted_prompt, # Use the formatted prompt directly
|
48 |
**generate_kwargs,
|
49 |
stream=True,
|
50 |
)
|