Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ memory = ConversationSummaryBufferMemory(
|
|
23 |
llm=llm,
|
24 |
output_key='answer',
|
25 |
memory_key='chat_history',
|
26 |
-
max_token_limit=
|
27 |
return_messages=True)
|
28 |
|
29 |
retriever = vector_store.as_retriever(
|
@@ -73,7 +73,7 @@ demo=gr.ChatInterface(
|
|
73 |
title="Network Ticket Knowledge Management",
|
74 |
description="<span style='font-size: 16x;'>Welcome to Verizon Network Operations Center!! I am here to help the Verizon Field Operations team with technical queries & escalation. I am trained on 1000s of RAN, Backhaul, Core network & End user equipment trouble tickets. Ask me!!! ☺</span>",
|
75 |
theme=gr.themes.Soft(),
|
76 |
-
examples=["wifi connected but no internet showing", "internet
|
77 |
cache_examples=False,
|
78 |
retry_btn=None,
|
79 |
undo_btn="Delete Previous",
|
|
|
23 |
llm=llm,
|
24 |
output_key='answer',
|
25 |
memory_key='chat_history',
|
26 |
+
max_token_limit=500,
|
27 |
return_messages=True)
|
28 |
|
29 |
retriever = vector_store.as_retriever(
|
|
|
73 |
title="Network Ticket Knowledge Management",
|
74 |
description="<span style='font-size: 16x;'>Welcome to Verizon Network Operations Center!! I am here to help the Verizon Field Operations team with technical queries & escalation. I am trained on 1000s of RAN, Backhaul, Core network & End user equipment trouble tickets. Ask me!!! ☺</span>",
|
75 |
theme=gr.themes.Soft(),
|
76 |
+
examples=["wifi connected but no internet showing", "internet stopped working after primary link down", "internet stopped working link not shifted to secondary after primary link down"],
|
77 |
cache_examples=False,
|
78 |
retry_btn=None,
|
79 |
undo_btn="Delete Previous",
|