ManojINaik commited on
Commit
9c76e91
·
verified ·
1 Parent(s): f657e3a

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
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
- inputs=formatted_prompt,
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
  )