id
int64
0
190k
prompt
stringlengths
21
13.4M
docstring
stringlengths
1
12k
28,430
from __future__ import annotations import logging import os import warnings from typing import ( Any, Callable, Dict, List, Literal, Mapping, Optional, Sequence, Set, Tuple, Union, cast, ) import numpy as np from langchain_core._api.deprecation import deprecated from lang...
Use tenacity to retry the embedding call.
28,431
from __future__ import annotations import logging import os import warnings from typing import ( Any, Callable, Dict, List, Literal, Mapping, Optional, Sequence, Set, Tuple, Union, cast, ) import numpy as np from langchain_core._api.deprecation import deprecated from lang...
Use tenacity to retry the embedding call.
28,432
from typing import Any, Callable, List from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import Extra from langchain_community.llms.self_hosted import SelfHostedPipeline The provided code snippet includes necessary dependencies for implementing the `_embed_documents` function. Write a Py...
Inference function to send to the remote hardware. Accepts a sentence_transformer model_id and returns a list of embeddings for each document in the batch.
28,433
from __future__ import annotations import logging from typing import ( Any, Callable, Dict, List, Optional, ) from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env from requests.e...
Use tenacity to retry the embedding call.
28,434
from __future__ import annotations import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, ) from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import xor_args fr...
null
28,435
from __future__ import annotations import logging import os import uuid import warnings from typing import TYPE_CHECKING, Any, Callable, Iterable, List, Optional, Tuple, Union import numpy as np from langchain_core._api.deprecation import deprecated from langchain_core.documents import Document from langchain_core.embe...
null
28,436
from __future__ import annotations import datetime import os from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, ) from uuid import uuid4 import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embedding...
null
28,437
from __future__ import annotations import datetime import os from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, ) from uuid import uuid4 import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embedding...
null
28,438
from __future__ import annotations import datetime import os from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, ) from uuid import uuid4 import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embedding...
null
28,439
from __future__ import annotations import datetime import os from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, ) from uuid import uuid4 import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embedding...
null
28,440
from __future__ import annotations import pickle import random import sys from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from lang...
Import tiledb-vector-search if available, otherwise raise error.
28,441
from __future__ import annotations import pickle import random import sys from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from lang...
Get the URI of the vector index.
28,442
from __future__ import annotations import pickle import random import sys from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from lang...
Get the URI of the documents array from group. Args: group: TileDB group object. Returns: URI of the documents array.
28,443
from __future__ import annotations import pickle import random import sys from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from lang...
Get the URI of the vector index.
28,444
from __future__ import annotations import pickle import random import sys from typing import Any, Dict, Iterable, List, Mapping, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from lang...
Get the URI of the documents array.
28,445
from enum import Enum from functools import wraps from typing import Any, Callable, Dict, List, Optional, Set, Tuple, Union from langchain_community.utilities.redis import TokenEscaper The provided code snippet includes necessary dependencies for implementing the `check_operator_misuse` function. Write a Python functi...
Decorator to check for misuse of equality operators.
28,446
from __future__ import annotations import os from enum import Enum from pathlib import Path from typing import Any, Dict, List, Optional, Union import numpy as np import yaml from langchain_core.pydantic_v1 import BaseModel, Field, validator from typing_extensions import TYPE_CHECKING, Literal from langchain_community....
Reads in the index schema from a dict or yaml file. Check if it is a dict and return RedisModel otherwise, check if it's a path and read in the file assuming it's a yaml file and return a RedisModel
28,447
from __future__ import annotations import logging import os import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Mapping, Optional, Tuple, Type, Union, cast, ) import numpy as np import yaml from langchain_core._api import deprecated from l...
null
28,448
from __future__ import annotations import logging import os import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Mapping, Optional, Tuple, Type, Union, cast, ) import numpy as np import yaml from langchain_core._api import deprecated from l...
Check if Redis index exists.
28,449
from __future__ import annotations import logging import os import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Mapping, Optional, Tuple, Type, Union, cast, ) import numpy as np import yaml from langchain_core._api import deprecated from l...
Generate a schema for the search index in Redis based on the input metadata. Given a dictionary of metadata, this function categorizes each metadata field into one of the three categories: - text: The field contains textual data. - numeric: The field contains numeric data (either integer or float). - tag: The field con...
28,450
from __future__ import annotations import logging import os import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Mapping, Optional, Tuple, Type, Union, cast, ) import numpy as np import yaml from langchain_core._api import deprecated from l...
Prepare metadata for indexing in Redis by sanitizing its values. - String, integer, and float values remain unchanged. - None or empty values are replaced with empty strings. - Lists/tuples of strings are joined into a single string with a comma separator. Args: metadata (Dict[str, Any]): A dictionary where keys are me...
28,451
from enum import Enum from typing import List, Tuple, Type import numpy as np from langchain_core.documents import Document from langchain_community.utils.math import cosine_similarity def cosine_similarity(X: Matrix, Y: Matrix) -> np.ndarray: """Row-wise cosine similarity between two equal-width matrices.""" ...
Calculate maximal marginal relevance.
28,452
from enum import Enum from typing import List, Tuple, Type import numpy as np from langchain_core.documents import Document from langchain_community.utils.math import cosine_similarity The provided code snippet includes necessary dependencies for implementing the `filter_complex_metadata` function. Write a Python func...
Filter out metadata types that are not supported for a vector store.
28,453
from __future__ import annotations from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from langchain_community.docstore.base import AddableMixi...
Import usearch if available, otherwise raise error.
28,454
from __future__ import annotations import enum import logging import os from hashlib import md5 from typing import ( Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, ) from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain...
null
28,455
from __future__ import annotations import enum import logging import os from hashlib import md5 from typing import ( Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, ) from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain...
Check if the values are not None or empty string
28,456
from __future__ import annotations import enum import logging import os from hashlib import md5 from typing import ( Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, ) from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain...
Sort first element to match the index_name if exists
28,457
from __future__ import annotations import enum import logging import os from hashlib import md5 from typing import ( Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, ) from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain...
Remove Lucene special characters
28,458
from __future__ import annotations import json import logging import uuid from typing import Any, Iterable, List, Optional, Type from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectorstores import Ve...
null
28,459
from __future__ import annotations import json import logging from hashlib import sha1 from threading import Thread from typing import Any, Dict, Iterable, List, Optional, Tuple, Union from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import B...
Check if a string contains multiple substrings. Args: s: string to check. *args: substrings to check. Returns: True if all substrings are in the string, False otherwise.
28,460
from __future__ import annotations import logging import operator import os import pickle import uuid import warnings from pathlib import Path from typing import ( Any, Callable, Dict, Iterable, List, Optional, Sized, Tuple, Union, ) import numpy as np from langchain_core.documents i...
Import faiss if available, otherwise raise error. If FAISS_NO_AVX2 environment variable is set, it will be considered to load FAISS with no AVX2 optimization. Args: no_avx2: Load FAISS strictly with no AVX2 optimization so that the vectorstore is portable and compatible with other devices.
28,461
from __future__ import annotations import logging import operator import os import pickle import uuid import warnings from pathlib import Path from typing import ( Any, Callable, Dict, Iterable, List, Optional, Sized, Tuple, Union, ) import numpy as np from langchain_core.documents i...
null
28,462
from __future__ import annotations import json import logging from hashlib import sha1 from threading import Thread from typing import Any, Dict, Iterable, List, Optional, Tuple from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import BaseSett...
Check if a string has multiple substrings. Args: s: The string to check *args: The substrings to check for in the string Returns: bool: True if all substrings are present in the string, False otherwise
28,463
from __future__ import annotations import json import logging from hashlib import sha1 from threading import Thread from typing import Any, Dict, Iterable, List, Optional, Tuple from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import BaseSett...
Get a named result from a query. Args: connection: The connection to the database query: The query to execute Returns: List[dict[str, Any]]: The result of the query
28,464
from __future__ import annotations import operator import pickle import uuid from pathlib import Path from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores...
Normalize vectors to unit length.
28,465
from __future__ import annotations import operator import pickle import uuid from pathlib import Path from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores...
Import `scann` if available, otherwise raise error.
28,466
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
Get OpenSearch client from the opensearch_url, otherwise raise error.
28,467
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
Validate Embeddings Length and Bulk Size.
28,468
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
Validate AOSS with the engine.
28,469
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
Check if the service is http_auth is set as `aoss`.
28,470
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
Bulk Ingest Embeddings into given index.
28,471
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
For Painless Scripting or Script Scoring,the default mapping to create index.
28,472
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
For Approximate k-NN Search, this is the default mapping to create index.
28,473
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
For Approximate k-NN Search, with Boolean Filter.
28,474
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
For Approximate k-NN Search, with Efficient Filter for Lucene and Faiss Engines.
28,475
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
For Script Scoring Search, this is the default query.
28,476
from __future__ import annotations import uuid import warnings from typing import Any, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_dict_or_env from langchain_core.vectors...
For Painless Scripting Search, this is the default query.
28,477
from __future__ import annotations import uuid import warnings from typing import ( TYPE_CHECKING, Any, Dict, Iterable, List, Mapping, Optional, Tuple, Union, ) from langchain_core._api import deprecated from langchain_core.documents import Document from langchain_core.embeddings imp...
null
28,478
from __future__ import annotations import uuid import warnings from typing import ( TYPE_CHECKING, Any, Dict, Iterable, List, Mapping, Optional, Tuple, Union, ) from langchain_core._api import deprecated from langchain_core.documents import Document from langchain_core.embeddings imp...
null
28,479
from __future__ import annotations import json import logging from hashlib import sha1 from threading import Thread from typing import Any, Dict, Iterable, List, Optional, Tuple from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import BaseSett...
Check if a string contains multiple substrings. Args: s: string to check. *args: substrings to check. Returns: True if all substrings are in the string, False otherwise.
28,480
from __future__ import annotations import json import logging from hashlib import sha1 from threading import Thread from typing import Any, Dict, Iterable, List, Optional, Tuple from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import BaseSett...
Check if a string has multiple substrings. Args: s: The string to check *args: The substrings to check for in the string Returns: bool: True if all substrings are present in the string, False otherwise
28,481
from __future__ import annotations import json import logging from hashlib import sha1 from threading import Thread from typing import Any, Dict, Iterable, List, Optional, Tuple from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import BaseSett...
Get a named result from a query. Args: connection: The connection to the database query: The query to execute Returns: List[dict[str, Any]]: The result of the query
28,482
from __future__ import annotations import contextlib import enum import json import logging import uuid from typing import ( Any, Callable, Dict, Generator, Iterable, List, Optional, Tuple, Type, ) import numpy as np import sqlalchemy from langchain_core._api import warn_deprecated f...
null
28,483
from __future__ import annotations import contextlib import enum import json import logging import uuid from typing import ( Any, Callable, Dict, Generator, Iterable, List, Optional, Tuple, Type, ) import numpy as np import sqlalchemy from langchain_core._api import warn_deprecated f...
Return docs from docs and scores.
28,484
from __future__ import annotations import base64 import json import logging import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, Union, ) import numpy as np from langchain_core.callbacks import ( AsyncCallbackManagerForRe...
null
28,485
from __future__ import annotations import uuid from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Tuple, Type from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.utils import get_from_env from langchain_core.vectorstores import VectorSto...
null
28,486
from __future__ import annotations import base64 import logging import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Optional, Tuple, Type, ) import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddi...
null
28,487
from __future__ import annotations import uuid import warnings from concurrent.futures import ThreadPoolExecutor from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, Iterable, List, Optional, Set, Tuple, Type, TypeVar, Union, ) import numpy as np from l...
null
28,488
from __future__ import annotations import os import pickle import uuid from configparser import ConfigParser from pathlib import Path from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings ...
Import annoy if available, otherwise raise error.
28,489
from __future__ import annotations import asyncio import enum import json import logging import struct import uuid from collections import OrderedDict from enum import Enum from functools import partial from typing import Any, Callable, Dict, Iterable, List, Optional, Tuple, Type import numpy as np from langchain_core....
Return docs from docs and scores.
28,490
from abc import ABC from typing import TYPE_CHECKING, Any, Iterable, List, Optional, Tuple, Type import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.pydantic_v1 import Field from langchain_core.vectorstores import VectorStore from langcha...
null
28,491
from __future__ import annotations import contextlib import enum import logging import uuid from typing import ( Any, Callable, Dict, Generator, Iterable, List, Optional, Tuple, Type, Union, ) import numpy as np import sqlalchemy from sqlalchemy import delete, func from sqlalchem...
Return docs from docs and scores.
28,492
from __future__ import annotations import contextlib import enum import logging import uuid from typing import ( Any, Callable, Dict, Generator, Iterable, List, Optional, Tuple, Type, Union, ) import numpy as np import sqlalchemy from sqlalchemy import delete, func from sqlalchem...
Get the embedding store class.
28,493
from __future__ import annotations import functools import uuid import warnings from itertools import islice from operator import itemgetter from typing import ( TYPE_CHECKING, Any, AsyncGenerator, Callable, Dict, Generator, Iterable, List, Optional, Sequence, Tuple, Type...
Decorator to call the synchronous method of the class if the async method is not implemented. This decorator might be only used for the methods that are defined as async in the class.
28,494
import json import logging import numbers from hashlib import sha1 from typing import Any, Dict, Iterable, List, Optional, Tuple from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore The provided code snippet includes necessar...
Create metadata from fields. Args: fields: The fields of the document. The fields must be a dict. Returns: metadata: The metadata of the document. The metadata must be a dict.
28,495
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Use a deterministic hashing approach.
28,496
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Dump generations to json. Args: generations (RETURN_VAL_TYPE): A list of language model generations. Returns: str: Json representing a list of generations. Warning: would not work well with arbitrary subclasses of `Generation`
28,497
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Load generations from json. Args: generations_json (str): A string of json representing a list of generations. Raises: ValueError: Could not decode json string to list of generations. Returns: RETURN_VAL_TYPE: A list of generations. Warning: would not work well with arbitrary subclasses of `Generation`
28,498
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Serialization for generic RETURN_VAL_TYPE, i.e. sequence of `Generation` Args: generations (RETURN_VAL_TYPE): A list of language model generations. Returns: str: a single string representing a list of generations. This function (+ its counterpart `_loads_generations`) rely on the dumps/loads pair with Reviver, so are a...
28,499
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Deserialization of a string into a generic RETURN_VAL_TYPE (i.e. a sequence of `Generation`). See `_dumps_generations`, the inverse of this function. Args: generations_str (str): A string representing a list of generations. Compatible with the legacy cache-blob format Does not raise exceptions for malformed entries, ju...
28,500
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Create cache if it doesn't exist. Raises: SdkException: Momento service or network error Exception: Unexpected response
28,501
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
null
28,502
from __future__ import annotations import hashlib import inspect import json import logging import uuid import warnings from abc import ABC from datetime import timedelta from enum import Enum from functools import lru_cache, wraps from typing import ( TYPE_CHECKING, Any, Awaitable, Callable, Dict, ...
Least-recently-used async cache decorator. Equivalent to functools.lru_cache for async functions
28,503
import functools import logging import multiprocessing import sys from io import StringIO from typing import Dict, Optional from langchain_core.pydantic_v1 import BaseModel, Field logger = logging.getLogger(__name__) The provided code snippet includes necessary dependencies for implementing the `warn_once` function. W...
Warn once about the dangers of PythonREPL.
28,504
from __future__ import annotations import json from typing import TYPE_CHECKING, Any, Dict, List, Optional import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env The provided code snippet includes necessary dependencies for implemen...
Import tiktoken.
28,505
from __future__ import annotations from typing import Any, Dict, Iterable, List, Literal, Optional, Sequence, Union import sqlalchemy from langchain_core._api import deprecated from langchain_core.utils import get_from_env from sqlalchemy import ( MetaData, Table, create_engine, inspect, select, ...
null
28,506
from __future__ import annotations from typing import Any, Dict, Iterable, List, Literal, Optional, Sequence, Union import sqlalchemy from langchain_core._api import deprecated from langchain_core.utils import get_from_env from sqlalchemy import ( MetaData, Table, create_engine, inspect, select, ...
Truncate a string to a certain number of words, based on the max string length.
28,507
from importlib import metadata from typing import TYPE_CHECKING, Any, Callable, Optional, Union from langchain_core.callbacks import ( AsyncCallbackManagerForLLMRun, CallbackManagerForLLMRun, ) from langchain_core.language_models.llms import BaseLLM, create_base_retry_decorator def raise_vertex_import_error(min...
Init Vertex AI. Args: project: The default GCP project to use when making Vertex API calls. location: The default location to use when making API calls. credentials: The default custom credentials to use when making API calls. If not provided credentials will be ascertained from the environment. Raises: ImportError: If...
28,508
from importlib import metadata from typing import TYPE_CHECKING, Any, Callable, Optional, Union from langchain_core.callbacks import ( AsyncCallbackManagerForLLMRun, CallbackManagerForLLMRun, ) from langchain_core.language_models.llms import BaseLLM, create_base_retry_decorator The provided code snippet includ...
r"""Returns a custom user agent header. Args: module (Optional[str]): Optional. The module for a custom user agent header. Returns: google.api_core.gapic_v1.client_info.ClientInfo
28,509
from __future__ import annotations import asyncio import logging import os from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union import aiohttp import requests from aiohttp import ServerTimeoutError from langchain_core.pydantic_v1 import BaseModel, Field, root_validator, validator from requests.e...
Converts a JSON object to a markdown table.
28,510
from __future__ import annotations import asyncio import logging import os from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union import aiohttp import requests from aiohttp import ServerTimeoutError from langchain_core.pydantic_v1 import BaseModel, Field, root_validator, validator from requests.e...
Add single quotes around table names that contain spaces.
28,511
from datetime import datetime, timedelta from typing import Any, Callable, Dict, Optional, final import requests from langchain_core.pydantic_v1 import BaseModel, Extra, Field, root_validator from langchain_core.utils import get_from_dict_or_env def retry_fallback( f: Callable[..., Any], *args: Any, **kwargs: ...
null
28,512
from datetime import datetime, timedelta from typing import Any, Callable, Dict, Optional, final import requests from langchain_core.pydantic_v1 import BaseModel, Extra, Field, root_validator from langchain_core.utils import get_from_dict_or_env def stop_after_attempt_fallback(n: int) -> None: return None
null
28,513
from datetime import datetime, timedelta from typing import Any, Callable, Dict, Optional, final import requests from langchain_core.pydantic_v1 import BaseModel, Extra, Field, root_validator from langchain_core.utils import get_from_dict_or_env def wait_random_fallback(a: float, b: float) -> None: return None
null
28,514
from datetime import datetime, timedelta from typing import Any, Callable, Dict, Optional, final import requests from langchain_core.pydantic_v1 import BaseModel, Extra, Field, root_validator from langchain_core.utils import get_from_dict_or_env def wait_exponential_fallback( multiplier: float = 1, min: float ...
null
28,515
from datetime import datetime, timedelta from typing import Any, Callable, Dict, Optional, final import requests from langchain_core.pydantic_v1 import BaseModel, Extra, Field, root_validator from langchain_core.utils import get_from_dict_or_env def is_http_retryable(rsp: requests.Response) -> bool: return bool(rs...
null
28,516
from __future__ import annotations import logging import os import pathlib import platform from typing import Optional, Tuple from langchain_core.env import get_runtime_environment from langchain_core.pydantic_v1 import BaseModel from langchain_community.document_loaders.base import BaseLoader LOADER_TYPE_MAPPING = {"f...
Return loader type among, file, dir or in-memory. Args: loader (str): Name of the loader, whose type is to be resolved. Returns: str: One of the loader type among, file/dir/in-memory.
28,517
from __future__ import annotations import logging import os import pathlib import platform from typing import Optional, Tuple from langchain_core.env import get_runtime_environment from langchain_core.pydantic_v1 import BaseModel from langchain_community.document_loaders.base import BaseLoader logger = logging.getLogge...
Return absolute source path of source of loader based on the keys present in Document object from loader. Args: loader (BaseLoader): Langchain document loader, derived from Baseloader.
28,518
from __future__ import annotations import logging import os import pathlib import platform from typing import Optional, Tuple from langchain_core.env import get_runtime_environment from langchain_core.pydantic_v1 import BaseModel from langchain_community.document_loaders.base import BaseLoader logger = logging.getLogge...
Fetch the current Framework and Runtime details. Returns: Tuple[Framework, Runtime]: Framework and Runtime for the current app instance.
28,519
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env class Component: """Ba...
Parse a dictionary by creating a component and then turning it back into a dictionary. This helps with two things 1. Extract and format data from a dictionary according to schema 2. Provide a central place to do this in a fault-tolerant way
28,520
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env class Component: """Ba...
Extract elements from a dictionary. Args: data: The dictionary to extract elements from. component: The component to extract elements from. Returns: A dictionary containing the elements from the input dictionary that are also in the component.
28,521
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env The provided code snippet...
Attempts to parse a JSON string and return the parsed object. If parsing fails, returns an error message. :param query: The JSON string to parse. :return: A tuple containing the parsed object or None and an error message or None.
28,522
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env DEFAULT_URL = "https://api...
Fetch the team id.
28,523
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env DEFAULT_URL = "https://api...
Fetch the space id.
28,524
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env DEFAULT_URL = "https://api...
Fetch the folder id.
28,525
import json import warnings from dataclasses import asdict, dataclass, fields from typing import Any, Dict, List, Mapping, Optional, Tuple, Type, Union import requests from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator from langchain_core.utils import get_from_dict_or_env DEFAULT_URL = "https://api...
Fetch the list id.
28,526
from typing import Dict, Union The provided code snippet includes necessary dependencies for implementing the `sanitize` function. Write a Python function `def sanitize( input: Union[str, Dict[str, str]], ) -> Dict[str, Union[str, Dict[str, str]]]` to solve the following problem: Sanitize input string or dict of s...
Sanitize input string or dict of strings by replacing sensitive data with placeholders. It returns the sanitized input string or dict of strings and the secure context as a dict following the format: { "sanitized_input": <sanitized input string or dict of strings>, "secure_context": <secure context> } The secure contex...
28,527
from typing import Dict, Union The provided code snippet includes necessary dependencies for implementing the `desanitize` function. Write a Python function `def desanitize(sanitized_text: str, secure_context: bytes) -> str` to solve the following problem: Restore the original sensitive data from the sanitized text. A...
Restore the original sensitive data from the sanitized text. Args: sanitized_text: Sanitized text. secure_context: Secure context returned by the `sanitize` function. Returns: De-sanitized text.
28,528
import json from typing import Any, Dict, List, Optional import aiohttp import requests from langchain_core.pydantic_v1 import ( BaseModel, Extra, Field, PrivateAttr, root_validator, validator, ) from langchain_core.utils import get_from_dict_or_env def _get_default_params() -> dict: return...
null
28,529
import asyncio import logging import pathlib import queue import tempfile import threading import wave from enum import Enum from typing import ( TYPE_CHECKING, Any, AsyncGenerator, AsyncIterator, Dict, Generator, Iterator, List, Optional, Tuple, Union, cast, ) from langc...
Import the riva client and raise an error on failure.