| | import os |
| | import streamlit as st |
| | from groq import Groq |
| |
|
| | |
| | GROQ_API_KEY = "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" |
| | os.environ["GROQ_API_KEY"] = GROQ_API_KEY |
| |
|
| | |
| | client = Groq(api_key=GROQ_API_KEY) |
| |
|
| | |
| | st.set_page_config(page_title="AI Study Assistant", page_icon="π€", layout="wide") |
| | st.title("π Subject-specific AI Chatbot") |
| | st.write("Hello! I'm your AI Study Assistant. You can ask me any questions related to your subjects, and I'll try to help.") |
| |
|
| | |
| | st.sidebar.header("βοΈ Settings") |
| | st.sidebar.write("Customize your chatbot experience!") |
| | chat_theme = st.sidebar.radio("Choose a theme:", ["Light", "Dark", "Blue", "Green"]) |
| |
|
| | |
| | if chat_theme == "Dark": |
| | st.markdown(""" |
| | <style> |
| | body {background-color: #1e1e1e; color: white;} |
| | .stButton>button {background-color: #4CAF50; color: white;} |
| | .chat-bubble {background-color: #2c2c2c; border-radius: 10px; padding: 10px;} |
| | </style> |
| | """, unsafe_allow_html=True) |
| | elif chat_theme == "Blue": |
| | st.markdown(""" |
| | <style> |
| | body {background-color: #e3f2fd; color: black;} |
| | .stButton>button {background-color: #2196F3; color: white;} |
| | .chat-bubble {background-color: #bbdefb; border-radius: 10px; padding: 10px;} |
| | </style> |
| | """, unsafe_allow_html=True) |
| | elif chat_theme == "Green": |
| | st.markdown(""" |
| | <style> |
| | body {background-color: #e8f5e9; color: black;} |
| | .stButton>button {background-color: #4CAF50; color: white;} |
| | .chat-bubble {background-color: #c8e6c9; border-radius: 10px; padding: 10px;} |
| | </style> |
| | """, unsafe_allow_html=True) |
| | else: |
| | st.markdown(""" |
| | <style> |
| | body {background-color: #ffffff; color: black;} |
| | .stButton>button {background-color: #008CBA; color: white;} |
| | .chat-bubble {background-color: #f1f1f1; border-radius: 10px; padding: 10px;} |
| | </style> |
| | """, unsafe_allow_html=True) |
| |
|
| | |
| | if 'conversation_history' not in st.session_state: |
| | st.session_state.conversation_history = [] |
| |
|
| | |
| | subjects = ["Chemistry", "Computer", "English", "Islamiat", "Mathematics", "Physics", "Urdu"] |
| |
|
| | |
| | def generate_chatbot_response(user_message): |
| | |
| | related_subject = None |
| | for subject in subjects: |
| | if subject.lower() in user_message.lower(): |
| | related_subject = subject |
| | break |
| | |
| | |
| | if "kisne banaya" in user_message.lower() or "who created you" in user_message.lower(): |
| | return "I Created by Abdul Basit π" |
| |
|
| | if related_subject: |
| | prompt = f"You are a helpful AI chatbot for studying {related_subject}. The user is asking: {user_message}. Provide a detailed, helpful response related to {related_subject}." |
| | else: |
| | prompt = f"You are a helpful AI chatbot. The user is asking: {user_message}. If the question is not related to any of the specified subjects (Chemistry, Computer, English, Islamiat, Mathematics, Physics, Urdu), politely let them know." |
| |
|
| | |
| | chat_completion = client.chat.completions.create( |
| | messages=[{"role": "user", "content": prompt}], |
| | model="llama3-8b-8192", |
| | ) |
| |
|
| | response = chat_completion.choices[0].message.content |
| | return response |
| |
|
| | |
| | st.markdown("### π¬ Chat with me") |
| | user_input = st.chat_input("Ask me a subject-related question:") |
| |
|
| | |
| | if user_input: |
| | chatbot_response = generate_chatbot_response(user_input) |
| |
|
| | |
| | st.session_state.conversation_history.append(("User: " + user_input, "Chatbot: " + chatbot_response)) |
| |
|
| | |
| | st.markdown("---") |
| | st.markdown("### π¨οΈ Chat History") |
| | for question, answer in st.session_state.conversation_history: |
| | st.write(f"<div class='chat-bubble'><b>{question}</b></div>", unsafe_allow_html=True) |
| | st.write(f"<div class='chat-bubble'>{answer}</div>", unsafe_allow_html=True) |
| |
|