Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -57,6 +57,10 @@ def get_links_user_prompt(website):
|
|
57 |
user_prompt += "\n".join(website.links)
|
58 |
return user_prompt
|
59 |
|
|
|
|
|
|
|
|
|
60 |
# make the first call to get the important links
|
61 |
def get_links(url):
|
62 |
website = Website(url)
|
|
|
57 |
user_prompt += "\n".join(website.links)
|
58 |
return user_prompt
|
59 |
|
60 |
+
client = Groq(
|
61 |
+
api_key=os.getenv("GROQ_API_KEY"),
|
62 |
+
)
|
63 |
+
|
64 |
# make the first call to get the important links
|
65 |
def get_links(url):
|
66 |
website = Website(url)
|