Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs[patch]: Fix typos #6530

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/core_docs/docs/integrations/llms/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You are currently on a page documenting the use of [text completion models](/doc
Unless you are specifically using more advanced prompting techniques, you are probably looking for [this page instead](/docs/integrations/chat/).
:::

[LLMs](docs/concepts/#llms) are Language models that takes a string as input and returns a string. These are generally older models (newer models generally are chat models, see above).
[LLMs](docs/concepts/#llms) are language models that takes a string as input and return a string as output.

:::info
If you'd like to write your own LLM, see [this how-to](/docs/how_to/custom_llm). If you'd like to contribute an integration, see [Contributing integrations](/docs/contributing).
Expand Down
2 changes: 1 addition & 1 deletion docs/core_docs/docs/integrations/vectorstores/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_class_name: hidden

# Vector stores

A [vector store](/docs/concepts/#vectorstores) stores [embedded](/docs/concepts/#embedding-models) data and performing similarity search.
A [vector store](/docs/concepts/#vectorstores) stores [embedded](/docs/concepts/#embedding-models) data and performs similarity search.

LangChain.js integrates with a variety of vector stores. You can check out a full list below:

Expand Down
2 changes: 2 additions & 0 deletions docs/core_docs/src/theme/FeatureTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,8 @@ const DEPRECATED_DOC_IDS = [
"integrations/chat/baidu_wenxin",
"integrations/chat/google_palm",
"integrations/chat/ni_bittensor",
"integrations/chat/ollama_functions",
"integrations/chat/prompt_layer_openai",
"integrations/llms/google_palm",
"integrations/llms/ni_bittensor",
"integrations/llms/prompt_layer_openai",
Expand Down
Loading