tarrasyed19472007 commited on
Commit
ca9adf5
·
verified ·
1 Parent(s): 3e041fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -29
app.py CHANGED
@@ -6,10 +6,10 @@ from dotenv import load_dotenv
6
  # Load environment variables from the .env file
7
  load_dotenv()
8
 
9
- # Get the Gemini API key from the .env file
10
- GEMINI_API_KEY = os.getenv("GEMINI_API_KEY")
11
 
12
- if GEMINI_API_KEY is None:
13
  st.error("API key not found! Please set the GEMINI_API_KEY in your .env file.")
14
  st.stop()
15
 
@@ -22,67 +22,65 @@ questions = [
22
 
23
  # Function to query the Gemini API
24
  def query_gemini_api(user_answers):
25
- # Correct Gemini API endpoint
26
- url = f"https://generativelanguage.googleapis.com/v1beta/models/text-bison-001:generateText?key={GEMINI_API_KEY}"
27
 
28
  headers = {'Content-Type': 'application/json'}
29
 
30
- # Combine the user answers into a single input text
31
  input_text = " ".join(user_answers)
32
 
33
- # Payload for the API
34
  payload = {
35
- "prompt": {
36
- "text": f"Analyze the following mood based on these inputs: {input_text}. Provide suggestions to improve the mood."
37
- },
38
- "temperature": 0.7,
39
- "maxOutputTokens": 256,
40
- "topP": 0.8,
41
- "topK": 40
42
  }
43
 
44
  try:
45
- # Send the POST request
46
  response = requests.post(url, headers=headers, json=payload)
47
-
48
- # Check if the response is successful
49
  if response.status_code == 200:
50
  result = response.json()
51
 
52
- # Extract the generated text from the response
53
- generated_text = result.get("candidates", [{}])[0].get("output", "")
54
- return generated_text
55
  else:
 
56
  st.error(f"API Error {response.status_code}: {response.text}")
57
  return None
58
  except requests.exceptions.RequestException as e:
59
  st.error(f"An error occurred: {e}")
60
  return None
61
 
62
- # Streamlit app for collecting answers
63
  def main():
64
  st.title("Mood Analysis and Suggestions")
65
-
66
  st.write("Answer the following 3 questions to help us understand your mood:")
67
 
68
- # Collect responses from the user
69
  responses = []
70
  for i, question in enumerate(questions):
71
  response = st.text_input(f"{i+1}. {question}")
72
  if response:
73
  responses.append(response)
74
 
75
- # If all 3 responses are collected, send them to Gemini for analysis
76
  if len(responses) == len(questions):
77
  st.write("Processing your answers...")
78
 
79
  # Query the Gemini API
80
- generated_text = query_gemini_api(responses)
81
 
82
- if generated_text:
83
- # Display the generated mood analysis and recommendations
84
- st.write("### Mood Analysis and Suggestions:")
85
- st.write(generated_text)
86
  else:
87
  st.warning("Could not generate mood analysis. Please try again later.")
88
  else:
 
6
  # Load environment variables from the .env file
7
  load_dotenv()
8
 
9
+ # Get the API key from the .env file
10
+ API_KEY = os.getenv("GEMINI_API_KEY")
11
 
12
+ if API_KEY is None:
13
  st.error("API key not found! Please set the GEMINI_API_KEY in your .env file.")
14
  st.stop()
15
 
 
22
 
23
  # Function to query the Gemini API
24
  def query_gemini_api(user_answers):
25
+ # Correct API URL
26
+ url = f"https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash-latest:generateContent?key={API_KEY}"
27
 
28
  headers = {'Content-Type': 'application/json'}
29
 
30
+ # Combine user responses into a single input
31
  input_text = " ".join(user_answers)
32
 
33
+ # Payload for the API request
34
  payload = {
35
+ "contents": [
36
+ {
37
+ "parts": [
38
+ {"text": f"Analyze the mood based on these inputs: {input_text}. Provide recommendations."}
39
+ ]
40
+ }
41
+ ]
42
  }
43
 
44
  try:
45
+ # Send POST request
46
  response = requests.post(url, headers=headers, json=payload)
47
+
 
48
  if response.status_code == 200:
49
  result = response.json()
50
 
51
+ # Extract recommendations from the response
52
+ recommendations = result.get("contents", [{}])[0].get("parts", [{}])[0].get("text", "")
53
+ return recommendations
54
  else:
55
+ # Handle API error
56
  st.error(f"API Error {response.status_code}: {response.text}")
57
  return None
58
  except requests.exceptions.RequestException as e:
59
  st.error(f"An error occurred: {e}")
60
  return None
61
 
62
+ # Streamlit app
63
  def main():
64
  st.title("Mood Analysis and Suggestions")
 
65
  st.write("Answer the following 3 questions to help us understand your mood:")
66
 
67
+ # Collect user responses
68
  responses = []
69
  for i, question in enumerate(questions):
70
  response = st.text_input(f"{i+1}. {question}")
71
  if response:
72
  responses.append(response)
73
 
74
+ # Query the API if all questions are answered
75
  if len(responses) == len(questions):
76
  st.write("Processing your answers...")
77
 
78
  # Query the Gemini API
79
+ recommendations = query_gemini_api(responses)
80
 
81
+ if recommendations:
82
+ st.write("### Recommendations to Improve Your Mood:")
83
+ st.write(recommendations)
 
84
  else:
85
  st.warning("Could not generate mood analysis. Please try again later.")
86
  else: