Kaan commited on
Commit
148def9
·
verified ·
1 Parent(s): c074c98
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ async def read_root():
17
  "Q: Name the planets in the solar system? A: ", # Prompt
18
  max_tokens=32, # Generate up to 32 tokens, set to None to generate up to the end of the context window
19
  stop=["Q:", "\n"], # Stop generating just before the model would generate a new question
20
- echo=True # Echo the prompt back in the output)
21
  return {"message": output}
22
 
23
 
 
17
  "Q: Name the planets in the solar system? A: ", # Prompt
18
  max_tokens=32, # Generate up to 32 tokens, set to None to generate up to the end of the context window
19
  stop=["Q:", "\n"], # Stop generating just before the model would generate a new question
20
+ echo=True )
21
  return {"message": output}
22
 
23