Spaces:
Runtime error
Runtime error
File size: 778 Bytes
bf4655b 4dd0859 707e859 639fdc1 707e859 4dd0859 639fdc1 4dd0859 bf4655b 4dd0859 639fdc1 4dd0859 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
from transformers import pipeline
import streamlit as st
# Definition der Chatbots
chatbots = {
"GPT-Neo 2.7B": "EleutherAI/gpt-neo-2.7B",
"DialoGPT Small": "microsoft/DialoGPT-small"
}
# Funktion zum Abrufen des ausgewählten Chatbots
def get_chatbot(name):
return pipeline('text-generation', model=chatbots[name])
# Definiere die Streamlit-Oberfläche
st.title("Prompt Generator")
chatbot_name = st.selectbox("Wähle einen Chatbot aus:", list(chatbots.keys()))
prompt = st.text_input("Gib einen Satzanfang ein:")
button = st.button("Generieren")
# Generiere neuen Text beim Klick auf den Button
if button:
chatbot = get_chatbot(chatbot_name)
text = chatbot(prompt, max_length=30, do_sample=True, temperature=0.7)[0]['generated_text']
st.write(text) |