langchain-core 1.0.0rc2__py3-none-any.whl → 1.0.1__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-core might be problematic. Click here for more details.
- langchain_core/caches.py +3 -1
- langchain_core/callbacks/base.py +0 -4
- langchain_core/callbacks/manager.py +0 -11
- langchain_core/document_loaders/langsmith.py +0 -3
- langchain_core/documents/base.py +0 -2
- langchain_core/documents/transformers.py +4 -4
- langchain_core/indexing/base.py +4 -6
- langchain_core/indexing/in_memory.py +0 -2
- langchain_core/language_models/base.py +5 -6
- langchain_core/language_models/chat_models.py +86 -79
- langchain_core/language_models/llms.py +16 -12
- langchain_core/load/dump.py +5 -7
- langchain_core/messages/block_translators/google_genai.py +1 -1
- langchain_core/messages/utils.py +4 -4
- langchain_core/prompts/string.py +5 -2
- langchain_core/rate_limiters.py +1 -3
- langchain_core/runnables/base.py +17 -21
- langchain_core/runnables/branch.py +9 -9
- langchain_core/runnables/config.py +8 -10
- langchain_core/runnables/fallbacks.py +1 -1
- langchain_core/runnables/retry.py +1 -1
- langchain_core/runnables/schema.py +2 -5
- langchain_core/runnables/utils.py +3 -3
- langchain_core/stores.py +4 -6
- langchain_core/tools/base.py +49 -3
- langchain_core/tools/convert.py +0 -2
- langchain_core/tracers/event_stream.py +4 -1
- langchain_core/tracers/log_stream.py +4 -1
- langchain_core/utils/function_calling.py +8 -0
- langchain_core/utils/json_schema.py +1 -1
- langchain_core/vectorstores/base.py +59 -63
- langchain_core/vectorstores/in_memory.py +2 -2
- langchain_core/vectorstores/utils.py +1 -1
- langchain_core/version.py +1 -1
- {langchain_core-1.0.0rc2.dist-info → langchain_core-1.0.1.dist-info}/METADATA +8 -7
- {langchain_core-1.0.0rc2.dist-info → langchain_core-1.0.1.dist-info}/RECORD +37 -37
- {langchain_core-1.0.0rc2.dist-info → langchain_core-1.0.1.dist-info}/WHEEL +0 -0
|
@@ -52,10 +52,10 @@ class VectorStore(ABC):
|
|
|
52
52
|
ids: list[str] | None = None,
|
|
53
53
|
**kwargs: Any,
|
|
54
54
|
) -> list[str]:
|
|
55
|
-
"""Run more texts through the embeddings and add to the
|
|
55
|
+
"""Run more texts through the embeddings and add to the `VectorStore`.
|
|
56
56
|
|
|
57
57
|
Args:
|
|
58
|
-
texts: Iterable of strings to add to the
|
|
58
|
+
texts: Iterable of strings to add to the `VectorStore`.
|
|
59
59
|
metadatas: Optional list of metadatas associated with the texts.
|
|
60
60
|
ids: Optional list of IDs associated with the texts.
|
|
61
61
|
**kwargs: vectorstore specific parameters.
|
|
@@ -63,7 +63,7 @@ class VectorStore(ABC):
|
|
|
63
63
|
associated with the texts.
|
|
64
64
|
|
|
65
65
|
Returns:
|
|
66
|
-
List of ids from adding the texts into the
|
|
66
|
+
List of ids from adding the texts into the `VectorStore`.
|
|
67
67
|
|
|
68
68
|
Raises:
|
|
69
69
|
ValueError: If the number of metadatas does not match the number of texts.
|
|
@@ -139,8 +139,6 @@ class VectorStore(ABC):
|
|
|
139
139
|
|
|
140
140
|
Returns:
|
|
141
141
|
List of Documents.
|
|
142
|
-
|
|
143
|
-
!!! version-added "Added in version 0.2.11"
|
|
144
142
|
"""
|
|
145
143
|
msg = f"{self.__class__.__name__} does not yet support get_by_ids."
|
|
146
144
|
raise NotImplementedError(msg)
|
|
@@ -167,8 +165,6 @@ class VectorStore(ABC):
|
|
|
167
165
|
|
|
168
166
|
Returns:
|
|
169
167
|
List of Documents.
|
|
170
|
-
|
|
171
|
-
!!! version-added "Added in version 0.2.11"
|
|
172
168
|
"""
|
|
173
169
|
return await run_in_executor(None, self.get_by_ids, ids)
|
|
174
170
|
|
|
@@ -192,16 +188,16 @@ class VectorStore(ABC):
|
|
|
192
188
|
ids: list[str] | None = None,
|
|
193
189
|
**kwargs: Any,
|
|
194
190
|
) -> list[str]:
|
|
195
|
-
"""Async run more texts through the embeddings and add to the
|
|
191
|
+
"""Async run more texts through the embeddings and add to the `VectorStore`.
|
|
196
192
|
|
|
197
193
|
Args:
|
|
198
|
-
texts: Iterable of strings to add to the
|
|
194
|
+
texts: Iterable of strings to add to the `VectorStore`.
|
|
199
195
|
metadatas: Optional list of metadatas associated with the texts.
|
|
200
196
|
ids: Optional list
|
|
201
197
|
**kwargs: vectorstore specific parameters.
|
|
202
198
|
|
|
203
199
|
Returns:
|
|
204
|
-
List of ids from adding the texts into the
|
|
200
|
+
List of ids from adding the texts into the `VectorStore`.
|
|
205
201
|
|
|
206
202
|
Raises:
|
|
207
203
|
ValueError: If the number of metadatas does not match the number of texts.
|
|
@@ -237,7 +233,7 @@ class VectorStore(ABC):
|
|
|
237
233
|
"""Add or update documents in the vectorstore.
|
|
238
234
|
|
|
239
235
|
Args:
|
|
240
|
-
documents: Documents to add to the
|
|
236
|
+
documents: Documents to add to the `VectorStore`.
|
|
241
237
|
**kwargs: Additional keyword arguments.
|
|
242
238
|
if kwargs contains ids and documents contain ids,
|
|
243
239
|
the ids in the kwargs will receive precedence.
|
|
@@ -266,10 +262,10 @@ class VectorStore(ABC):
|
|
|
266
262
|
async def aadd_documents(
|
|
267
263
|
self, documents: list[Document], **kwargs: Any
|
|
268
264
|
) -> list[str]:
|
|
269
|
-
"""Async run more documents through the embeddings and add to the
|
|
265
|
+
"""Async run more documents through the embeddings and add to the `VectorStore`.
|
|
270
266
|
|
|
271
267
|
Args:
|
|
272
|
-
documents: Documents to add to the
|
|
268
|
+
documents: Documents to add to the `VectorStore`.
|
|
273
269
|
**kwargs: Additional keyword arguments.
|
|
274
270
|
|
|
275
271
|
Returns:
|
|
@@ -301,7 +297,7 @@ class VectorStore(ABC):
|
|
|
301
297
|
**kwargs: Arguments to pass to the search method.
|
|
302
298
|
|
|
303
299
|
Returns:
|
|
304
|
-
List of
|
|
300
|
+
List of `Document` objects most similar to the query.
|
|
305
301
|
|
|
306
302
|
Raises:
|
|
307
303
|
ValueError: If search_type is not one of "similarity",
|
|
@@ -335,7 +331,7 @@ class VectorStore(ABC):
|
|
|
335
331
|
**kwargs: Arguments to pass to the search method.
|
|
336
332
|
|
|
337
333
|
Returns:
|
|
338
|
-
List of
|
|
334
|
+
List of `Document` objects most similar to the query.
|
|
339
335
|
|
|
340
336
|
Raises:
|
|
341
337
|
ValueError: If search_type is not one of "similarity",
|
|
@@ -368,7 +364,7 @@ class VectorStore(ABC):
|
|
|
368
364
|
**kwargs: Arguments to pass to the search method.
|
|
369
365
|
|
|
370
366
|
Returns:
|
|
371
|
-
List of
|
|
367
|
+
List of `Document` objects most similar to the query.
|
|
372
368
|
"""
|
|
373
369
|
|
|
374
370
|
@staticmethod
|
|
@@ -423,7 +419,7 @@ class VectorStore(ABC):
|
|
|
423
419
|
**kwargs: Arguments to pass to the search method.
|
|
424
420
|
|
|
425
421
|
Returns:
|
|
426
|
-
List of Tuples of (doc, similarity_score)
|
|
422
|
+
List of Tuples of `(doc, similarity_score)`.
|
|
427
423
|
"""
|
|
428
424
|
raise NotImplementedError
|
|
429
425
|
|
|
@@ -437,7 +433,7 @@ class VectorStore(ABC):
|
|
|
437
433
|
**kwargs: Arguments to pass to the search method.
|
|
438
434
|
|
|
439
435
|
Returns:
|
|
440
|
-
List of Tuples of (doc, similarity_score)
|
|
436
|
+
List of Tuples of `(doc, similarity_score)`.
|
|
441
437
|
"""
|
|
442
438
|
# This is a temporary workaround to make the similarity search
|
|
443
439
|
# asynchronous. The proper solution is to make the similarity search
|
|
@@ -455,19 +451,19 @@ class VectorStore(ABC):
|
|
|
455
451
|
"""Default similarity search with relevance scores.
|
|
456
452
|
|
|
457
453
|
Modify if necessary in subclass.
|
|
458
|
-
Return docs and relevance scores in the range [0, 1]
|
|
454
|
+
Return docs and relevance scores in the range `[0, 1]`.
|
|
459
455
|
|
|
460
|
-
0 is dissimilar, 1 is most similar.
|
|
456
|
+
`0` is dissimilar, `1` is most similar.
|
|
461
457
|
|
|
462
458
|
Args:
|
|
463
459
|
query: Input text.
|
|
464
460
|
k: Number of Documents to return.
|
|
465
|
-
**kwargs: kwargs to be passed to similarity search. Should include
|
|
466
|
-
score_threshold
|
|
467
|
-
|
|
461
|
+
**kwargs: kwargs to be passed to similarity search. Should include
|
|
462
|
+
`score_threshold`, An optional floating point value between `0` to `1`
|
|
463
|
+
to filter the resulting set of retrieved docs
|
|
468
464
|
|
|
469
465
|
Returns:
|
|
470
|
-
List of Tuples of (doc, similarity_score)
|
|
466
|
+
List of Tuples of `(doc, similarity_score)`
|
|
471
467
|
"""
|
|
472
468
|
relevance_score_fn = self._select_relevance_score_fn()
|
|
473
469
|
docs_and_scores = self.similarity_search_with_score(query, k, **kwargs)
|
|
@@ -482,19 +478,19 @@ class VectorStore(ABC):
|
|
|
482
478
|
"""Default similarity search with relevance scores.
|
|
483
479
|
|
|
484
480
|
Modify if necessary in subclass.
|
|
485
|
-
Return docs and relevance scores in the range [0, 1]
|
|
481
|
+
Return docs and relevance scores in the range `[0, 1]`.
|
|
486
482
|
|
|
487
|
-
0 is dissimilar, 1 is most similar.
|
|
483
|
+
`0` is dissimilar, `1` is most similar.
|
|
488
484
|
|
|
489
485
|
Args:
|
|
490
486
|
query: Input text.
|
|
491
487
|
k: Number of Documents to return.
|
|
492
|
-
**kwargs: kwargs to be passed to similarity search. Should include
|
|
493
|
-
score_threshold
|
|
494
|
-
|
|
488
|
+
**kwargs: kwargs to be passed to similarity search. Should include
|
|
489
|
+
`score_threshold`, An optional floating point value between `0` to `1`
|
|
490
|
+
to filter the resulting set of retrieved docs
|
|
495
491
|
|
|
496
492
|
Returns:
|
|
497
|
-
List of Tuples of (doc, similarity_score)
|
|
493
|
+
List of Tuples of `(doc, similarity_score)`
|
|
498
494
|
"""
|
|
499
495
|
relevance_score_fn = self._select_relevance_score_fn()
|
|
500
496
|
docs_and_scores = await self.asimilarity_search_with_score(query, k, **kwargs)
|
|
@@ -506,19 +502,19 @@ class VectorStore(ABC):
|
|
|
506
502
|
k: int = 4,
|
|
507
503
|
**kwargs: Any,
|
|
508
504
|
) -> list[tuple[Document, float]]:
|
|
509
|
-
"""Return docs and relevance scores in the range [0, 1]
|
|
505
|
+
"""Return docs and relevance scores in the range `[0, 1]`.
|
|
510
506
|
|
|
511
|
-
0 is dissimilar, 1 is most similar.
|
|
507
|
+
`0` is dissimilar, `1` is most similar.
|
|
512
508
|
|
|
513
509
|
Args:
|
|
514
510
|
query: Input text.
|
|
515
511
|
k: Number of Documents to return.
|
|
516
|
-
**kwargs: kwargs to be passed to similarity search. Should include
|
|
517
|
-
score_threshold
|
|
518
|
-
|
|
512
|
+
**kwargs: kwargs to be passed to similarity search. Should include
|
|
513
|
+
`score_threshold`, An optional floating point value between `0` to `1`
|
|
514
|
+
to filter the resulting set of retrieved docs
|
|
519
515
|
|
|
520
516
|
Returns:
|
|
521
|
-
List of Tuples of (doc, similarity_score)
|
|
517
|
+
List of Tuples of `(doc, similarity_score)`.
|
|
522
518
|
"""
|
|
523
519
|
score_threshold = kwargs.pop("score_threshold", None)
|
|
524
520
|
|
|
@@ -555,19 +551,19 @@ class VectorStore(ABC):
|
|
|
555
551
|
k: int = 4,
|
|
556
552
|
**kwargs: Any,
|
|
557
553
|
) -> list[tuple[Document, float]]:
|
|
558
|
-
"""Async return docs and relevance scores in the range [0, 1]
|
|
554
|
+
"""Async return docs and relevance scores in the range `[0, 1]`.
|
|
559
555
|
|
|
560
|
-
0 is dissimilar, 1 is most similar.
|
|
556
|
+
`0` is dissimilar, `1` is most similar.
|
|
561
557
|
|
|
562
558
|
Args:
|
|
563
559
|
query: Input text.
|
|
564
560
|
k: Number of Documents to return.
|
|
565
|
-
**kwargs: kwargs to be passed to similarity search. Should include
|
|
566
|
-
score_threshold
|
|
567
|
-
|
|
561
|
+
**kwargs: kwargs to be passed to similarity search. Should include
|
|
562
|
+
`score_threshold`, An optional floating point value between `0` to `1`
|
|
563
|
+
to filter the resulting set of retrieved docs
|
|
568
564
|
|
|
569
565
|
Returns:
|
|
570
|
-
List of Tuples of (doc, similarity_score)
|
|
566
|
+
List of Tuples of `(doc, similarity_score)`
|
|
571
567
|
"""
|
|
572
568
|
score_threshold = kwargs.pop("score_threshold", None)
|
|
573
569
|
|
|
@@ -609,7 +605,7 @@ class VectorStore(ABC):
|
|
|
609
605
|
**kwargs: Arguments to pass to the search method.
|
|
610
606
|
|
|
611
607
|
Returns:
|
|
612
|
-
List of
|
|
608
|
+
List of `Document` objects most similar to the query.
|
|
613
609
|
"""
|
|
614
610
|
# This is a temporary workaround to make the similarity search
|
|
615
611
|
# asynchronous. The proper solution is to make the similarity search
|
|
@@ -627,7 +623,7 @@ class VectorStore(ABC):
|
|
|
627
623
|
**kwargs: Arguments to pass to the search method.
|
|
628
624
|
|
|
629
625
|
Returns:
|
|
630
|
-
List of
|
|
626
|
+
List of `Document` objects most similar to the query vector.
|
|
631
627
|
"""
|
|
632
628
|
raise NotImplementedError
|
|
633
629
|
|
|
@@ -642,7 +638,7 @@ class VectorStore(ABC):
|
|
|
642
638
|
**kwargs: Arguments to pass to the search method.
|
|
643
639
|
|
|
644
640
|
Returns:
|
|
645
|
-
List of
|
|
641
|
+
List of `Document` objects most similar to the query vector.
|
|
646
642
|
"""
|
|
647
643
|
# This is a temporary workaround to make the similarity search
|
|
648
644
|
# asynchronous. The proper solution is to make the similarity search
|
|
@@ -674,7 +670,7 @@ class VectorStore(ABC):
|
|
|
674
670
|
**kwargs: Arguments to pass to the search method.
|
|
675
671
|
|
|
676
672
|
Returns:
|
|
677
|
-
List of
|
|
673
|
+
List of `Document` objects selected by maximal marginal relevance.
|
|
678
674
|
"""
|
|
679
675
|
raise NotImplementedError
|
|
680
676
|
|
|
@@ -701,7 +697,7 @@ class VectorStore(ABC):
|
|
|
701
697
|
**kwargs: Arguments to pass to the search method.
|
|
702
698
|
|
|
703
699
|
Returns:
|
|
704
|
-
List of
|
|
700
|
+
List of `Document` objects selected by maximal marginal relevance.
|
|
705
701
|
"""
|
|
706
702
|
# This is a temporary workaround to make the similarity search
|
|
707
703
|
# asynchronous. The proper solution is to make the similarity search
|
|
@@ -739,7 +735,7 @@ class VectorStore(ABC):
|
|
|
739
735
|
**kwargs: Arguments to pass to the search method.
|
|
740
736
|
|
|
741
737
|
Returns:
|
|
742
|
-
List of
|
|
738
|
+
List of `Document` objects selected by maximal marginal relevance.
|
|
743
739
|
"""
|
|
744
740
|
raise NotImplementedError
|
|
745
741
|
|
|
@@ -766,7 +762,7 @@ class VectorStore(ABC):
|
|
|
766
762
|
**kwargs: Arguments to pass to the search method.
|
|
767
763
|
|
|
768
764
|
Returns:
|
|
769
|
-
List of
|
|
765
|
+
List of `Document` objects selected by maximal marginal relevance.
|
|
770
766
|
"""
|
|
771
767
|
return await run_in_executor(
|
|
772
768
|
None,
|
|
@@ -785,15 +781,15 @@ class VectorStore(ABC):
|
|
|
785
781
|
embedding: Embeddings,
|
|
786
782
|
**kwargs: Any,
|
|
787
783
|
) -> Self:
|
|
788
|
-
"""Return VectorStore initialized from documents and embeddings.
|
|
784
|
+
"""Return `VectorStore` initialized from documents and embeddings.
|
|
789
785
|
|
|
790
786
|
Args:
|
|
791
|
-
documents: List of
|
|
787
|
+
documents: List of `Document` objects to add to the `VectorStore`.
|
|
792
788
|
embedding: Embedding function to use.
|
|
793
789
|
**kwargs: Additional keyword arguments.
|
|
794
790
|
|
|
795
791
|
Returns:
|
|
796
|
-
VectorStore initialized from documents and embeddings.
|
|
792
|
+
`VectorStore` initialized from documents and embeddings.
|
|
797
793
|
"""
|
|
798
794
|
texts = [d.page_content for d in documents]
|
|
799
795
|
metadatas = [d.metadata for d in documents]
|
|
@@ -815,15 +811,15 @@ class VectorStore(ABC):
|
|
|
815
811
|
embedding: Embeddings,
|
|
816
812
|
**kwargs: Any,
|
|
817
813
|
) -> Self:
|
|
818
|
-
"""Async return VectorStore initialized from documents and embeddings.
|
|
814
|
+
"""Async return `VectorStore` initialized from documents and embeddings.
|
|
819
815
|
|
|
820
816
|
Args:
|
|
821
|
-
documents: List of
|
|
817
|
+
documents: List of `Document` objects to add to the `VectorStore`.
|
|
822
818
|
embedding: Embedding function to use.
|
|
823
819
|
**kwargs: Additional keyword arguments.
|
|
824
820
|
|
|
825
821
|
Returns:
|
|
826
|
-
VectorStore initialized from documents and embeddings.
|
|
822
|
+
`VectorStore` initialized from documents and embeddings.
|
|
827
823
|
"""
|
|
828
824
|
texts = [d.page_content for d in documents]
|
|
829
825
|
metadatas = [d.metadata for d in documents]
|
|
@@ -852,7 +848,7 @@ class VectorStore(ABC):
|
|
|
852
848
|
"""Return VectorStore initialized from texts and embeddings.
|
|
853
849
|
|
|
854
850
|
Args:
|
|
855
|
-
texts: Texts to add to the
|
|
851
|
+
texts: Texts to add to the `VectorStore`.
|
|
856
852
|
embedding: Embedding function to use.
|
|
857
853
|
metadatas: Optional list of metadatas associated with the texts.
|
|
858
854
|
ids: Optional list of IDs associated with the texts.
|
|
@@ -875,7 +871,7 @@ class VectorStore(ABC):
|
|
|
875
871
|
"""Async return VectorStore initialized from texts and embeddings.
|
|
876
872
|
|
|
877
873
|
Args:
|
|
878
|
-
texts: Texts to add to the
|
|
874
|
+
texts: Texts to add to the `VectorStore`.
|
|
879
875
|
embedding: Embedding function to use.
|
|
880
876
|
metadatas: Optional list of metadatas associated with the texts.
|
|
881
877
|
ids: Optional list of IDs associated with the texts.
|
|
@@ -898,7 +894,7 @@ class VectorStore(ABC):
|
|
|
898
894
|
return tags
|
|
899
895
|
|
|
900
896
|
def as_retriever(self, **kwargs: Any) -> VectorStoreRetriever:
|
|
901
|
-
"""Return VectorStoreRetriever initialized from this VectorStore
|
|
897
|
+
"""Return `VectorStoreRetriever` initialized from this `VectorStore`.
|
|
902
898
|
|
|
903
899
|
Args:
|
|
904
900
|
**kwargs: Keyword arguments to pass to the search function.
|
|
@@ -918,7 +914,7 @@ class VectorStore(ABC):
|
|
|
918
914
|
filter: Filter by document metadata
|
|
919
915
|
|
|
920
916
|
Returns:
|
|
921
|
-
Retriever class for VectorStore
|
|
917
|
+
Retriever class for `VectorStore`.
|
|
922
918
|
|
|
923
919
|
Examples:
|
|
924
920
|
```python
|
|
@@ -1072,10 +1068,10 @@ class VectorStoreRetriever(BaseRetriever):
|
|
|
1072
1068
|
return docs
|
|
1073
1069
|
|
|
1074
1070
|
def add_documents(self, documents: list[Document], **kwargs: Any) -> list[str]:
|
|
1075
|
-
"""Add documents to the
|
|
1071
|
+
"""Add documents to the `VectorStore`.
|
|
1076
1072
|
|
|
1077
1073
|
Args:
|
|
1078
|
-
documents: Documents to add to the
|
|
1074
|
+
documents: Documents to add to the `VectorStore`.
|
|
1079
1075
|
**kwargs: Other keyword arguments that subclasses might use.
|
|
1080
1076
|
|
|
1081
1077
|
Returns:
|
|
@@ -1086,10 +1082,10 @@ class VectorStoreRetriever(BaseRetriever):
|
|
|
1086
1082
|
async def aadd_documents(
|
|
1087
1083
|
self, documents: list[Document], **kwargs: Any
|
|
1088
1084
|
) -> list[str]:
|
|
1089
|
-
"""Async add documents to the
|
|
1085
|
+
"""Async add documents to the `VectorStore`.
|
|
1090
1086
|
|
|
1091
1087
|
Args:
|
|
1092
|
-
documents: Documents to add to the
|
|
1088
|
+
documents: Documents to add to the `VectorStore`.
|
|
1093
1089
|
**kwargs: Other keyword arguments that subclasses might use.
|
|
1094
1090
|
|
|
1095
1091
|
Returns:
|
|
@@ -260,7 +260,7 @@ class InMemoryVectorStore(VectorStore):
|
|
|
260
260
|
ids: The ids of the documents to get.
|
|
261
261
|
|
|
262
262
|
Returns:
|
|
263
|
-
A list of Document objects.
|
|
263
|
+
A list of `Document` objects.
|
|
264
264
|
"""
|
|
265
265
|
documents = []
|
|
266
266
|
|
|
@@ -284,7 +284,7 @@ class InMemoryVectorStore(VectorStore):
|
|
|
284
284
|
ids: The ids of the documents to get.
|
|
285
285
|
|
|
286
286
|
Returns:
|
|
287
|
-
A list of Document objects.
|
|
287
|
+
A list of `Document` objects.
|
|
288
288
|
"""
|
|
289
289
|
return self.get_by_ids(ids)
|
|
290
290
|
|
langchain_core/version.py
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langchain-core
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Building applications with LLMs through composability
|
|
5
|
-
Project-URL:
|
|
6
|
-
Project-URL:
|
|
7
|
-
Project-URL:
|
|
8
|
-
Project-URL:
|
|
9
|
-
Project-URL:
|
|
10
|
-
Project-URL:
|
|
5
|
+
Project-URL: Homepage, https://docs.langchain.com/
|
|
6
|
+
Project-URL: Documentation, https://reference.langchain.com/python/langchain_core/
|
|
7
|
+
Project-URL: Source, https://github.com/langchain-ai/langchain/tree/master/libs/core
|
|
8
|
+
Project-URL: Changelog, https://github.com/langchain-ai/langchain/releases?q=%22langchain-core%3D%3D1%22
|
|
9
|
+
Project-URL: Twitter, https://x.com/LangChainAI
|
|
10
|
+
Project-URL: Slack, https://www.langchain.com/join-community
|
|
11
|
+
Project-URL: Reddit, https://www.reddit.com/r/LangChain/
|
|
11
12
|
License: MIT
|
|
12
13
|
Requires-Python: <4.0.0,>=3.10.0
|
|
13
14
|
Requires-Dist: jsonpatch<2.0.0,>=1.33.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
langchain_core/__init__.py,sha256=5oThb0zpZmmoQFL0jqYB3GgBrXAJUSj5ZJ2GwVnR7IQ,711
|
|
2
2
|
langchain_core/_import_utils.py,sha256=PdYzgXd1wraCcECcMvJQpthmN3i__5h7mYVmFyLpq_s,1423
|
|
3
3
|
langchain_core/agents.py,sha256=JlE3h3Onyj5iRwh0m38HuzDreggjlRon7y6MXaxJeuY,8451
|
|
4
|
-
langchain_core/caches.py,sha256=
|
|
4
|
+
langchain_core/caches.py,sha256=Om57mgv66G3paLcKr5PiuoUSvrgqh0t2-OudgciXPQ0,9689
|
|
5
5
|
langchain_core/chat_history.py,sha256=VIa4XUyd_G9EiIQZRNexJHp-ylouQYjMAuFmpETar8c,8468
|
|
6
6
|
langchain_core/chat_loaders.py,sha256=b57Gl3KGPxq9gYJjetsHfJm1I6kSqi7bDE91fJJOR84,601
|
|
7
7
|
langchain_core/chat_sessions.py,sha256=YEO3ck5_wRGd3a2EnGD7M_wTvNC_4T1IVjQWekagwaM,564
|
|
@@ -10,32 +10,32 @@ langchain_core/exceptions.py,sha256=S5DwOEsjCRsb0JscycLwvgSrEABVcpH1rKIKhn27hUI,
|
|
|
10
10
|
langchain_core/globals.py,sha256=jO27FstGK1cyzNT096GD9lFq2YgNxY1DZ6NtA_yKdR8,1852
|
|
11
11
|
langchain_core/prompt_values.py,sha256=cTN71it1u22mg6QxN_R_SkLdgCLM5ruyVhvjmlP6hLM,4087
|
|
12
12
|
langchain_core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
langchain_core/rate_limiters.py,sha256=
|
|
13
|
+
langchain_core/rate_limiters.py,sha256=GnxSHnKdspO_7wb5KB0wkyk48IZnVPxHFNnaCqD35uo,9348
|
|
14
14
|
langchain_core/retrievers.py,sha256=2RQnv4-4q0hhhWePp87CTmUYB5ZGR5NJeusK8yP5WaI,10995
|
|
15
|
-
langchain_core/stores.py,sha256=
|
|
15
|
+
langchain_core/stores.py,sha256=g8aa_VvXf93-Q25QMXX_sBoKC99nu3FtyC4INOUJ3WY,9181
|
|
16
16
|
langchain_core/structured_query.py,sha256=mat7BKovKjckzMn3-I1El49yeGjg3cqk4ptpJHAPA-4,5123
|
|
17
17
|
langchain_core/sys_info.py,sha256=7BEle6I6WQIXNcNFGM6RxF9wNMVysjLpdlNACBC4CrA,3803
|
|
18
|
-
langchain_core/version.py,sha256=
|
|
18
|
+
langchain_core/version.py,sha256=Vxch67txb_BYnlZ9iMOyobuuLRzKnLGKwGfp9wjOEdU,75
|
|
19
19
|
langchain_core/_api/__init__.py,sha256=PYm_j7qRRKh5ca0TTra5UF-nko3ieZZZ5EeAFAinm3o,1973
|
|
20
20
|
langchain_core/_api/beta_decorator.py,sha256=IJgG2_kRb2eBmvHfarDjanJY4k1jwoPJWSOHZ5SLB4U,8664
|
|
21
21
|
langchain_core/_api/deprecation.py,sha256=nReAhxZ1dBwLhHdGAaqqRpf7aLQJ1dw4UtqmrRqeNLE,20296
|
|
22
22
|
langchain_core/_api/internal.py,sha256=aOZkYANu747LyWzyAk-0KE4RjdTYj18Wtlh7F9_qyPM,683
|
|
23
23
|
langchain_core/_api/path.py,sha256=y3dAvsG4JS0BuWErpJ5KhxCykJX2i03kYdeDU-Iup3Y,1349
|
|
24
24
|
langchain_core/callbacks/__init__.py,sha256=8FK0gmkWnbDYWrShBQowg0OK06Hprdim3sxiOla80xk,4225
|
|
25
|
-
langchain_core/callbacks/base.py,sha256=
|
|
25
|
+
langchain_core/callbacks/base.py,sha256=I0LBEFdUiFKxya1G4026Fp47Uz3qfcgg8pCr28-UQL0,34017
|
|
26
26
|
langchain_core/callbacks/file.py,sha256=eD1TBPnEzms0amUV_GnNbfLOPF7Et7Z-sCv6fl-7h38,8332
|
|
27
|
-
langchain_core/callbacks/manager.py,sha256=
|
|
27
|
+
langchain_core/callbacks/manager.py,sha256=ZhjlLUVSCI_WF_7q9xNIbGnuKrWOLf8bdILAg98XMz8,84512
|
|
28
28
|
langchain_core/callbacks/stdout.py,sha256=dy7jTcYFVKpaYesJoakEcAraBLwhjFR5Efjw91EZY8c,3695
|
|
29
29
|
langchain_core/callbacks/streaming_stdout.py,sha256=ylgpp4Bhs5Gv1aNeZWuuC2FU7C3IO7Q9CpEDxCgdFXY,4310
|
|
30
30
|
langchain_core/callbacks/usage.py,sha256=qQHyUeWL-NLwpb9jUTvjLhm0yRJ0Ay5j_hRAsQrCxkk,5051
|
|
31
31
|
langchain_core/document_loaders/__init__.py,sha256=DkZPp9cEVmsnz9SM1xtuefH_fGQFvA2WtpRG6iePPBs,975
|
|
32
32
|
langchain_core/document_loaders/base.py,sha256=niW_Zmkb9H62MqE7xMDj8fVtn1t5_NjeRAJhjwat8oE,4731
|
|
33
33
|
langchain_core/document_loaders/blob_loaders.py,sha256=4m1k8boiwXw3z4yMYT8bnYUA-eGTPtEZyUxZvI3GbTs,1077
|
|
34
|
-
langchain_core/document_loaders/langsmith.py,sha256=
|
|
34
|
+
langchain_core/document_loaders/langsmith.py,sha256=baP_hWtgf6UdxF4u6V6wL43R3hrNh5Il8EJ3Cs4qr1I,5250
|
|
35
35
|
langchain_core/documents/__init__.py,sha256=w8LkIJ6Y25-cg1FQjve2ZCO7O_hg3ZidMPXp6ijIHTU,849
|
|
36
|
-
langchain_core/documents/base.py,sha256=
|
|
36
|
+
langchain_core/documents/base.py,sha256=3fFHAOxicdQpxzY7H3iN920j-Bx5YOx5doLeZi6b1EM,10253
|
|
37
37
|
langchain_core/documents/compressor.py,sha256=umDoE70e7Cn32muNKRPXwC5cjML1gEg5XLmRd1DQQqg,1984
|
|
38
|
-
langchain_core/documents/transformers.py,sha256=
|
|
38
|
+
langchain_core/documents/transformers.py,sha256=mtnS98ZwdW1ky5NFysWgNtsa-7poWuZNMVXl3Kvvb2k,2525
|
|
39
39
|
langchain_core/embeddings/__init__.py,sha256=0SfcdkVSSXmTFXznUyeZq_b1ajpwIGDueGAAfwyMpUY,774
|
|
40
40
|
langchain_core/embeddings/embeddings.py,sha256=u50T2VxLLyfGBCKcVtWfSiZrtKua8sOSHwSSHRKtcno,2405
|
|
41
41
|
langchain_core/embeddings/fake.py,sha256=2XG8CRFk5Kx9KKniWZm2vqBnhvl6J6sLv74AiYToU-0,3864
|
|
@@ -45,17 +45,17 @@ langchain_core/example_selectors/length_based.py,sha256=THlN8aPzR59tfwNgGwrC6Etg
|
|
|
45
45
|
langchain_core/example_selectors/semantic_similarity.py,sha256=gUI7UgiPvsmkcft2S9cWcnId8MOmErVBsGs_3pcGGA8,13549
|
|
46
46
|
langchain_core/indexing/__init__.py,sha256=VOvbbBJYY_UZdMKAeJCdQdszMiAOhAo3Cbht1HEkk8g,1274
|
|
47
47
|
langchain_core/indexing/api.py,sha256=1oWDAZ6NRWbyzM-qy02AAPw4yX4nqgPojElRUAYwqkg,38207
|
|
48
|
-
langchain_core/indexing/base.py,sha256=
|
|
49
|
-
langchain_core/indexing/in_memory.py,sha256=
|
|
48
|
+
langchain_core/indexing/base.py,sha256=HBr8v_-aLDfbJFy6zGPodx-eaJUBR6hbRpt8fAbEVw0,22423
|
|
49
|
+
langchain_core/indexing/in_memory.py,sha256=6u1nOtjrUVGb4b-26oDW0k9ojj-GAN8Q3jmBoVHYSqA,3283
|
|
50
50
|
langchain_core/language_models/__init__.py,sha256=nhf1jGPkfXzhE40-bw2aijQCeFvbemzna6bhJJYtX1w,3295
|
|
51
51
|
langchain_core/language_models/_utils.py,sha256=c75LzNP5OEimbTIYpqNYQFy1uyHaLwuKhCJzucl84bE,11028
|
|
52
|
-
langchain_core/language_models/base.py,sha256=
|
|
53
|
-
langchain_core/language_models/chat_models.py,sha256=
|
|
52
|
+
langchain_core/language_models/base.py,sha256=VC9kMx2g31qN7Hk7RfKnP3BoiP6MYOVH3Vxdvb_NIo8,10905
|
|
53
|
+
langchain_core/language_models/chat_models.py,sha256=ddBeq_qcaGZSC43XCL4Ci-_aXPSvzE_RFVwWi4GhqMA,70778
|
|
54
54
|
langchain_core/language_models/fake.py,sha256=hb2yU3snYPTueZiJ-0KI0MKHYBNm6zdUw7xe8WqguEY,3732
|
|
55
55
|
langchain_core/language_models/fake_chat_models.py,sha256=C4z4ZCIBRJQ-9mxbhfddTOR9wNGpUi9ccjz1zR1XdvM,13508
|
|
56
|
-
langchain_core/language_models/llms.py,sha256=
|
|
56
|
+
langchain_core/language_models/llms.py,sha256=USnT9W-W7_XwQTq4kDcCzwUHtR_-mQpII4OGEy84AnI,53995
|
|
57
57
|
langchain_core/load/__init__.py,sha256=m3_6Fk2gpYZO0xqyTnZzdQigvsYHjMariLq_L2KwJFk,1150
|
|
58
|
-
langchain_core/load/dump.py,sha256=
|
|
58
|
+
langchain_core/load/dump.py,sha256=CjWU9Xei45TzykT9_HPwCNELtkuKRW_5uAdK6KdddGU,2616
|
|
59
59
|
langchain_core/load/load.py,sha256=LQJqeERSO5mlqImCDMLXDwmtpvEssVJJi3Iau7qpY4M,9283
|
|
60
60
|
langchain_core/load/mapping.py,sha256=SqBaAWAM2aV_Wgy80DAlS-39tJkHLcCyM45bVVnN12w,29513
|
|
61
61
|
langchain_core/load/serializable.py,sha256=2pU7Uw9Z1mxIxGdyC6nVqEgV2tAcPjjSwP7zDb2D56Q,11680
|
|
@@ -69,12 +69,12 @@ langchain_core/messages/human.py,sha256=Sgx58Kwlb1y_YaeOXavz1D0V2ald_TAdqlC5zQI_
|
|
|
69
69
|
langchain_core/messages/modifier.py,sha256=8d3mhHnKMDU9Xkw_M3-uf5WBtqA4dZj81tD7A6Zgo_o,875
|
|
70
70
|
langchain_core/messages/system.py,sha256=x8OBdba68Nt3SiO7aNTaDREq3iDjDV4XyRoqb-ZOmgo,2140
|
|
71
71
|
langchain_core/messages/tool.py,sha256=MMklOAPd2e0OAGxM3Iode_Bm3bC74_icN3HnL2FPCig,12584
|
|
72
|
-
langchain_core/messages/utils.py,sha256=
|
|
72
|
+
langchain_core/messages/utils.py,sha256=1vU55gsqXnNOp5ye2r0zyhvO3EcSq5GaTskH9gXhgc8,68704
|
|
73
73
|
langchain_core/messages/block_translators/__init__.py,sha256=_CxgFIR8hrxROFl1dzRNwkL4cgL-TxxpYQBn-26zP4A,4244
|
|
74
74
|
langchain_core/messages/block_translators/anthropic.py,sha256=eN304DgrEFTRl12f4PmU4P8ASTUngMkE7HC9-gpYUGk,19131
|
|
75
75
|
langchain_core/messages/block_translators/bedrock.py,sha256=yLjYwtCsYGHBEj9CSXHCZYLmwsA4F6D6NTT5kE11Bww,3511
|
|
76
76
|
langchain_core/messages/block_translators/bedrock_converse.py,sha256=YN7xfKPbxjVJujOzEuXbDx3QiDql1ldbLCYQ6bgH6FI,11994
|
|
77
|
-
langchain_core/messages/block_translators/google_genai.py,sha256=
|
|
77
|
+
langchain_core/messages/block_translators/google_genai.py,sha256=nW8TLs6wu1Hut6IEw7nK4qEa32lBbNnMDhY65qQTxIw,22155
|
|
78
78
|
langchain_core/messages/block_translators/google_vertexai.py,sha256=2RzpKFKi1991aWGK8osdkKq8bKadmy8q86kR3r0f6K4,632
|
|
79
79
|
langchain_core/messages/block_translators/groq.py,sha256=s7xCVITYV2W3CqZpc3OO7hXQRICLqNi8hyPofT2OvqM,5444
|
|
80
80
|
langchain_core/messages/block_translators/langchain_v0.py,sha256=WAoQGt1qZ5rVZD5n1A1z0dR-DpN6vgrn-gSII1CxhCA,11658
|
|
@@ -106,27 +106,27 @@ langchain_core/prompts/image.py,sha256=L_5yGsI68Y0pwthA3AS0mQXFMXtvW_kBRItFS6Vpk
|
|
|
106
106
|
langchain_core/prompts/loading.py,sha256=hvNsDvqLz5wJA1EywW2wCwKUhJgUzNcIKfp5VEVOEGc,6889
|
|
107
107
|
langchain_core/prompts/message.py,sha256=gyiAKRfgXqgXqaeEXO0zFlt5Ote2T52npyaI1O5hhXE,2603
|
|
108
108
|
langchain_core/prompts/prompt.py,sha256=TcQZNc-Y6c7CMJwY1HwMvRYU4NcbMdCw6YS37Tc3pWk,10948
|
|
109
|
-
langchain_core/prompts/string.py,sha256=
|
|
109
|
+
langchain_core/prompts/string.py,sha256=aXr9xhZo4WZqvsBqMWb6Nag5C5Ukqz2fMTRqDx8JaHc,10974
|
|
110
110
|
langchain_core/prompts/structured.py,sha256=67-pReMLW8asyFpua8bHz5UsnK5KnM2yaqAxJGsR0uQ,5728
|
|
111
111
|
langchain_core/runnables/__init__.py,sha256=efTnFjwN_QSAv5ThLmKuWeu8P1BLARH-cWKZBuimfDM,3858
|
|
112
|
-
langchain_core/runnables/base.py,sha256=
|
|
113
|
-
langchain_core/runnables/branch.py,sha256=
|
|
114
|
-
langchain_core/runnables/config.py,sha256=
|
|
112
|
+
langchain_core/runnables/base.py,sha256=4kY4VJZL6CU7uFCBnu4cg0LZJF40JmscuHjYy_fPcSk,215807
|
|
113
|
+
langchain_core/runnables/branch.py,sha256=Qs_8-iOjaNhtTNuorsNEabGftyM411zworUQQqa5jW8,15690
|
|
114
|
+
langchain_core/runnables/config.py,sha256=w2f2BeYbiXIuXxYJCrmSDIh7LgwSyF-7p92W-sxrbKU,19103
|
|
115
115
|
langchain_core/runnables/configurable.py,sha256=reO2SoYe-3QxLkRUPf3Iu8eFL9gmmf-E05uqc-i6G-Y,23972
|
|
116
|
-
langchain_core/runnables/fallbacks.py,sha256=
|
|
116
|
+
langchain_core/runnables/fallbacks.py,sha256=RsVAZuXleO56cLCStmvPysXzqnG_MYzQPT-ZtCvWFnY,24432
|
|
117
117
|
langchain_core/runnables/graph.py,sha256=WG-VKPKYETY_xtTI2x_eM03eD80O6LmMOU_DDqRyLIY,22946
|
|
118
118
|
langchain_core/runnables/graph_ascii.py,sha256=le9njNqnDYtu1znTWGIyZYstEaiYuxBk9Qx8r7yfoXc,10328
|
|
119
119
|
langchain_core/runnables/graph_mermaid.py,sha256=Mw5r4QWjConm-I2OYACMUZIc7qiEBXesLjsuCH4HYpg,16650
|
|
120
120
|
langchain_core/runnables/graph_png.py,sha256=RM2sjhNWuBDxO7mSJvUOXiFHw06CmJ_s0puF7T6uKWk,5454
|
|
121
121
|
langchain_core/runnables/history.py,sha256=ru_0ni55HQ4Fl7aFGcCFt93vkeQHLRsbjt9eKnf8RdQ,24181
|
|
122
122
|
langchain_core/runnables/passthrough.py,sha256=ZXQJLQOQsl6uLSdOKAxBcvJjuDfzdHDrgLaiskL3jbw,25700
|
|
123
|
-
langchain_core/runnables/retry.py,sha256=
|
|
123
|
+
langchain_core/runnables/retry.py,sha256=eG2LUH0cgIzH7Xe7aVbdYww-04f_o74GRd1VxTocjjU,13682
|
|
124
124
|
langchain_core/runnables/router.py,sha256=Ec50ZKHxWlM3kNED6JXkbezEHxTgi3BzEsn6BIZTdho,7114
|
|
125
|
-
langchain_core/runnables/schema.py,sha256=
|
|
126
|
-
langchain_core/runnables/utils.py,sha256=
|
|
125
|
+
langchain_core/runnables/schema.py,sha256=_y2zon3Ycghj21nHH3GsJ5q47Oad0AKyvne670E378w,5710
|
|
126
|
+
langchain_core/runnables/utils.py,sha256=p_QDnwJ7XcO7bl-QBdoSksNJixeMlYcr41ZAPmZTMiU,22176
|
|
127
127
|
langchain_core/tools/__init__.py,sha256=qe2E9VwZ7hpdkToz96oSJ080a0de9oQwSO9FP1XnmM0,2518
|
|
128
|
-
langchain_core/tools/base.py,sha256
|
|
129
|
-
langchain_core/tools/convert.py,sha256=
|
|
128
|
+
langchain_core/tools/base.py,sha256=IPPOB9OS1vGimMHRmeWuPyvpV6DQvfH9O3r7XjGX8c8,49597
|
|
129
|
+
langchain_core/tools/convert.py,sha256=svCSCrUr2o_k-hYpzwt7PftSkQsCegCQSddLVUZpiq0,15676
|
|
130
130
|
langchain_core/tools/render.py,sha256=gD3pXYWjCaDKsYq_MZ-yCRXl1wUJbOh6dJobda9VjYM,1817
|
|
131
131
|
langchain_core/tools/retriever.py,sha256=6Ogox8pBMFEvXG6Kz-9fWQQXRuMX5NlJiFwKi2Ph97s,3790
|
|
132
132
|
langchain_core/tools/simple.py,sha256=U9R5jIUcZMXKMV5Ezu8G2MX_0ot2nrtvhjgaGHkA53o,6623
|
|
@@ -137,9 +137,9 @@ langchain_core/tracers/base.py,sha256=cywwNDlynmidmhOCQ8A1J0qhnvN_orWNB8z2UjvCEG
|
|
|
137
137
|
langchain_core/tracers/context.py,sha256=-7pbOA3QR0OIeehpD9eMpqugGgwLc_XxMjVQRg8GAJI,6194
|
|
138
138
|
langchain_core/tracers/core.py,sha256=doyEB6enQVeGYFbC5EmC_gVGq6tcZQpYXm4bXVaI11c,23306
|
|
139
139
|
langchain_core/tracers/evaluation.py,sha256=XmoPqBNFg6H-9K46fWanABAEVUgbob9S7qU-DPcL4RM,8367
|
|
140
|
-
langchain_core/tracers/event_stream.py,sha256=
|
|
140
|
+
langchain_core/tracers/event_stream.py,sha256=bzsu65tlXntEw2tfzSFDpbYVd638RkSBX59V4VoaZLQ,34966
|
|
141
141
|
langchain_core/tracers/langchain.py,sha256=juy0i7aryBuqWuML9EiNrAI6SAv2qllt5hAE6mC_0HQ,10477
|
|
142
|
-
langchain_core/tracers/log_stream.py,sha256=
|
|
142
|
+
langchain_core/tracers/log_stream.py,sha256=4nd6Lb6chPCdOFwPmHCv1S_jQOqlRivNqJikNKYPGis,25425
|
|
143
143
|
langchain_core/tracers/memory_stream.py,sha256=4bPh6Fhoq84Ul03wIasEju34GHKXj_c9xTIm6nAFG-8,4995
|
|
144
144
|
langchain_core/tracers/root_listeners.py,sha256=6ZE56m7zyVzMXtUPztifkX409rdaXTXZcJIYlS69xls,4097
|
|
145
145
|
langchain_core/tracers/run_collector.py,sha256=Uy8lwFLDgMtLmzIi9RlBY-xXs9NRQoNSNekluuZzqxI,1265
|
|
@@ -150,23 +150,23 @@ langchain_core/utils/_merge.py,sha256=9wTZdkuG45azGBze7OZFFIoCiidHi3roe6TQiQ5bcV
|
|
|
150
150
|
langchain_core/utils/aiter.py,sha256=gfFyGWro42FB4R66_tWSyW8XrLLzV7EI9EmLvI8dFGI,10574
|
|
151
151
|
langchain_core/utils/env.py,sha256=pQTqZLCjcueoxTd8epc3cr0lRn8njJf_A-bOQfHWPXw,2458
|
|
152
152
|
langchain_core/utils/formatting.py,sha256=fkieArzKXxSsLcEa3B-MX60O4ZLeeLjiPtVtxCJPcOU,1480
|
|
153
|
-
langchain_core/utils/function_calling.py,sha256=
|
|
153
|
+
langchain_core/utils/function_calling.py,sha256=U6tTvX7Ky2iF-cTuCYkGM0D2A7wDzHOwcLGILeNvGUs,27429
|
|
154
154
|
langchain_core/utils/html.py,sha256=ReIdqTTC8r-AfsqynFjCIaFC9t9sI_vYnmz3DanpVqQ,3714
|
|
155
155
|
langchain_core/utils/image.py,sha256=1MH8Lbg0f2HfhTC4zobKMvpVoHRfpsyvWHq9ae4xENo,532
|
|
156
156
|
langchain_core/utils/input.py,sha256=Ruhzw4kjldit5aTsvsm_tgrcrpVaTnwq976lUn0G2_U,1887
|
|
157
157
|
langchain_core/utils/interactive_env.py,sha256=LBgNICNAwgwDMOdlVD12TtZfSboPOKXaBS2Jn-bsXQ8,289
|
|
158
158
|
langchain_core/utils/iter.py,sha256=jqtyfA2129a5ftfuRovpUBEslCGaeuiiGr8bkT-iozI,7300
|
|
159
159
|
langchain_core/utils/json.py,sha256=Jsa-EuPLj5sSYDOAIzM7g1-7gsgfXgCs8KLNQ3x1-O4,6533
|
|
160
|
-
langchain_core/utils/json_schema.py,sha256=
|
|
160
|
+
langchain_core/utils/json_schema.py,sha256=d0yHW6D_IoM7sLGOLxSGcSpAnaYROaqbwmjk7XhvZZ4,9071
|
|
161
161
|
langchain_core/utils/mustache.py,sha256=2LgatBIOa1bGU4EaL5xrS076NWqfQkB4Mtencmc3mtQ,21262
|
|
162
162
|
langchain_core/utils/pydantic.py,sha256=Lu5Hu7tbMJpAEn4JHqPX2DstI3QMvnH4jRbjq3K283s,18510
|
|
163
163
|
langchain_core/utils/strings.py,sha256=eD9G_u92ZlVTDBp8MmV7guCSShevJcValgH-_8ozQ9I,1758
|
|
164
164
|
langchain_core/utils/usage.py,sha256=vB674Eu69xDGx6JBJlySp6cnePkxCD0Wz26mi502NAM,1211
|
|
165
165
|
langchain_core/utils/utils.py,sha256=Kfpl83xT1j64RUODMZ0FtG68OzRm6lvNqAs9_TNkoTk,15756
|
|
166
166
|
langchain_core/vectorstores/__init__.py,sha256=5P0eoeoH5LHab64JjmEeWa6SxX4eMy-etAP1MEHsETY,804
|
|
167
|
-
langchain_core/vectorstores/base.py,sha256=
|
|
168
|
-
langchain_core/vectorstores/in_memory.py,sha256=
|
|
169
|
-
langchain_core/vectorstores/utils.py,sha256=
|
|
170
|
-
langchain_core-1.0.
|
|
171
|
-
langchain_core-1.0.
|
|
172
|
-
langchain_core-1.0.
|
|
167
|
+
langchain_core/vectorstores/base.py,sha256=8BbZIBtFhIW1PdJdLNNIa_AkHe7YstcgxmCHOyMPr90,40508
|
|
168
|
+
langchain_core/vectorstores/in_memory.py,sha256=TlStICkESfb4tqRgBzcbhCPOU6BjRNHTW1WCt9KlSOI,15719
|
|
169
|
+
langchain_core/vectorstores/utils.py,sha256=XXpQ2mxado6vrLmZWVTstcxrurBtoHcBZEORITAHWw0,4931
|
|
170
|
+
langchain_core-1.0.1.dist-info/METADATA,sha256=iFVkW8Lv3vPHRXuXP4Rn3cjnR3ZNnUQNs8Wv6IS2TpY,3478
|
|
171
|
+
langchain_core-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
172
|
+
langchain_core-1.0.1.dist-info/RECORD,,
|
|
File without changes
|