Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import io
|
3 |
+
import streamlit as st
|
4 |
+
from groq import Groq
|
5 |
+
|
6 |
+
# Set up Groq client using the environment variable for API key.
|
7 |
+
client = Groq(api_key=os.environ.get("GROQ_API_KEY"))
|
8 |
+
|
9 |
+
# Define the speaker options and their descriptions.
|
10 |
+
speaker_options = {
|
11 |
+
"Liam": "A male voice",
|
12 |
+
"Dorothy": "A female voice",
|
13 |
+
}
|
14 |
+
|
15 |
+
# Build the Streamlit UI.
|
16 |
+
st.title("Conversation Script Generator Using Groq API")
|
17 |
+
|
18 |
+
# Layout two columns for speaker selection.
|
19 |
+
col1, col2 = st.columns(2)
|
20 |
+
with col1:
|
21 |
+
left_speaker = st.selectbox(
|
22 |
+
"Left Speaker",
|
23 |
+
options=list(speaker_options.keys()),
|
24 |
+
format_func=lambda x: f"{x}: {speaker_options[x]}"
|
25 |
+
)
|
26 |
+
with col2:
|
27 |
+
right_speaker = st.selectbox(
|
28 |
+
"Right Speaker",
|
29 |
+
options=list(speaker_options.keys()),
|
30 |
+
format_func=lambda x: f"{x}: {speaker_options[x]}"
|
31 |
+
)
|
32 |
+
|
33 |
+
# Text area for overall conversation theme.
|
34 |
+
theme = st.text_area("Overall Theme of the Conversation", height=100)
|
35 |
+
|
36 |
+
# Optional additional details.
|
37 |
+
additional_details = st.text_area("Additional Conversation Details (Optional)", height=100)
|
38 |
+
|
39 |
+
# When the user clicks the button, build the prompt and make the API call.
|
40 |
+
if st.button("Generate Conversation"):
|
41 |
+
# Build the prompt message for Groq API.
|
42 |
+
prompt = (
|
43 |
+
f"""
|
44 |
+
{os.environ.get("PROMPT")}
|
45 |
+
Left Actor={left_speaker}
|
46 |
+
Right Actor={right_speaker}
|
47 |
+
Theme={theme}
|
48 |
+
"""
|
49 |
+
)
|
50 |
+
if additional_details.strip():
|
51 |
+
prompt += f"Additional Details: {additional_details}\n"
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
# Prepare the message payload for the Groq API call.
|
56 |
+
messages = [
|
57 |
+
{
|
58 |
+
"role": "user",
|
59 |
+
"content": prompt,
|
60 |
+
}
|
61 |
+
]
|
62 |
+
|
63 |
+
# Model selection: adjust as needed.
|
64 |
+
model = "llama-3.3-70b-versatile"
|
65 |
+
|
66 |
+
try:
|
67 |
+
# Make the chat completion call using Groq.
|
68 |
+
chat_completion = client.chat.completions.create(
|
69 |
+
messages=messages,
|
70 |
+
model=model,
|
71 |
+
)
|
72 |
+
|
73 |
+
# Extract the generated conversation from the API response.
|
74 |
+
result_text = chat_completion.choices[0].message.content
|
75 |
+
|
76 |
+
if not result_text:
|
77 |
+
st.error("The API call did not return any content.")
|
78 |
+
else:
|
79 |
+
st.success("Conversation generated successfully!")
|
80 |
+
|
81 |
+
# Display the result inside a text area.
|
82 |
+
st.write("### Generated Conversation Script")
|
83 |
+
st.text_area("", result_text, height=300)
|
84 |
+
|
85 |
+
# Create a downloadable TXT file.
|
86 |
+
txt_bytes = result_text.encode("utf-8")
|
87 |
+
txt_io = io.BytesIO(txt_bytes)
|
88 |
+
st.download_button(
|
89 |
+
label="Download Script as TXT",
|
90 |
+
data=txt_io,
|
91 |
+
file_name="conversation_script.txt",
|
92 |
+
mime="text/plain"
|
93 |
+
)
|
94 |
+
|
95 |
+
except Exception as e:
|
96 |
+
st.error(f"An error occurred while calling the API: {e}")
|