Rockramsri commited on
Commit
42dbeae
·
verified ·
1 Parent(s): 9fd1128
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def home():
21
  def generate(text:str):
22
  ## use the pipeline to generate text from given input text
23
  print("Recieved prompt "+str(text))
24
- output== llm(text, max_tokens=1000)
25
  ## return the generate text in Json reposne
26
  return {"output":output["choices"][0]["text"]}
27
 
 
21
  def generate(text:str):
22
  ## use the pipeline to generate text from given input text
23
  print("Recieved prompt "+str(text))
24
+ output= llm(text, max_tokens=1000)
25
  ## return the generate text in Json reposne
26
  return {"output":output["choices"][0]["text"]}
27