-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Nc/reference docs v2 #866
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
Nc/reference docs v2 #866
Conversation
…ustom CodeBlock component - Loader lists all langchain objects used in the example, and finds the path to its reference docs - CodeBlock component renders a card containing links to the reference doc of each
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
| @@ -0,0 +1,34 @@ | |||
| diff --git a/dist/support/helpers.js b/dist/support/helpers.js | |||
| index 4346548126fcf7e3687f243ee53fd0456778c29c..73cefe121e927285d305d57e89f3c87f8d2fe289 100644 | |||
| --- a/dist/support/helpers.js | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had to patch the dependency that generates the api docs 😿
| @@ -1,6 +1,6 @@ | |||
| # Welcome to LangChain | |||
|
|
|||
| LangChain is a framework for developing applications powered by language models. We believe that the most powerful and differentiated applications will not only call out to a language model via an api, but will also: | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Took this opportunity to clean this one up and add more links throughout
| import { Document } from "langchain/document"; | ||
| import { OpenAIEmbeddings } from "langchain/embeddings"; | ||
| import { OpenSearchVectorStore } from "langchain/vectorstores"; | ||
| import { OpenAIEmbeddings } from "langchain/embeddings/openai"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These ones had been missed before
|
|
||
| LangChain offers a number of Chat Models implementations that integrate with various model providers. These are: | ||
|
|
||
| ## `OpenAI` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to do this in lots of other places
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looked at the deployed docs and looks good, main question is around the changes to the model input interfaces / why those are needed here?
No description provided.