Alfasign commited on
Commit
48e9ac6
1 Parent(s): 639fdc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -21,4 +21,6 @@ button = st.button("Generieren")
21
  if button:
22
  chatbot = get_chatbot(chatbot_name)
23
  text = chatbot(prompt, max_length=30, do_sample=True, temperature=0.7)[0]['generated_text']
24
- st.write(text)
 
 
 
21
  if button:
22
  chatbot = get_chatbot(chatbot_name)
23
  text = chatbot(prompt, max_length=30, do_sample=True, temperature=0.7)[0]['generated_text']
24
+ st.write(text)
25
+
26
+ streamlit run app.py