Skip to content

Commit cbf98c0

Browse files
authored
Fix Seeding Link for Support Use Case (#3784)
1 parent a5fe5e1 commit cbf98c0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

backend/onyx/seeding/initial_docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6184,7 +6184,7 @@
61846184
"chunk_ind": 0
61856185
},
61866186
{
6187-
"url": "https://docs.onyx.app/more/use_cases/customer_support",
6187+
"url": "https://docs.onyx.app/more/use_cases/support",
61886188
"title": "Customer Support",
61896189
"content": "Help your customer support team instantly answer any question across your entire product.\n\nAI Enabled Support\nCustomer support agents have one of the highest breadth jobs. They field requests that cover the entire surface area of the product and need to help your users find success on extremely short timelines. Because they're not the same people who designed or built the system, they often lack the depth of understanding needed - resulting in delays and escalations to other teams. Modern teams are leveraging AI to help their CS team optimize the speed and quality of these critical customer-facing interactions.\n\nThe Importance of Context\nThere are two critical components of AI copilots for customer support. The first is that the AI system needs to be connected with as much information as possible (not just support tools like Zendesk or Intercom) and that the knowledge needs to be as fresh as possible. Sometimes a fix might even be in places rarely checked by CS such as pull requests in a code repository. The second critical component is the ability of the AI system to break down difficult concepts and convoluted processes into more digestible descriptions and for your team members to be able to chat back and forth with the system to build a better understanding.\n\nOnyx takes care of both of these. The system connects up to over 30+ different applications and the knowledge is pulled in constantly so that the information access is always up to date.",
61906190
"title_embedding": [

backend/onyx/seeding/initial_docs_cohere.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"chunk_ind": 0
2525
},
2626
{
27-
"url": "https://docs.onyx.app/more/use_cases/customer_support",
27+
"url": "https://docs.onyx.app/more/use_cases/support",
2828
"title": "Customer Support",
2929
"content": "Help your customer support team instantly answer any question across your entire product.\n\nAI Enabled Support\nCustomer support agents have one of the highest breadth jobs. They field requests that cover the entire surface area of the product and need to help your users find success on extremely short timelines. Because they're not the same people who designed or built the system, they often lack the depth of understanding needed - resulting in delays and escalations to other teams. Modern teams are leveraging AI to help their CS team optimize the speed and quality of these critical customer-facing interactions.\n\nThe Importance of Context\nThere are two critical components of AI copilots for customer support. The first is that the AI system needs to be connected with as much information as possible (not just support tools like Zendesk or Intercom) and that the knowledge needs to be as fresh as possible. Sometimes a fix might even be in places rarely checked by CS such as pull requests in a code repository. The second critical component is the ability of the AI system to break down difficult concepts and convoluted processes into more digestible descriptions and for your team members to be able to chat back and forth with the system to build a better understanding.\n\nOnyx takes care of both of these. The system connects up to over 30+ different applications and the knowledge is pulled in constantly so that the information access is always up to date.",
3030
"chunk_ind": 0

backend/scripts/document_seeding_prep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class SeedPresaveDocument(BaseModel):
197197
)
198198

199199
customer_support_doc = SeedPresaveDocument(
200-
url="https://docs.onyx.app/more/use_cases/customer_support",
200+
url="https://docs.onyx.app/more/use_cases/support",
201201
title=customer_support_title,
202202
content=customer_support,
203203
title_embedding=model.encode(f"search_document: {customer_support_title}"),

0 commit comments

Comments
 (0)