Skip to content

Commit e926b1e

Browse files
olruasManul from Pathway
authored andcommitted
[Website] Broken links and cleaning (#9172)
GitOrigin-RevId: 70c0b97bf34aa08eac9de2f84da77afd581a1002
1 parent d28eb8e commit e926b1e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/2.developers/4.user-guide/50.llm-xpack/20.llm-app-pathway.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,6 @@ This real-time reactivity ensures that the RAG's responses are always based on t
334334
In this tutorial, you have learned to create a RAG pipeline from scratch with Pathway: you have implemented the pipeline step-by-step.
335335
The RAG is live by default, updating the index whenever the documentation changes.
336336

337-
In addition to our [ready-to-run templates](/developers/templates?tab=ai-pipelines), Pathway provides pre-build wrapper to use [pre-selected prompts](/developers/api-docs/pathway-xpacks-llm/prompts), [servers](/developers/api-docs/pathway-xpacks-llm/servers), or even entire [RAG pipeline](/developers/api-docs/pathway-xpacks-llm/servers).
337+
In addition to our [ready-to-run templates](/developers/templates?tab=ai-pipelines), Pathway provides pre-build wrapper to use [pre-selected prompts](/developers/api-docs/pathway-xpacks-llm/prompts), [servers](/developers/api-docs/pathway-xpacks-llm/servers), or even entire [RAG pipeline](/developers/api-docs/pathway-xpacks-llm/question_answering).
338338

339339
Instead of doing everything from scratch, take a look at the documentation, you might find what you are trying to do!

docs/2.developers/4.user-guide/50.llm-xpack/30.docs-indexing.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Embedding transforms text into fixed-size vectors for indexing and retrieval.
2424
It is required only when using vector indices, such as approximate nearest neighbor (ANN) search.
2525
Pathway provides several embedding models, including:
2626

27-
- [`OpenAIEmbedder`](/developers/api-docs/pathway#pathway.xpacks.llm.embedders.OpenAIEmbedder)
28-
- [`LiteLLMEmbedder`](/developers/api-docs/pathway#pathway.xpacks.llm.embedders.LiteLLMEmbedder)
29-
- [`GeminiEmbedder`](/developers/api-docs/pathway#pathway.xpacks.llm.embedders.GeminiEmbedder)
30-
- [`SentenceTransformerEmbedder`](/developers/api-docs/pathway#pathway.xpacks.llm.embedders.SentenceTransformerEmbedder)
27+
- [`OpenAIEmbedder`](/developers/api-docs/pathway-xpacks-llm/embedders#pathway.xpacks.llm.embedders.OpenAIEmbedder)
28+
- [`LiteLLMEmbedder`](/developers/api-docs/pathway-xpacks-llm/embedders#pathway.xpacks.llm.embedders.LiteLLMEmbedder)
29+
- [`GeminiEmbedder`](/developers/api-docs/pathway-xpacks-llm/embedders#pathway.xpacks.llm.embedders.GeminiEmbedder)
30+
- [`SentenceTransformerEmbedder`](/developers/api-docs/pathway-xpacks-llm/embedders#pathway.xpacks.llm.embedders.SentenceTransformerEmbedder)
3131

32-
More information can be find on the [`Embedders page`](/developers/user-guide/llm-xpack/embedders)
32+
You can find more information about embedders in the [`associated article`](/developers/user-guide/llm-xpack/embedders).
3333

3434
### Non-Vector Indexing
3535

@@ -63,7 +63,7 @@ retriever_factory = BruteForceKnnFactory(
6363

6464
## How to query retriever?
6565

66-
To interact with the index and retrieve relevant documents, we need to create a [`DocumentStore`](/developers/api-docs/pathway#pathway.xpacks.llm.document_store.DocumentStore).
66+
To interact with the index and retrieve relevant documents, we need to create a [`DocumentStore`](/developers/api-docs/pathway-xpacks-llm/document_store).
6767
This object will handle processing of documents (which include **parsing**, **post-processing** and **splitting**) and then building an **index** (retriever) out of them.
6868
The DocumentStore acts as the interface to query the index, allowing for document retrieval using the selected retriever.
6969

docs/2.developers/4.user-guide/50.llm-xpack/40.pathway_mcp_server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords: ['MCP', 'MCP server', 'API', 'protocol']
1010
# Pathway MCP Server
1111

1212
## Introduction
13-
The Model Context Protocol (MCP) is designed to standardize the way applications interact with large language models (LLMs).
13+
The [Model Context Protocol](https://modelcontextprotocol.io/docs/getting-started/intro) (MCP) is designed to standardize the way applications interact with large language models (LLMs).
1414
It serves as a bridge, much like a universal connector, enabling seamless integration between AI models and various data sources and tools.
1515
This protocol facilitates the creation of sophisticated AI workflows and agents, enhancing the capabilities of LLMs by connecting them with real-world data and functionalities.
1616

0 commit comments

Comments
 (0)