-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtempCodeRunnerFile.py
43 lines (37 loc) · 1.34 KB
/
tempCodeRunnerFile.py
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
42
43
import streamlit as st
import random
# Set the title of the app
st.title("Say Something App")
# Create a text input for the user's question
user_question = st.text_input("Type your question here:")
# Generate a random response based on user input
if user_question:
responses = ["Yes", "No", "Maybe"]
response = random.choice(responses)
st.write("Response:", response)
else:
st.write("Please enter a question to get a response.")
# Attach the Groq API key
api_key = "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"
st.write("API Key attached successfully.")
# Generate a random funny question
funny_questions = [
"Why don't scientists trust atoms?",
"Why did the scarecrow win an award?",
"Why don't skeletons fight each other?",
"What do you call fake spaghetti?",
"Why was the math book sad?"
]
# Generate a random funny answer
funny_answers = [
"Because they make up everything!",
"Because he was outstanding in his field!",
"They don't have the guts.",
"An impasta!",
"It had too many problems."
]
if st.button("Ask a random funny question"):
random_question = random.choice(funny_questions)
st.write("Question:", random_question)
random_answer = funny_answers[funny_questions.index(random_question)]
st.write("Answer:", random_answer)