Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ def generate_response(user_message):
|
|
9 |
try:
|
10 |
# Use Gemini API to generate a response
|
11 |
response = model.generate_content(user_message)
|
12 |
-
|
13 |
# Check if the response has text
|
14 |
if response.text:
|
15 |
return response.text
|
@@ -18,33 +18,33 @@ def generate_response(user_message):
|
|
18 |
except Exception as e:
|
19 |
return f"An error occurred: {str(e)}"
|
20 |
|
21 |
-
#
|
22 |
-
|
23 |
-
st.session_state.conversation = []
|
24 |
-
|
25 |
st.title("Gemini QA System")
|
26 |
st.write("Ask a question and get an answer from Gemini AI.")
|
27 |
|
28 |
-
#
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
st.
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
for
|
48 |
-
if st.
|
49 |
-
|
50 |
-
|
|
|
|
|
|
9 |
try:
|
10 |
# Use Gemini API to generate a response
|
11 |
response = model.generate_content(user_message)
|
12 |
+
|
13 |
# Check if the response has text
|
14 |
if response.text:
|
15 |
return response.text
|
|
|
18 |
except Exception as e:
|
19 |
return f"An error occurred: {str(e)}"
|
20 |
|
21 |
+
# Set up the Streamlit page
|
22 |
+
st.set_page_config(page_title="Gemini QA System", page_icon="🤖")
|
|
|
|
|
23 |
st.title("Gemini QA System")
|
24 |
st.write("Ask a question and get an answer from Gemini AI.")
|
25 |
|
26 |
+
# Create the input text area
|
27 |
+
user_input = st.text_area("Enter your question here...", height=100)
|
28 |
+
|
29 |
+
# Create a button to generate the response
|
30 |
+
if st.button("Generate Response"):
|
31 |
+
if user_input:
|
32 |
+
with st.spinner("Generating response..."):
|
33 |
+
response = generate_response(user_input)
|
34 |
+
st.subheader("Gemini's Response:")
|
35 |
+
st.write(response)
|
36 |
+
else:
|
37 |
+
st.warning("Please enter a question.")
|
38 |
+
|
39 |
+
# Add example questions
|
40 |
+
st.subheader("Example Questions:")
|
41 |
+
example_questions = [
|
42 |
+
"What is the capital of France?",
|
43 |
+
"Explain quantum computing in simple terms."
|
44 |
+
]
|
45 |
+
for question in example_questions:
|
46 |
+
if st.button(question):
|
47 |
+
with st.spinner("Generating response..."):
|
48 |
+
response = generate_response(question)
|
49 |
+
st.subheader("Gemini's Response:")
|
50 |
+
st.write(response)
|