From 40f8bdbdbefdb5bc9c5605c0e8ac758b67d86d84 Mon Sep 17 00:00:00 2001 From: HavenDV Date: Thu, 12 Sep 2024 04:54:37 +0400 Subject: [PATCH] docs: Removed links to wiki. --- README.md | 2 +- docs/index.md | 2 +- src/Meta/test/WikiTests.AgentWithOllamaReact.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a3f088ab..bf25319a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ I want to note: - I also respond quite quickly on Discord for any questions related to the project ## Usage -You can use our wiki to get started: https://github.com/tryAGI/LangChain/wiki +You can use our wiki to get started: https://tryagi.github.io/LangChain/ If the wiki contains unupdated code, you can always take a look at [the tests for this](src/Meta/test/WikiTests.cs) Also see [examples](./examples) for example usage or [tests](./src/tests/LangChain.IntegrationTests/ReadmeTests.cs). ```csharp diff --git a/docs/index.md b/docs/index.md index ff92f7ee..aa51bd05 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,7 +21,7 @@ I want to note: - I also respond quite quickly on Discord for any questions related to the project ## Usage -You can use our wiki to get started: https://github.com/tryAGI/LangChain/wiki +You can use our wiki to get started: https://tryagi.github.io/LangChain/ If the wiki contains unupdated code, you can always take a look at [the tests for this](src/Meta/test/WikiTests.cs) Also see [examples](./examples) for example usage or [tests](./src/tests/LangChain.IntegrationTests/ReadmeTests.cs). ```csharp diff --git a/src/Meta/test/WikiTests.AgentWithOllamaReact.cs b/src/Meta/test/WikiTests.AgentWithOllamaReact.cs index 7d6a2dea..56439bfa 100644 --- a/src/Meta/test/WikiTests.AgentWithOllamaReact.cs +++ b/src/Meta/test/WikiTests.AgentWithOllamaReact.cs @@ -12,7 +12,7 @@ public partial class WikiTests public async Task AgentWithOllamaReact() { //// # ReAct - //// But how we can fix that? If you know about [RAG](https://github.com/tryAGI/LangChain/wiki/RAG-with-OpenAI-and-Ollama) then you know that there is some tricks to bring new abilities to LLM. And one of those tricks is [ReAct](https://www.promptingguide.ai/techniques/react) prompting. + //// But how we can fix that? If you know about [RAG](https://tryagi.github.io/LangChain/wiki/RagWithOpenAiOllama/) then you know that there is some tricks to bring new abilities to LLM. And one of those tricks is [ReAct](https://www.promptingguide.ai/techniques/react) prompting. //// //// In simple words ReAct is forcing LLM to reflect on your question and injects responses as if LLM figured them out by itself. This allows you to connect any datasource or `tool` tou your LLM. //// Let's try to use ReAct and connect Google search to your LLM.