Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add keywords for common queries
  • Loading branch information
jacoblee93 committed Jun 3, 2024
commit f9636def9a1f9de345b104abed777f99cf6b71bf
4 changes: 4 additions & 0 deletions docs/core_docs/docs/concepts.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
keywords: [prompt, prompttemplate, chatprompttemplate, tool, tools, runnable, runnables, invoke, vector, vectorstore, vectorstores, embedding, embeddings, chat, chat model, llm, llms, retriever, retrievers, loader, loaders, document, documents, output, output parser]
---

# Conceptual guide

This section contains introductions to key parts of LangChain.
Expand Down
13 changes: 13 additions & 0 deletions docs/core_docs/docs/how_to/recursive_text_splitter.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{
"cells": [
{
"cell_type": "raw",
"metadata": {
"vscode": {
"languageId": "raw"
}
},
"source": [
"---\n",
"keywords: [recursivecharactertextsplitter]\n",
"---"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down
8 changes: 6 additions & 2 deletions docs/core_docs/docs/how_to/sequence.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
"cells": [
{
"cell_type": "raw",
"metadata": {},
"metadata": {
"vscode": {
"languageId": "raw"
}
},
"source": [
"---\n",
"keywords: [Runnable, Runnables, LCEL]\n",
"keywords: [chain, chaining, runnablesequence]\n",
"---"
]
},
Expand Down
13 changes: 13 additions & 0 deletions docs/core_docs/docs/how_to/tool_calling.ipynb
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{
"cells": [
{
"cell_type": "raw",
"metadata": {
"vscode": {
"languageId": "raw"
}
},
"source": [
"---\n",
"keywords: [function, function calling, tool, tool calling]\n",
"---"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down
4 changes: 4 additions & 0 deletions docs/core_docs/docs/integrations/platforms/aws.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
keywords: [bedrock]
---

# AWS

All functionality related to [Amazon AWS](https://aws.amazon.com/) platform
Expand Down
4 changes: 4 additions & 0 deletions docs/core_docs/docs/integrations/platforms/microsoft.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
keywords: [azure]
---

import CodeBlock from "@theme/CodeBlock";

# Microsoft
Expand Down
4 changes: 4 additions & 0 deletions docs/core_docs/docs/integrations/platforms/openai.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
keywords: [openai]
---

# OpenAI

All functionality related to OpenAI
Expand Down
4 changes: 4 additions & 0 deletions docs/core_docs/docs/integrations/text_embedding/openai.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
keywords: [openaiembeddings]
---

# OpenAI

The `OpenAIEmbeddings` class uses the OpenAI API to generate embeddings for a given text. By default it strips new line characters from the text, as recommended by OpenAI, but you can disable this by passing `stripNewLines: false` to the constructor.
Expand Down