charliebaby2023 commited on
Commit
fe64e29
1 Parent(s): 62ffe70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -22,8 +22,9 @@ interface = gr.Interface(
22
  outputs=gr.Video(label = "video_path")
23
  )
24
  #gr.Interface.queue(api_open=True)
 
25
  for token in client.text_generation("How do you make cheese?", max_new_tokens=12, stream=True):
26
- #print(token)
27
  interface.launch(debug=True)
28
 
29
 
 
22
  outputs=gr.Video(label = "video_path")
23
  )
24
  #gr.Interface.queue(api_open=True)
25
+ token = 'hi'
26
  for token in client.text_generation("How do you make cheese?", max_new_tokens=12, stream=True):
27
+ print(token)
28
  interface.launch(debug=True)
29
 
30