File size: 1,280 Bytes
53e9fb6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b082513
 
 
 
 
 
 
 
 
 
53e9fb6
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import os
import openai
import streamlit as st

# Define the prompt template
def generate_poem(theme):
    response = openai.ChatCompletion.create(
        model="gpt-3.5-turbo",
        messages=[
            {"role": "system", "content": "You are a poet."},
            {"role": "user", "content": f"Write a poem about {theme}"},
        ],
        max_tokens=150,
        temperature=0.7,
    )
    return response['choices'][0]['message']['content'].strip()

# Function to chain prompts
def chain_prompts(initial_theme):
    initial_output = generate_poem(initial_theme)
    refined_prompt = f"Expand on this idea: {initial_output}"
    refined_output = generate_poem(refined_prompt)
    return refined_output

# Initialize the sidebar for API key entry
st.sidebar.title("Settings")
api_key = st.sidebar.text_input("Enter OpenAI API Key", type="password")
os.environ["OPENAI_API_KEY"] = api_key
openai.api_key = os.getenv("OPENAI_API_KEY")

# Additional sidebar options
# Here you can add more inputs or settings that are relevant to your application

# Streamlit app main area
st.title("Poetry Generator")
theme = st.text_input("Enter a theme or prompt for your poem:")

# Generate poem button
if st.button("Generate Poem"):
    poem = chain_prompts(theme)
    st.write(poem)