Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ st.title("Company Website Analysis Tool with Exa and Groq")
|
|
7 |
|
8 |
# Input fields for EXA and GROQ API keys and company URL
|
9 |
EXA_API_KEY = st.text_input("EXA API Key", type="password")
|
10 |
-
GROQ_API_KEY = st.text_input("GROQ API Key - This demo uses llama-3.
|
11 |
input_url = st.text_input("Company URL", placeholder="huggingface.co")
|
12 |
|
13 |
# Sliders for Groq model settings
|
@@ -54,7 +54,7 @@ if st.button("Analyze Company"):
|
|
54 |
|
55 |
# Get the summary from Groq
|
56 |
completion = client.chat.completions.create(
|
57 |
-
model="llama-3.
|
58 |
messages=[
|
59 |
{"role": "system", "content": SYSTEM_MESSAGE},
|
60 |
{"role": "user", "content": all_contents},
|
|
|
7 |
|
8 |
# Input fields for EXA and GROQ API keys and company URL
|
9 |
EXA_API_KEY = st.text_input("EXA API Key", type="password")
|
10 |
+
GROQ_API_KEY = st.text_input("GROQ API Key - This demo uses llama-3.2-90b-text-preview", type="password")
|
11 |
input_url = st.text_input("Company URL", placeholder="huggingface.co")
|
12 |
|
13 |
# Sliders for Groq model settings
|
|
|
54 |
|
55 |
# Get the summary from Groq
|
56 |
completion = client.chat.completions.create(
|
57 |
+
model="llama-3.2-90b-text-preview",
|
58 |
messages=[
|
59 |
{"role": "system", "content": SYSTEM_MESSAGE},
|
60 |
{"role": "user", "content": all_contents},
|