ShubhamMhaske commited on
Commit
6c360ab
·
verified ·
1 Parent(s): 4349ec5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +45 -0
app.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import os
3
+ from dotenv import load_dotenv
4
+ from groq import Groq
5
+
6
+ # Load environment variables from .env file
7
+ load_dotenv()
8
+
9
+ # Get the GROQ API key from the .env file
10
+ API_KEY = os.getenv("GROQ_API_KEY")
11
+ if not API_KEY:
12
+ st.error("GROQ_API_KEY is not set. Please check your .env file.")
13
+
14
+ # Initialize the Groq client
15
+ client = Groq(api_key=API_KEY)
16
+
17
+ # Streamlit App
18
+ st.title("Q&A Application with Groq API")
19
+ st.write("Ask a question and get a response using Groq's AI model!")
20
+
21
+ # Input prompt from the user
22
+ user_input = st.text_input("Enter your question:", "")
23
+
24
+ # Button to trigger the API call
25
+ if st.button("Get Answer"):
26
+ if user_input.strip():
27
+ try:
28
+ # API call to Groq
29
+ chat_completion = client.chat.completions.create(
30
+ messages=[{"role": "user", "content": user_input}],
31
+ model="llama3-8b-8192"
32
+ )
33
+ # Extracting the response
34
+ response = chat_completion.choices[0].message.content
35
+ # Display the response
36
+ st.subheader("Response:")
37
+ st.write(response)
38
+ except Exception as e:
39
+ st.error(f"Error: {str(e)}")
40
+ else:
41
+ st.warning("Please enter a valid question.")
42
+
43
+ # Footer
44
+ st.markdown("---")
45
+ st.markdown("**Powered by Groq AI**")