langchain 0.3.1__py3-none-any.whl → 0.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of langchain might be problematic. Click here for more details.
- langchain/_api/module_import.py +2 -2
- langchain/agents/agent_toolkits/vectorstore/base.py +2 -2
- langchain/agents/openai_assistant/base.py +1 -1
- langchain/chains/combine_documents/stuff.py +1 -1
- langchain/chains/conversation/base.py +1 -1
- langchain/chains/mapreduce.py +1 -1
- langchain/chains/openai_functions/qa_with_structure.py +2 -2
- langchain/chains/openai_functions/tagging.py +4 -4
- langchain/chains/qa_with_sources/base.py +2 -2
- langchain/chains/qa_with_sources/loading.py +5 -5
- langchain/chains/question_answering/chain.py +5 -5
- langchain/chains/retrieval_qa/base.py +3 -3
- {langchain-0.3.1.dist-info → langchain-0.3.2.dist-info}/METADATA +2 -2
- {langchain-0.3.1.dist-info → langchain-0.3.2.dist-info}/RECORD +17 -17
- {langchain-0.3.1.dist-info → langchain-0.3.2.dist-info}/LICENSE +0 -0
- {langchain-0.3.1.dist-info → langchain-0.3.2.dist-info}/WHEEL +0 -0
- {langchain-0.3.1.dist-info → langchain-0.3.2.dist-info}/entry_points.txt +0 -0
langchain/_api/module_import.py
CHANGED
|
@@ -101,7 +101,7 @@ def create_importer(
|
|
|
101
101
|
f">> from {new_module} import {name}\n"
|
|
102
102
|
"You can use the langchain cli to **automatically** "
|
|
103
103
|
"upgrade many imports. Please see documentation here "
|
|
104
|
-
"<https://python.langchain.com/
|
|
104
|
+
"<https://python.langchain.com/docs/versions/v0_2/>"
|
|
105
105
|
),
|
|
106
106
|
)
|
|
107
107
|
return result
|
|
@@ -133,7 +133,7 @@ def create_importer(
|
|
|
133
133
|
f">> from {fallback_module} import {name}\n"
|
|
134
134
|
"You can use the langchain cli to **automatically** "
|
|
135
135
|
"upgrade many imports. Please see documentation here "
|
|
136
|
-
"<https://python.langchain.com/
|
|
136
|
+
"<https://python.langchain.com/docs/versions/v0_2/>"
|
|
137
137
|
),
|
|
138
138
|
)
|
|
139
139
|
return result
|
|
@@ -23,7 +23,7 @@ from langchain.chains.llm import LLMChain
|
|
|
23
23
|
"See API reference for this function for a replacement implementation: "
|
|
24
24
|
"https://api.python.langchain.com/en/latest/agents/langchain.agents.agent_toolkits.vectorstore.base.create_vectorstore_agent.html " # noqa: E501
|
|
25
25
|
"Read more here on how to create agents that query vector stores: "
|
|
26
|
-
"https://python.langchain.com/
|
|
26
|
+
"https://python.langchain.com/docs/how_to/qa_chat_history_how_to/#agents"
|
|
27
27
|
),
|
|
28
28
|
)
|
|
29
29
|
def create_vectorstore_agent(
|
|
@@ -112,7 +112,7 @@ def create_vectorstore_agent(
|
|
|
112
112
|
"See API reference for this function for a replacement implementation: "
|
|
113
113
|
"https://api.python.langchain.com/en/latest/agents/langchain.agents.agent_toolkits.vectorstore.base.create_vectorstore_router_agent.html " # noqa: E501
|
|
114
114
|
"Read more here on how to create agents that query vector stores: "
|
|
115
|
-
"https://python.langchain.com/
|
|
115
|
+
"https://python.langchain.com/docs/how_to/qa_chat_history_how_to/#agents"
|
|
116
116
|
),
|
|
117
117
|
)
|
|
118
118
|
def create_vectorstore_router_agent(
|
|
@@ -277,7 +277,7 @@ class OpenAIAssistantRunnable(RunnableSerializable[Dict, OutputType]):
|
|
|
277
277
|
return cls(assistant_id=assistant.id, client=client, **kwargs)
|
|
278
278
|
|
|
279
279
|
def invoke(
|
|
280
|
-
self, input: dict, config: Optional[RunnableConfig] = None
|
|
280
|
+
self, input: dict, config: Optional[RunnableConfig] = None, **kwargs: Any
|
|
281
281
|
) -> OutputType:
|
|
282
282
|
"""Invoke assistant.
|
|
283
283
|
|
|
@@ -102,7 +102,7 @@ def create_stuff_documents_chain(
|
|
|
102
102
|
message=(
|
|
103
103
|
"This class is deprecated. Use the `create_stuff_documents_chain` constructor "
|
|
104
104
|
"instead. See migration guide here: "
|
|
105
|
-
"https://python.langchain.com/
|
|
105
|
+
"https://python.langchain.com/docs/versions/migrating_chains/stuff_docs_chain/" # noqa: E501
|
|
106
106
|
),
|
|
107
107
|
)
|
|
108
108
|
class StuffDocumentsChain(BaseCombineDocumentsChain):
|
|
@@ -25,7 +25,7 @@ class ConversationChain(LLMChain):
|
|
|
25
25
|
"""Chain to have a conversation and load context from memory.
|
|
26
26
|
|
|
27
27
|
This class is deprecated in favor of ``RunnableWithMessageHistory``. Please refer
|
|
28
|
-
to this tutorial for more detail: https://python.langchain.com/
|
|
28
|
+
to this tutorial for more detail: https://python.langchain.com/docs/tutorials/chatbot/
|
|
29
29
|
|
|
30
30
|
``RunnableWithMessageHistory`` offers several benefits, including:
|
|
31
31
|
|
langchain/chains/mapreduce.py
CHANGED
|
@@ -31,7 +31,7 @@ from langchain.chains.llm import LLMChain
|
|
|
31
31
|
"Refer here for a recommended map-reduce implementation using langgraph: "
|
|
32
32
|
"https://langchain-ai.github.io/langgraph/how-tos/map-reduce/. See also "
|
|
33
33
|
"migration guide: "
|
|
34
|
-
"https://python.langchain.com/
|
|
34
|
+
"https://python.langchain.com/docs/versions/migrating_chains/map_reduce_chain/" # noqa: E501
|
|
35
35
|
),
|
|
36
36
|
)
|
|
37
37
|
class MapReduceChain(Chain):
|
|
@@ -32,7 +32,7 @@ class AnswerWithSources(BaseModel):
|
|
|
32
32
|
message=(
|
|
33
33
|
"This function is deprecated. Refer to this guide on retrieval and question "
|
|
34
34
|
"answering with structured responses: "
|
|
35
|
-
"https://python.langchain.com/
|
|
35
|
+
"https://python.langchain.com/docs/how_to/qa_sources/#structure-sources-in-model-response" # noqa: E501
|
|
36
36
|
),
|
|
37
37
|
)
|
|
38
38
|
def create_qa_with_structure_chain(
|
|
@@ -114,7 +114,7 @@ def create_qa_with_structure_chain(
|
|
|
114
114
|
message=(
|
|
115
115
|
"This function is deprecated. Refer to this guide on retrieval and question "
|
|
116
116
|
"answering with sources: "
|
|
117
|
-
"https://python.langchain.com/
|
|
117
|
+
"https://python.langchain.com/docs/how_to/qa_sources/#structure-sources-in-model-response" # noqa: E501
|
|
118
118
|
),
|
|
119
119
|
)
|
|
120
120
|
def create_qa_with_sources_chain(
|
|
@@ -38,7 +38,7 @@ Passage:
|
|
|
38
38
|
"See API reference for this function for replacement: "
|
|
39
39
|
"<https://api.python.langchain.com/en/latest/chains/langchain.chains.openai_functions.tagging.create_tagging_chain.html> " # noqa: E501
|
|
40
40
|
"You can read more about `with_structured_output` here: "
|
|
41
|
-
"<https://python.langchain.com/
|
|
41
|
+
"<https://python.langchain.com/docs/how_to/structured_output/>. "
|
|
42
42
|
"If you notice other issues, please provide "
|
|
43
43
|
"feedback here: "
|
|
44
44
|
"<https://github.com/langchain-ai/langchain/discussions/18154>"
|
|
@@ -78,7 +78,7 @@ def create_tagging_chain(
|
|
|
78
78
|
"Why did the cat cross the road? To get to the other "
|
|
79
79
|
"side... and then lay down in the middle of it!"
|
|
80
80
|
)
|
|
81
|
-
Read more here: https://python.langchain.com/
|
|
81
|
+
Read more here: https://python.langchain.com/docs/how_to/structured_output/
|
|
82
82
|
|
|
83
83
|
Args:
|
|
84
84
|
schema: The schema of the entities to extract.
|
|
@@ -109,7 +109,7 @@ def create_tagging_chain(
|
|
|
109
109
|
"See API reference for this function for replacement: "
|
|
110
110
|
"<https://api.python.langchain.com/en/latest/chains/langchain.chains.openai_functions.tagging.create_tagging_chain_pydantic.html> " # noqa: E501
|
|
111
111
|
"You can read more about `with_structured_output` here: "
|
|
112
|
-
"<https://python.langchain.com/
|
|
112
|
+
"<https://python.langchain.com/docs/how_to/structured_output/>. "
|
|
113
113
|
"If you notice other issues, please provide "
|
|
114
114
|
"feedback here: "
|
|
115
115
|
"<https://github.com/langchain-ai/langchain/discussions/18154>"
|
|
@@ -147,7 +147,7 @@ def create_tagging_chain_pydantic(
|
|
|
147
147
|
"Why did the cat cross the road? To get to the other "
|
|
148
148
|
"side... and then lay down in the middle of it!"
|
|
149
149
|
)
|
|
150
|
-
Read more here: https://python.langchain.com/
|
|
150
|
+
Read more here: https://python.langchain.com/docs/how_to/structured_output/
|
|
151
151
|
|
|
152
152
|
Args:
|
|
153
153
|
pydantic_schema: The pydantic schema of the entities to extract.
|
|
@@ -37,7 +37,7 @@ from langchain.chains.qa_with_sources.map_reduce_prompt import (
|
|
|
37
37
|
message=(
|
|
38
38
|
"This class is deprecated. Refer to this guide on retrieval and question "
|
|
39
39
|
"answering with sources: "
|
|
40
|
-
"https://python.langchain.com/
|
|
40
|
+
"https://python.langchain.com/docs/how_to/qa_sources/"
|
|
41
41
|
),
|
|
42
42
|
)
|
|
43
43
|
class BaseQAWithSourcesChain(Chain, ABC):
|
|
@@ -216,7 +216,7 @@ class BaseQAWithSourcesChain(Chain, ABC):
|
|
|
216
216
|
message=(
|
|
217
217
|
"This class is deprecated. Refer to this guide on retrieval and question "
|
|
218
218
|
"answering with sources: "
|
|
219
|
-
"https://python.langchain.com/
|
|
219
|
+
"https://python.langchain.com/docs/how_to/qa_sources/"
|
|
220
220
|
),
|
|
221
221
|
)
|
|
222
222
|
class QAWithSourcesChain(BaseQAWithSourcesChain):
|
|
@@ -158,13 +158,13 @@ def _load_refine_chain(
|
|
|
158
158
|
message=(
|
|
159
159
|
"This function is deprecated. Refer to this guide on retrieval and question "
|
|
160
160
|
"answering with sources: "
|
|
161
|
-
"https://python.langchain.com/
|
|
161
|
+
"https://python.langchain.com/docs/how_to/qa_sources/"
|
|
162
162
|
"\nSee also the following migration guides for replacements "
|
|
163
163
|
"based on `chain_type`:\n"
|
|
164
|
-
"stuff: https://python.langchain.com/
|
|
165
|
-
"map_reduce: https://python.langchain.com/
|
|
166
|
-
"refine: https://python.langchain.com/
|
|
167
|
-
"map_rerank: https://python.langchain.com/
|
|
164
|
+
"stuff: https://python.langchain.com/docs/versions/migrating_chains/stuff_docs_chain\n" # noqa: E501
|
|
165
|
+
"map_reduce: https://python.langchain.com/docs/versions/migrating_chains/map_reduce_chain\n" # noqa: E501
|
|
166
|
+
"refine: https://python.langchain.com/docs/versions/migrating_chains/refine_chain\n" # noqa: E501
|
|
167
|
+
"map_rerank: https://python.langchain.com/docs/versions/migrating_chains/map_rerank_docs_chain\n" # noqa: E501
|
|
168
168
|
),
|
|
169
169
|
)
|
|
170
170
|
def load_qa_with_sources_chain(
|
|
@@ -223,12 +223,12 @@ def _load_refine_chain(
|
|
|
223
223
|
message=(
|
|
224
224
|
"This class is deprecated. See the following migration guides for replacements "
|
|
225
225
|
"based on `chain_type`:\n"
|
|
226
|
-
"stuff: https://python.langchain.com/
|
|
227
|
-
"map_reduce: https://python.langchain.com/
|
|
228
|
-
"refine: https://python.langchain.com/
|
|
229
|
-
"map_rerank: https://python.langchain.com/
|
|
226
|
+
"stuff: https://python.langchain.com/docs/versions/migrating_chains/stuff_docs_chain\n" # noqa: E501
|
|
227
|
+
"map_reduce: https://python.langchain.com/docs/versions/migrating_chains/map_reduce_chain\n" # noqa: E501
|
|
228
|
+
"refine: https://python.langchain.com/docs/versions/migrating_chains/refine_chain\n" # noqa: E501
|
|
229
|
+
"map_rerank: https://python.langchain.com/docs/versions/migrating_chains/map_rerank_docs_chain\n" # noqa: E501
|
|
230
230
|
"\nSee also guides on retrieval and question-answering here: "
|
|
231
|
-
"https://python.langchain.com/
|
|
231
|
+
"https://python.langchain.com/docs/how_to/#qa-with-rag"
|
|
232
232
|
),
|
|
233
233
|
)
|
|
234
234
|
def load_qa_chain(
|
|
@@ -34,7 +34,7 @@ from langchain.chains.question_answering.stuff_prompt import PROMPT_SELECTOR
|
|
|
34
34
|
message=(
|
|
35
35
|
"This class is deprecated. Use the `create_retrieval_chain` constructor "
|
|
36
36
|
"instead. See migration guide here: "
|
|
37
|
-
"https://python.langchain.com/
|
|
37
|
+
"https://python.langchain.com/docs/versions/migrating_chains/retrieval_qa/"
|
|
38
38
|
),
|
|
39
39
|
)
|
|
40
40
|
class BaseRetrievalQA(Chain):
|
|
@@ -210,7 +210,7 @@ class BaseRetrievalQA(Chain):
|
|
|
210
210
|
message=(
|
|
211
211
|
"This class is deprecated. Use the `create_retrieval_chain` constructor "
|
|
212
212
|
"instead. See migration guide here: "
|
|
213
|
-
"https://python.langchain.com/
|
|
213
|
+
"https://python.langchain.com/docs/versions/migrating_chains/retrieval_qa/"
|
|
214
214
|
),
|
|
215
215
|
)
|
|
216
216
|
class RetrievalQA(BaseRetrievalQA):
|
|
@@ -295,7 +295,7 @@ class RetrievalQA(BaseRetrievalQA):
|
|
|
295
295
|
message=(
|
|
296
296
|
"This class is deprecated. Use the `create_retrieval_chain` constructor "
|
|
297
297
|
"instead. See migration guide here: "
|
|
298
|
-
"https://python.langchain.com/
|
|
298
|
+
"https://python.langchain.com/docs/versions/migrating_chains/retrieval_qa/"
|
|
299
299
|
),
|
|
300
300
|
)
|
|
301
301
|
class VectorDBQA(BaseRetrievalQA):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langchain
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Building applications with LLMs through composability
|
|
5
5
|
Home-page: https://github.com/langchain-ai/langchain
|
|
6
6
|
License: MIT
|
|
@@ -15,7 +15,7 @@ Requires-Dist: PyYAML (>=5.3)
|
|
|
15
15
|
Requires-Dist: SQLAlchemy (>=1.4,<3)
|
|
16
16
|
Requires-Dist: aiohttp (>=3.8.3,<4.0.0)
|
|
17
17
|
Requires-Dist: async-timeout (>=4.0.0,<5.0.0) ; python_version < "3.11"
|
|
18
|
-
Requires-Dist: langchain-core (>=0.3.
|
|
18
|
+
Requires-Dist: langchain-core (>=0.3.8,<0.4.0)
|
|
19
19
|
Requires-Dist: langchain-text-splitters (>=0.3.0,<0.4.0)
|
|
20
20
|
Requires-Dist: langsmith (>=0.1.17,<0.2.0)
|
|
21
21
|
Requires-Dist: numpy (>=1,<2) ; python_version < "3.12"
|
|
@@ -2,7 +2,7 @@ langchain/__init__.py,sha256=4cqV-N_QJnfjk52DqtR2e72vsmJC1R6PkflvRdLjZQI,13709
|
|
|
2
2
|
langchain/_api/__init__.py,sha256=0FuHuMNUBMrst1Y1nm5yZzQr2xbLmb7rxMsimqKBXhs,733
|
|
3
3
|
langchain/_api/deprecation.py,sha256=MpH4S7a11UDuoAGCv1RLWGn4pwhoFwEOrtONJGep40U,471
|
|
4
4
|
langchain/_api/interactive_env.py,sha256=NlnXizhm1TG3l_qKNI0qHJiHkh9q2jRjt5zGJsg_BCA,139
|
|
5
|
-
langchain/_api/module_import.py,sha256=
|
|
5
|
+
langchain/_api/module_import.py,sha256=q6UZ1WadWx7curQq8HV8nGwt9WmKd7tJ0mipUyG7ll0,6347
|
|
6
6
|
langchain/_api/path.py,sha256=ovJP6Pcf7L_KaKvMMet9G9OzfLTb-sZV2pEw3Tp7o3I,122
|
|
7
7
|
langchain/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
langchain/adapters/openai.py,sha256=kWvS_DdRtpcc49vDY8zLUo3BrtXA3a89bLJu3Sksvaw,1996
|
|
@@ -74,7 +74,7 @@ langchain/agents/agent_toolkits/sql/toolkit.py,sha256=CCVWRJKVuECq-eFRjatJjYsy81
|
|
|
74
74
|
langchain/agents/agent_toolkits/steam/__init__.py,sha256=iOMgxWCt0FTNLMNq0wScgSN_YdBBq-56VM6j0Ud8GpI,21
|
|
75
75
|
langchain/agents/agent_toolkits/steam/toolkit.py,sha256=V0_xpO4mC4rfWBaLyTPW-pKwd-EScTTUnvgtB1sW6Cw,659
|
|
76
76
|
langchain/agents/agent_toolkits/vectorstore/__init__.py,sha256=uT5qVHjIcx3yFkWfxOzbRKL5xwWcMuFGQ-es9O7b2NQ,56
|
|
77
|
-
langchain/agents/agent_toolkits/vectorstore/base.py,sha256=
|
|
77
|
+
langchain/agents/agent_toolkits/vectorstore/base.py,sha256=lnzst1sehVH8FExMPF8Q1TFg9BROmfp5uHRzE2LB7Mo,8462
|
|
78
78
|
langchain/agents/agent_toolkits/vectorstore/prompt.py,sha256=DndLnLxi9iKjuYKo5E1nscHCOPeCoNcpl8dFHcSltxU,834
|
|
79
79
|
langchain/agents/agent_toolkits/vectorstore/toolkit.py,sha256=dJhQ-0bfPOSliIFickPnJ40iefUPUyL3uV2pVaYP4pA,3210
|
|
80
80
|
langchain/agents/agent_toolkits/xorbits/__init__.py,sha256=LJ-yZ3UKg4vjibzbgMXocR03vcsU_7ZvU7TlScM9RlE,1095
|
|
@@ -111,7 +111,7 @@ langchain/agents/mrkl/base.py,sha256=GnWny1MWbfms9b3tF18nyuejzC5NHwDxJbXQBsXxrSw
|
|
|
111
111
|
langchain/agents/mrkl/output_parser.py,sha256=YQGSjQq5pR4kFUg1HrOS3laV6xgtHgtIOQ_TtJY0UFI,3720
|
|
112
112
|
langchain/agents/mrkl/prompt.py,sha256=2dTMP2lAWiLvCtuEijgQRjbKDlbPEnmx77duMwdJ7e4,641
|
|
113
113
|
langchain/agents/openai_assistant/__init__.py,sha256=Xssaqoxrix3hn1gKSOLmDRQzTxAoJk0ProGXmXQe8Mw,114
|
|
114
|
-
langchain/agents/openai_assistant/base.py,sha256=
|
|
114
|
+
langchain/agents/openai_assistant/base.py,sha256=UGUEVtJCNudTWYoyc4-z1N7BQpKWnwKybeO9bZzivD0,27957
|
|
115
115
|
langchain/agents/openai_functions_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
116
|
langchain/agents/openai_functions_agent/agent_token_buffer_memory.py,sha256=t3J3Qku4lvs-EGTbPRzhrxAwTVBoEj4tu5wbl5u2-N0,3764
|
|
117
117
|
langchain/agents/openai_functions_agent/base.py,sha256=katIW0vE87B7ezm9WU_fEMfeHSQPHZptM0zppQfnY-4,13474
|
|
@@ -221,14 +221,14 @@ langchain/chains/combine_documents/map_reduce.py,sha256=qcYHuTtkSM5kalrErz7GWgRV
|
|
|
221
221
|
langchain/chains/combine_documents/map_rerank.py,sha256=gzx3jo-pvrLouF9XSU0Wmu6nYoPcCMTBJCH5pLfv3vk,9327
|
|
222
222
|
langchain/chains/combine_documents/reduce.py,sha256=UH-HCX3q7ShsH952uEJxrmUO_ilI7q4vQjBCQkkYl-c,14159
|
|
223
223
|
langchain/chains/combine_documents/refine.py,sha256=sZve5lJDTPad-N-AByfoW5OJzg9eZ1Bp0KfFCKstp1A,9463
|
|
224
|
-
langchain/chains/combine_documents/stuff.py,sha256=
|
|
224
|
+
langchain/chains/combine_documents/stuff.py,sha256=ebbBrSnMiZjGUjxhQNJ1bw6-aFSpSubwm9Xp2YYKXJM,11555
|
|
225
225
|
langchain/chains/constitutional_ai/__init__.py,sha256=Woq_Efl5d-MSTkhpg7HLts3kXysJVZLiz3tr05NTf5Q,107
|
|
226
226
|
langchain/chains/constitutional_ai/base.py,sha256=ubt-A3UpMg1qQ9fwQ4ZGBkahn7AnirGH58CfWvCUIa0,12705
|
|
227
227
|
langchain/chains/constitutional_ai/models.py,sha256=D_p--Zt-ut32VuU5nHdqmPv5vFZEbO0f9pInVmG8NqU,266
|
|
228
228
|
langchain/chains/constitutional_ai/principles.py,sha256=vElwvF1w4h8URsj38ucmoKp9hUCzf0sJyoNQmKv1Kws,21739
|
|
229
229
|
langchain/chains/constitutional_ai/prompts.py,sha256=vL7qEGpLZShdKY8i07874peWB63eTYud6iPJcWcD-Y4,9072
|
|
230
230
|
langchain/chains/conversation/__init__.py,sha256=hpIiQSoUe0bGkqAGKxG_CEYRFsjHRL4l5uBEpCBetFc,71
|
|
231
|
-
langchain/chains/conversation/base.py,sha256=
|
|
231
|
+
langchain/chains/conversation/base.py,sha256=I1YGmPI1BiLA-2lKHiNLoltcSV3Fwl7G0xEvsFHk__E,5550
|
|
232
232
|
langchain/chains/conversation/memory.py,sha256=KoKmk5FjPEkioolvmFxcJgRr2wRdWIe1LNBHCtGgUKo,1396
|
|
233
233
|
langchain/chains/conversation/prompt.py,sha256=84xC4dy8yNiCSICT4b6UvZdQXpPifMVw1hf7WnFAVkw,913
|
|
234
234
|
langchain/chains/conversational_retrieval/__init__.py,sha256=hq7jx-kmg3s8qLYnV7gPmzVIPcGqW69H6cXIjklvGjY,49
|
|
@@ -279,7 +279,7 @@ langchain/chains/llm_summarization_checker/prompts/create_facts.txt,sha256=hM2_E
|
|
|
279
279
|
langchain/chains/llm_summarization_checker/prompts/revise_summary.txt,sha256=nSSq5UQMx6gvjMKIs2t_ituuEQzu2nni1wdnywAe-5U,416
|
|
280
280
|
langchain/chains/llm_symbolic_math/__init__.py,sha256=KQ6bFiFMsqs8PNtU-oo6l-czNBBwQUn2rEirz3gt-w8,470
|
|
281
281
|
langchain/chains/loading.py,sha256=57shFurz0r_FDoUSTcD5Hv7cZl4Rr2G2A_gT-p7XHCE,28829
|
|
282
|
-
langchain/chains/mapreduce.py,sha256=
|
|
282
|
+
langchain/chains/mapreduce.py,sha256=90P4QcNczv22qye9JCuOptR9ze-0qIFotb6bOS6HX8g,4092
|
|
283
283
|
langchain/chains/moderation.py,sha256=ezUrzTOI6uGynyglpSuGom2gK26bKtkER2UuMG4yJWQ,4427
|
|
284
284
|
langchain/chains/natbot/__init__.py,sha256=ACF2TYNK_CTfvmdLlG5Ry0_j9D6ZfjgfQxmeKe1BAIg,96
|
|
285
285
|
langchain/chains/natbot/base.py,sha256=zl_sf4dgS8dFRYTY83cdaMXq1oqEsB-ddlb7RHx5SUM,5286
|
|
@@ -290,8 +290,8 @@ langchain/chains/openai_functions/base.py,sha256=jfgnAuire9OLOL0kLqKScpjdBEXKYzy
|
|
|
290
290
|
langchain/chains/openai_functions/citation_fuzzy_match.py,sha256=cd9kh6DKMKS-eCskWFcJmDQLOemne1SMe4pKHbJ-Mvc,5344
|
|
291
291
|
langchain/chains/openai_functions/extraction.py,sha256=2P99EoAb8iipW8TNJwNG2gUzgpWYSCZAvPU-kgUNfqU,7390
|
|
292
292
|
langchain/chains/openai_functions/openapi.py,sha256=oqNFnLboLyFykkjHGvXR9Bd-7tjx7EjkNZnxXh5ISoc,14954
|
|
293
|
-
langchain/chains/openai_functions/qa_with_structure.py,sha256=
|
|
294
|
-
langchain/chains/openai_functions/tagging.py,sha256=
|
|
293
|
+
langchain/chains/openai_functions/qa_with_structure.py,sha256=hS_b7PZjsgD7OR8QXOboq1LGClbRc6TlKcdqMCATojA,4841
|
|
294
|
+
langchain/chains/openai_functions/tagging.py,sha256=5i4dAe019rCKN_zWYugHkW5U66yO9Gse8AxjxJLdnr0,6504
|
|
295
295
|
langchain/chains/openai_functions/utils.py,sha256=GDhYjszQGut1UcJ-dyPvkwiT8gHOV0IejRuIfN7_fhw,1255
|
|
296
296
|
langchain/chains/openai_tools/__init__.py,sha256=xX0If1Nx_ocEOI56EGxCI0v0RZ1_VUegzyODAj0RLVU,134
|
|
297
297
|
langchain/chains/openai_tools/extraction.py,sha256=sG8qUQKa7f-6JcbH1OWgpTtuUYV-3B-wBZJTDpp101E,3399
|
|
@@ -300,8 +300,8 @@ langchain/chains/qa_generation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
300
300
|
langchain/chains/qa_generation/base.py,sha256=obAA1qtCavCO3zkskRtB62is-geDOJG526T1N6tJbts,4187
|
|
301
301
|
langchain/chains/qa_generation/prompt.py,sha256=W3lYKPUDSKS4N6b_FWlKzjn0tU5J4iQ8CF2FixdtqBo,1875
|
|
302
302
|
langchain/chains/qa_with_sources/__init__.py,sha256=pYogDy6KwP4fS0m6GqyhLu_1kSd0ba3Ar4aPdIlRTTo,174
|
|
303
|
-
langchain/chains/qa_with_sources/base.py,sha256=
|
|
304
|
-
langchain/chains/qa_with_sources/loading.py,sha256=
|
|
303
|
+
langchain/chains/qa_with_sources/base.py,sha256=1N8z2CNstOnuPhy8QNnND-UDn1_XGgAHOmOKOuttKA8,8521
|
|
304
|
+
langchain/chains/qa_with_sources/loading.py,sha256=A_fU5HYt0pGt-PArz-5lcI3WSaGEnF-u9ijEq7pLiew,7939
|
|
305
305
|
langchain/chains/qa_with_sources/map_reduce_prompt.py,sha256=hAM6OZbefpaaANdFYElB9feUi1iTlg0h54NDrFOw6Fo,6971
|
|
306
306
|
langchain/chains/qa_with_sources/refine_prompts.py,sha256=MIwQfIXjFFjmNmwgMIq9yM5rOQdjswHnShNpNNc1BwM,1318
|
|
307
307
|
langchain/chains/qa_with_sources/retrieval.py,sha256=OmIQkHjuEvsiXflvAbd5vt5mF8w7U4HtnBcQd3Ffrn0,2433
|
|
@@ -314,14 +314,14 @@ langchain/chains/query_constructor/parser.py,sha256=staGwAmGi0xlAEZ2niDkd9MFntZO
|
|
|
314
314
|
langchain/chains/query_constructor/prompt.py,sha256=rwEsTr29cKBKPnn6vKB5rFw-youslUIFQoRIBkBh-j0,6880
|
|
315
315
|
langchain/chains/query_constructor/schema.py,sha256=FRn_cpTRXuP9N1PprndGqkm-AfV5f-mihX1YAlAZUGE,277
|
|
316
316
|
langchain/chains/question_answering/__init__.py,sha256=wohLdJqGfpWOwy68EEleW73SCenaQfxPCpMsrCIlohU,144
|
|
317
|
-
langchain/chains/question_answering/chain.py,sha256=
|
|
317
|
+
langchain/chains/question_answering/chain.py,sha256=8Hcg2pA87R1ruofPPpSzQwOdxuCdTfbXPVQg9lwnvkg,9641
|
|
318
318
|
langchain/chains/question_answering/map_reduce_prompt.py,sha256=CrerC8PqW1-V8SsQQsFsMd7dfjTb04Urf2naQYVGxl0,8013
|
|
319
319
|
langchain/chains/question_answering/map_rerank_prompt.py,sha256=l2Ha1Xqr5Q6Y-Xh9af8JTni9gLAyhKJhmSErRFGw9s4,1622
|
|
320
320
|
langchain/chains/question_answering/refine_prompts.py,sha256=JbQKbGaHo-IoHw1Wl16mMvqTi9kjmp_5NK526C_9_nM,2378
|
|
321
321
|
langchain/chains/question_answering/stuff_prompt.py,sha256=tXecxj10u9x0taPz4I1Kn-J0SOYcjIfr_8RINw9P7ys,1146
|
|
322
322
|
langchain/chains/retrieval.py,sha256=-ZHLdDQUkIQLjF9DMvpH_YgZKxShTm0GaSIhw1ab_EM,2742
|
|
323
323
|
langchain/chains/retrieval_qa/__init__.py,sha256=MGGNuZ-HVZDyk551hUjGexK3U9q-2Yi_VJkpi7MV2DE,62
|
|
324
|
-
langchain/chains/retrieval_qa/base.py,sha256=
|
|
324
|
+
langchain/chains/retrieval_qa/base.py,sha256=R8zVrsg9OPPXDKLhQi6ouj9zvvlzqSNr1sNavR_Bji0,12013
|
|
325
325
|
langchain/chains/retrieval_qa/prompt.py,sha256=c5_tFGFbltYvM9P6K_Zk3dOeYYbiSFN-MkJK6HBoNuA,399
|
|
326
326
|
langchain/chains/router/__init__.py,sha256=r66J28FWIORVB5QIZ1d8R_HsiBaV1eQMZDZvMC43oAQ,407
|
|
327
327
|
langchain/chains/router/base.py,sha256=ws6i8C4nk7YWmBqkXBcJ-FybNx4OeDJE-L1IELLK3M4,4517
|
|
@@ -1335,8 +1335,8 @@ langchain/vectorstores/xata.py,sha256=HW_Oi5Hz8rH2JaUhRNWQ-3hLYmNzD8eAz6K5YqPArm
|
|
|
1335
1335
|
langchain/vectorstores/yellowbrick.py,sha256=-lnjGcRE8Q1nEPOTdbKYTw5noS2cy2ce1ePOU804-_o,624
|
|
1336
1336
|
langchain/vectorstores/zep.py,sha256=RJ2auxoA6uHHLEZknw3_jeFmYJYVt-PWKMBcNMGV6TM,798
|
|
1337
1337
|
langchain/vectorstores/zilliz.py,sha256=XhPPIUfKPFJw0_svCoBgCnNkkBLoRVVcyuMfOnE5IxU,609
|
|
1338
|
-
langchain-0.3.
|
|
1339
|
-
langchain-0.3.
|
|
1340
|
-
langchain-0.3.
|
|
1341
|
-
langchain-0.3.
|
|
1342
|
-
langchain-0.3.
|
|
1338
|
+
langchain-0.3.2.dist-info/LICENSE,sha256=TsZ-TKbmch26hJssqCJhWXyGph7iFLvyFBYAa3stBHg,1067
|
|
1339
|
+
langchain-0.3.2.dist-info/METADATA,sha256=C7Uh5KgODQkWm2IoW_fVsOLK71cjo9pchT20cI2Kx7s,7078
|
|
1340
|
+
langchain-0.3.2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
1341
|
+
langchain-0.3.2.dist-info/entry_points.txt,sha256=IgKjoXnkkVC8Nm7ggiFMCNAk01ua6RVTb9cmZTVNm5w,58
|
|
1342
|
+
langchain-0.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|