Skip to content

Commit

Permalink
langchain[patch]: Update version for removal of deprecated code (lang…
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul authored and CarterMorris committed Nov 10, 2024
1 parent 037cb6f commit d3dfa92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion langchain/src/chains/conversational_retrieval_chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface ConversationalRetrievalQAChainInput extends ChainInputs {
}

/**
* @deprecated This class will be removed in 0.3.0. See below for an example implementation using
* @deprecated This class will be removed in 1.0.0. See below for an example implementation using
* `createRetrievalChain`.
*
* Class for conducting conversational question-answering tasks with a
Expand Down
2 changes: 1 addition & 1 deletion langchain/src/chains/llm_chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function _getLanguageModel(llmLike: RunnableInterface): BaseLanguageModel {
}

/**
* @deprecated This class will be removed in 0.3.0. Use the LangChain Expression Language (LCEL) instead.
* @deprecated This class will be removed in 1.0.0. Use the LangChain Expression Language (LCEL) instead.
* See the example below for how to use LCEL with the LLMChain class:
*
* Chain to run queries against LLMs.
Expand Down
2 changes: 1 addition & 1 deletion langchain/src/chains/retrieval_qa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface RetrievalQAChainInput extends Omit<ChainInputs, "memory"> {
}

/**
* @deprecated This class will be removed in 0.3.0. See below for an example implementation using
* @deprecated This class will be removed in 1.0.0. See below for an example implementation using
* `createRetrievalChain`:
* Class representing a chain for performing question-answering tasks with
* a retrieval component.
Expand Down

0 comments on commit d3dfa92

Please sign in to comment.