SatyamSinghal commited on
Commit
3886dff
ยท
verified ยท
1 Parent(s): 0b0f0e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +56 -56
app.py CHANGED
@@ -2,76 +2,76 @@ import gradio as gr
2
  import openai
3
  import os
4
 
5
- # Configure OpenAI API
6
  openai.api_key = os.getenv("API_KEY")
7
  openai.api_base = "https://api.groq.com/openai/v1"
8
 
9
- # Function to get AI-generated astrology response
10
  def get_groq_response(name, dob, time_of_birth, place_of_birth, zodiac_sign, query):
11
  try:
12
- # Construct the message
13
  messages = [
14
- {"role": "system", "content": """
15
- You are a mystical astrologer. Provide detailed insights about zodiac signs, planetary alignments,
16
- and astrological predictions based on the user's inputs. Use a mystical and engaging tone.
 
 
 
 
 
17
  """},
18
- {"role": "user", "content": f"""
19
- Name: {name}
20
- Date of Birth: {dob}
21
- Time of Birth: {time_of_birth}
22
- Place of Birth: {place_of_birth}
23
- Zodiac Sign: {zodiac_sign}
24
- Query: {query}
25
- """}
26
  ]
27
- # Generate response from the AI
28
  response = openai.ChatCompletion.create(
29
- model="llama-3.3-70b-versatile",
30
- messages=messages
 
 
31
  )
32
  return response.choices[0].message["content"]
33
  except Exception as e:
34
- return f"Error: {str(e)}"
35
 
36
- # Chatbot function to handle user input and history
37
- def chatbot(name, dob, time_of_birth, place_of_birth, zodiac_sign, query, history=[]):
38
- # Get the response from the AI
 
 
 
39
  bot_response = get_groq_response(name, dob, time_of_birth, place_of_birth, zodiac_sign, query)
40
- # Append the conversation to history
41
- history.append((f"You: {query}", f"Astrologer: {bot_response}"))
42
- return history, history
 
 
43
 
44
- # Define Gradio interface
45
- chat_interface = gr.Interface(
46
- fn=chatbot, # Function to call for interaction
47
- inputs=[
48
- gr.Textbox(label="Your Name"), # Name input
49
- gr.Textbox(label="Date of Birth (e.g., 01-01-2000)"), # DOB input
50
- gr.Textbox(label="Time of Birth (e.g., 10:30 AM)"), # Time of Birth input
51
- gr.Textbox(label="Place of Birth"), # Place of Birth input
52
- gr.Dropdown(
53
- label="Your Zodiac Sign",
54
- choices=[
55
- "Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
56
- "Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"
57
- ]
58
- ), # Dropdown for zodiac sign
59
- gr.Textbox(label="Your Question for the Astrologer"), # Query input
60
- gr.State(), # State for chat history
61
- ],
62
- outputs=[
63
- gr.Chatbot(label="Astrology Chat"), # Chatbot interface for responses
64
- gr.State(), # State to maintain chat history
65
- ],
66
- title="Astrology AI Assistant ๐ŸŒŒ",
67
- description=(
68
- "Welcome to your personal Astrology AI Assistant! "
69
- "Ask questions about your zodiac sign, horoscope, and planetary alignments. "
70
- "Enter your details and let the stars guide you. โœจ"
71
- ),
72
- theme="dark" # Optional: Gradio theme customization
73
- )
74
 
75
- # Launch the Gradio app
76
  if __name__ == "__main__":
77
- chat_interface.launch()
 
2
  import openai
3
  import os
4
 
5
+ # Configure OpenAI API for Groq
6
  openai.api_key = os.getenv("API_KEY")
7
  openai.api_base = "https://api.groq.com/openai/v1"
8
 
 
9
  def get_groq_response(name, dob, time_of_birth, place_of_birth, zodiac_sign, query):
10
  try:
 
11
  messages = [
12
+ {"role": "system", "content": f"""
13
+ You are a professional astrologer with mystical wisdom. Analyze the birth chart for {name} born on {dob}
14
+ at {time_of_birth} in {place_of_birth}. Consider their {zodiac_sign} sun sign and current planetary
15
+ transits. Provide detailed, personalized insights in a mystical yet clear tone. Include:
16
+ - Key planetary aspects
17
+ - Strengths and challenges
18
+ - Career and relationship guidance
19
+ - Personalized recommendations
20
  """},
21
+ {"role": "user", "content": query}
 
 
 
 
 
 
 
22
  ]
23
+
24
  response = openai.ChatCompletion.create(
25
+ model="llama3-70b-8192", # Corrected Groq model name
26
+ messages=messages,
27
+ temperature=0.7,
28
+ max_tokens=500
29
  )
30
  return response.choices[0].message["content"]
31
  except Exception as e:
32
+ return f"๐Ÿ”ฎ An error occurred: {str(e)} Please try again."
33
 
34
+ def chatbot(name, dob, time_of_birth, place_of_birth, zodiac_sign, query, chat_history):
35
+ # Initialize chat history if None
36
+ if chat_history is None:
37
+ chat_history = []
38
+
39
+ # Get AI response
40
  bot_response = get_groq_response(name, dob, time_of_birth, place_of_birth, zodiac_sign, query)
41
+
42
+ # Update chat history
43
+ chat_history.append((f"{query}", f"{bot_response}"))
44
+
45
+ return chat_history, chat_history
46
 
47
+ # Create Gradio components
48
+ with gr.Blocks(theme=gr.themes.Soft(), title="MysticAI Astrologer ๐Ÿ”ฎ") as demo:
49
+ gr.Markdown("# ๐ŸŒŒ MysticAI Astrologer")
50
+ gr.Markdown("Discover your cosmic blueprint with AI-powered astrology insights")
51
+
52
+ with gr.Row():
53
+ with gr.Column(scale=1):
54
+ name = gr.Textbox(label="Full Name")
55
+ dob = gr.Textbox(label="Date of Birth (DD-MM-YYYY)")
56
+ time_of_birth = gr.Textbox(label="Exact Birth Time (HH:MM AM/PM)")
57
+ place_of_birth = gr.Textbox(label="Birth Place (City, Country)")
58
+ zodiac = gr.Dropdown(
59
+ choices=["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
60
+ "Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"],
61
+ label="Sun Sign"
62
+ )
63
+
64
+ with gr.Column(scale=2):
65
+ chatbot = gr.Chatbot(height=500)
66
+ query = gr.Textbox(label="Your Astrological Question", placeholder="Ask about your career, relationships, or upcoming transits...")
67
+ state = gr.State()
68
+ submit_btn = gr.Button("Consult the Stars โœจ", variant="primary")
69
+
70
+ submit_btn.click(
71
+ chatbot,
72
+ inputs=[name, dob, time_of_birth, place_of_birth, zodiac, query, state],
73
+ outputs=[chatbot, state]
74
+ )
 
 
75
 
 
76
  if __name__ == "__main__":
77
+ demo.launch()