BigSalmon commited on
Commit
cb998dc
·
verified ·
1 Parent(s): 5efde24

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -232,7 +232,7 @@ if api_key:
232
  if user_input:
233
  # Create prompt with history and new input
234
  prompt = history.copy()
235
- prompt.extend([f"{user_input}"])
236
  print(prompt)
237
  # Generate response
238
  try:
 
232
  if user_input:
233
  # Create prompt with history and new input
234
  prompt = history.copy()
235
+ prompt.extend([f"input: {user_input}", "output: "])
236
  print(prompt)
237
  # Generate response
238
  try: