Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ class Website:
|
|
36 |
# system prompt of the first call
|
37 |
link_system_prompt = "You are provided with a list of links found on a webpage. \
|
38 |
You are able to decide which of the links would be most relevant to the website, \
|
39 |
-
such as links to an About page, or a Company page, or Careers/Jobs pages
|
40 |
link_system_prompt += "You should respond in JSON as in this example: \n"
|
41 |
link_system_prompt += """
|
42 |
{
|
@@ -74,7 +74,7 @@ def get_links(url):
|
|
74 |
return json.loads(result)
|
75 |
|
76 |
#all the content required to generate information from user about the website
|
77 |
-
|
78 |
def get_all_details(url):
|
79 |
result = "Home page:\n"
|
80 |
result += Website(url).get_contents()
|
@@ -116,10 +116,10 @@ if user_query:
|
|
116 |
chat_streaming = client.chat.completions.create(
|
117 |
messages=[
|
118 |
{"role": "system", "content": "You are a helpful assistant specializing in extracting and analyzing website content. Provide information required by the user based on the website information provided. Ensure responses are clear, concise, and formatted in Markdown for better readability. use your knowledge to add relevant inforation to the users query"},
|
119 |
-
{"role": "user", "content": f"
|
120 |
],
|
121 |
model="llama3-groq-70b-8192-tool-use-preview",
|
122 |
-
temperature=0.
|
123 |
max_tokens=2042,
|
124 |
top_p=0.6,
|
125 |
stream=True,
|
|
|
36 |
# system prompt of the first call
|
37 |
link_system_prompt = "You are provided with a list of links found on a webpage. \
|
38 |
You are able to decide which of the links would be most relevant to the website, \
|
39 |
+
such as links to an About page, or a Company page, or Careers/Jobs pages.\n"
|
40 |
link_system_prompt += "You should respond in JSON as in this example: \n"
|
41 |
link_system_prompt += """
|
42 |
{
|
|
|
74 |
return json.loads(result)
|
75 |
|
76 |
#all the content required to generate information from user about the website
|
77 |
+
@st.cache_resource
|
78 |
def get_all_details(url):
|
79 |
result = "Home page:\n"
|
80 |
result += Website(url).get_contents()
|
|
|
116 |
chat_streaming = client.chat.completions.create(
|
117 |
messages=[
|
118 |
{"role": "system", "content": "You are a helpful assistant specializing in extracting and analyzing website content. Provide information required by the user based on the website information provided. Ensure responses are clear, concise, and formatted in Markdown for better readability. use your knowledge to add relevant inforation to the users query"},
|
119 |
+
{"role": "user", "content": f"{user_query}\n Here's the content to use:\n {website}"}
|
120 |
],
|
121 |
model="llama3-groq-70b-8192-tool-use-preview",
|
122 |
+
temperature=0.8,
|
123 |
max_tokens=2042,
|
124 |
top_p=0.6,
|
125 |
stream=True,
|