Spaces:
Paused
Paused
Update app.py
Browse files
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
|