Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ st.title("Welcome to WebBot🌍")
|
|
28 |
st.write("Enter a website URL and ask questions about its content!")
|
29 |
|
30 |
# Input fields
|
31 |
-
url = st.text_input("Website URL:", "
|
32 |
user_query = st.text_area("What would you like to know about this website")
|
33 |
|
34 |
if user_query:
|
@@ -48,12 +48,12 @@ if user_query:
|
|
48 |
try:
|
49 |
chat_streaming = client.chat.completions.create(
|
50 |
messages=[
|
51 |
-
{"role": "system", "content": "You are a helpful assistant specializing in extracting and analyzing website content. Answer questions based on the provided website's content. Ensure responses are clear, concise, and formatted in Markdown for better readability."},
|
52 |
-
{"role": "user", "content": f"{user_query} Here's the content:\n{website.text}"}
|
53 |
],
|
54 |
model="llama3-groq-70b-8192-tool-use-preview",
|
55 |
-
temperature=0.
|
56 |
-
max_tokens=
|
57 |
top_p=1,
|
58 |
stream=True,
|
59 |
)
|
|
|
28 |
st.write("Enter a website URL and ask questions about its content!")
|
29 |
|
30 |
# Input fields
|
31 |
+
url = st.text_input("Website URL:", " " )
|
32 |
user_query = st.text_area("What would you like to know about this website")
|
33 |
|
34 |
if user_query:
|
|
|
48 |
try:
|
49 |
chat_streaming = client.chat.completions.create(
|
50 |
messages=[
|
51 |
+
{"role": "system", "content": "You are a helpful assistant specializing in extracting and analyzing website content. Answer questions based on the provided website's content. Ensure responses are clear, concise, and formatted in Markdown for better readability. use your knowledge to add relevant inforation to thr users query"},
|
52 |
+
{"role": "user", "content": f"{user_query} \n Here's the content:\n{website.text}"}
|
53 |
],
|
54 |
model="llama3-groq-70b-8192-tool-use-preview",
|
55 |
+
temperature=0.9,
|
56 |
+
max_tokens=2042,
|
57 |
top_p=1,
|
58 |
stream=True,
|
59 |
)
|