Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.2%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: jitsecurity-soss
  • License: mit
  • Language: Python
  • Default Branch: master
  • Size: 175 MB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 2 years ago · Last pushed about 2 years ago
Metadata Files
Readme License Citation Security

README.md

LangChain

Build context-aware reasoning applications

Release Notes CI Downloads License: MIT Twitter Open in Dev Containers Open in GitHub Codespaces GitHub star chart Dependency Status Open Issues

Looking for the JS/TS library? Check out LangChain.js.

To help you ship LangChain apps to production faster, check out LangSmith. LangSmith is a unified developer platform for building, testing, and monitoring LLM applications. Fill out this form to speak with our sales team.

Quick Install

With pip: bash pip install langchain

With conda: bash conda install langchain -c conda-forge

What is LangChain?

LangChain is a framework for developing applications powered by large language models (LLMs).

For these applications, LangChain simplifies the entire application lifecycle:

Open-source libraries

  • langchain-core: Base abstractions and LangChain Expression Language.
  • langchain-community: Third party integrations.
    • Some integrations have been further split into partner packages that only rely on langchain-core. Examples include langchain_openai and langchain_anthropic.
  • langchain: Chains, agents, and retrieval strategies that make up an application's cognitive architecture.
  • LangGraph: A library for building robust and stateful multi-actor applications with LLMs by modeling steps as edges and nodes in a graph.

Productionization:

  • LangSmith: A developer platform that lets you debug, test, evaluate, and monitor chains built on any LLM framework and seamlessly integrates with LangChain.

Deployment:

  • LangServe: A library for deploying LangChain chains as REST APIs.

Diagram outlining the hierarchical organization of the LangChain framework, displaying the interconnected parts across multiple layers.

What can you build with LangChain?

** Question answering with RAG**

** Extracting structured output**

** Chatbots**

And much more! Head to the Use cases section of the docs for more.

How does LangChain help?

The main value props of the LangChain libraries are: 1. Components: composable building blocks, tools and integrations for working with language models. Components are modular and easy-to-use, whether you are using the rest of the LangChain framework or not 2. Off-the-shelf chains: built-in assemblages of components for accomplishing higher-level tasks

Off-the-shelf chains make it easy to get started. Components make it easy to customize existing chains and build new ones.

LangChain Expression Language (LCEL)

LCEL is the foundation of many of LangChain's components, and is a declarative way to compose chains. LCEL was designed from day 1 to support putting prototypes in production, with no code changes, from the simplest prompt + LLM chain to the most complex chains.

Components

Components fall into the following modules:

** Model I/O:**

This includes prompt management, prompt optimization, a generic interface for chat models and LLMs, and common utilities for working with model outputs.

** Retrieval:**

Retrieval Augmented Generation involves loading data from a variety of sources, preparing it, then retrieving it for use in the generation step.

** Agents:**

Agents allow an LLM autonomy over how a task is accomplished. Agents make decisions about which Actions to take, then take that Action, observe the result, and repeat until the task is complete done. LangChain provides a standard interface for agents, a selection of agents to choose from, and examples of end-to-end agents.

Documentation

Please see here for full documentation, which includes:

You can also check out the full API Reference docs.

Ecosystem

  • LangSmith: Tracing and evaluating your language model applications and intelligent agents to help you move from prototype to production.
  • LangGraph: Creating stateful, multi-actor applications with LLMs, built on top of (and intended to be used with) LangChain primitives.
  • LangServe: Deploying LangChain runnables and chains as REST APIs.

Contributing

As an open-source project in a rapidly developing field, we are extremely open to contributions, whether it be in the form of a new feature, improved infrastructure, or better documentation.

For detailed information on how to contribute, see here.

Contributors

langchain contributors

Owner

  • Name: jitsecurity-soss
  • Login: jitsecurity-soss
  • Kind: organization

GitHub Events

Total
Last Year

Dependencies

docker/docker-compose.yml docker
  • ankane/pgvector latest
  • graphdb latest
  • intellabs/vdms latest
  • mongo latest
  • postgres 16
  • redis/redis-stack-server latest
docker/graphdb/Dockerfile docker
  • ontotext/graphdb 10.5.1 build
libs/cli/langchain_cli/project_template/Dockerfile docker
  • python 3.11-slim build
libs/community/tests/integration_tests/graphs/docker-compose-ontotext-graphdb/Dockerfile docker
  • ontotext/graphdb 10.5.1 build
libs/langchain/Dockerfile docker
  • builder latest build
  • dependencies latest build
  • python 3.11.2-bullseye build
libs/langchain/tests/integration_tests/chains/docker-compose-ontotext-graphdb/Dockerfile docker
  • ontotext/graphdb 10.5.1 build
docs/package.json npm
  • @babel/eslint-parser ^7.18.2 development
  • @langchain/scripts ^0.0.10 development
  • docusaurus-plugin-typedoc next development
  • dotenv ^16.4.5 development
  • eslint ^8.19.0 development
  • eslint-config-airbnb ^19.0.4 development
  • eslint-config-prettier ^8.5.0 development
  • eslint-plugin-header ^3.1.1 development
  • eslint-plugin-import ^2.26.0 development
  • eslint-plugin-jsx-a11y ^6.6.0 development
  • eslint-plugin-react ^7.30.1 development
  • eslint-plugin-react-hooks ^4.6.0 development
  • prettier ^2.7.1 development
  • supabase ^1.148.6 development
  • typedoc ^0.24.4 development
  • typedoc-plugin-markdown next development
  • yaml-loader ^0.8.0 development
  • @docusaurus/core 2.4.3
  • @docusaurus/preset-classic 2.4.3
  • @docusaurus/remark-plugin-npm2yarn ^2.4.3
  • @docusaurus/theme-mermaid 2.4.3
  • @mdx-js/react ^1.6.22
  • @supabase/supabase-js ^2.39.7
  • clsx ^1.2.1
  • cookie ^0.6.0
  • json-loader ^0.5.7
  • process ^0.11.10
  • react ^17.0.2
  • react-dom ^17.0.2
  • typescript ^5.1.3
  • webpack ^5.75.0
docs/yarn.lock npm
  • 1354 dependencies
docs/api_reference/requirements.txt pypi
  • autodoc_pydantic ==1.8.0
  • myst_nb *
  • myst_parser *
  • nbsphinx ==0.8.9
  • pydantic <2
  • pydata-sphinx-theme ==0.13.1
  • sphinx >=5
  • sphinx-autobuild ==2021.3.14
  • sphinx-panels *
  • sphinx-typlog-theme ==0.8.0
  • sphinx_copybutton *
  • sphinx_rtd_theme ==1.0.0
  • toml *
docs/vercel_requirements.txt pypi
  • langchain-astradb *
  • langchain-cohere *
  • langchain-elasticsearch *
  • langchain-nvidia-ai-endpoints *
  • langchain-postgres *
  • urllib3 ==1.26.18
libs/cli/langchain_cli/integration_template/pyproject.toml pypi
  • codespell ^2.2.6 codespell
  • langchain-core * develop
  • ruff ^0.1.8 lint
  • langchain-core ^0.1
  • python >=3.8.1,<4.0
  • langchain-core * test
  • pytest ^7.4.3 test
  • pytest-asyncio ^0.23.2 test
  • pytest-socket ^0.7.0 test
  • langchain-core * typing
  • mypy ^1.7.1 typing
libs/cli/langchain_cli/package_template/pyproject.toml pypi
  • fastapi ^0.104.0 develop
  • langchain-cli >=0.0.4 develop
  • sse-starlette ^1.6.5 develop
  • langchain-core >=0.1.5
  • langchain-openai >=0.0.1
  • python >=3.8.1,<4.0
libs/cli/langchain_cli/project_template/pyproject.toml pypi
  • langchain-cli >=0.0.15 develop
  • langserve >=0.0.30
  • pydantic <2
  • python ^3.11
  • uvicorn ^0.23.2
libs/cli/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • docopt 0.6.2
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.13
  • langchain-community 0.0.29
  • langchain-core 0.1.35
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.33
  • libcst 1.3.1
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.9.15
  • packaging 23.2
  • pastel 0.2.1
  • pluggy 1.4.0
  • poethepoet 0.24.4
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pytest 7.4.4
  • pytest-watch 4.2.0
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • ruff 0.1.15
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.29
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomli 2.0.1
  • tomlkit 0.12.4
  • typer 0.9.4
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • watchdog 4.0.0
  • yarl 1.9.4
libs/cli/pyproject.toml pypi
  • poethepoet ^0.24.1 develop
  • pytest ^7.4.2 develop
  • pytest-watch ^4.2.0 develop
  • ruff ^0.1.5 lint
  • gitpython ^3.1.40
  • langserve >=0.0.51
  • libcst ^1.3.1
  • python >=3.8.1,<4.0
  • tomlkit ^0.12.2
  • typer ^0.9.0
  • uvicorn ^0.23.2
libs/community/poetry.lock pypi
  • 394 dependencies
libs/community/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • jupyter ^1.0.0 develop
  • langchain-core * develop
  • setuptools ^67.6.1 develop
  • ruff ^0.1.5 lint
  • PyYAML >=5.3
  • SQLAlchemy >=1.4,<3
  • aiohttp ^3.8.3
  • aiosqlite ^0.19.0
  • aleph-alpha-client ^2.15.0
  • anthropic ^0.3.11
  • arxiv ^1.4
  • assemblyai ^0.17.0
  • atlassian-python-api ^3.36.0
  • azure-ai-documentintelligence ^1.0.0b1
  • azure-identity ^1.15.0
  • azure-search-documents 11.4.0
  • beautifulsoup4 ^4
  • bibtexparser ^1.4.0
  • cassio ^0.1.6
  • chardet ^5.1.0
  • cloudpickle >=2.0.0
  • cohere ^4
  • databricks-vectorsearch ^0.21
  • dataclasses-json >= 0.5.7, < 0.7
  • datasets ^2.15.0
  • dgml-utils ^0.3.0
  • elasticsearch ^8.12.0
  • esprima ^4.0.1
  • faiss-cpu ^1
  • feedparser ^6.0.10
  • fireworks-ai ^0.9.0
  • friendli-client ^1.2.4
  • geopandas ^0.13.1
  • gitpython ^3.1.32
  • google-cloud-documentai ^2.20.1
  • gql ^3.4.1
  • gradientai ^1.4.0
  • hdbcli ^2.19.21
  • hologres-vector ^0.0.6
  • html2text ^2020.1.16
  • httpx ^0.24.1
  • httpx-sse ^0.4.0
  • javelin-sdk ^0.1.8
  • jinja2 ^3
  • jq ^1.4.1
  • jsonschema >1
  • langchain-core ^0.1.48
  • langsmith ^0.1.0
  • lxml >=4.9.3,<6.0
  • markdownify ^0.11.6
  • motor ^3.3.1
  • msal ^1.25.0
  • mwparserfromhell ^0.6.4
  • mwxml ^0.3.3
  • newspaper3k ^0.2.8
  • numexpr ^2.8.6
  • numpy ^1
  • nvidia-riva-client ^2.14.0
  • oci ^2.119.1
  • openai <2
  • openapi-pydantic ^0.3.2
  • oracle-ads ^2.9.1
  • pandas ^2.0.1
  • pdfminer-six ^20221105
  • pgvector ^0.1.6
  • praw ^7.7.1
  • premai ^0.3.25
  • psychicapi ^0.8.0
  • py-trello ^0.19.0
  • pyjwt ^2.8.0
  • pymupdf ^1.22.3
  • pypdf ^3.4.0
  • pypdfium2 ^4.10.0
  • pyspark ^3.4.0
  • python >=3.8.1,<4.0
  • rank-bm25 ^0.2.2
  • rapidfuzz ^3.1.1
  • rapidocr-onnxruntime ^1.3.2
  • rdflib 7.0.0
  • requests ^2
  • requests-toolbelt ^1.0.0
  • rspace_client ^2.5.0
  • scikit-learn ^1.2.2
  • sqlite-vss ^0.1.2
  • streamlit ^1.18.0
  • sympy ^1.12
  • telethon ^1.28.5
  • tenacity ^8.1.0
  • tidb-vector >=0.0.3,<1.0.0
  • timescale-vector ^0.0.1
  • tqdm >=4.48.0
  • tree-sitter ^0.20.2
  • tree-sitter-languages ^1.8.0
  • typer ^0.9.0
  • upstash-redis ^0.15.0
  • vdms ^0.0.20
  • xata ^1.0.0a7
  • xmltodict ^0.13.0
  • duckdb-engine ^0.9.2 test
  • freezegun ^1.2.2 test
  • langchain-core * test
  • lark ^1.1.5 test
  • pandas ^2.0.0 test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.20.3 test
  • pytest-cov ^4.1.0 test
  • pytest-dotenv ^0.5.2 test
  • pytest-mock ^3.10.0 test
  • pytest-socket ^0.6.0 test
  • pytest-watcher ^0.2.6 test
  • requests-mock ^1.11.0 test
  • responses ^0.22.0 test
  • syrupy ^4.0.2 test
  • anthropic ^0.3.11 test_integration
  • cassio ^0.1.6 test_integration
  • exllamav2 ^0.0.18 test_integration
  • fireworks-ai ^0.9.0 test_integration
  • langchain-core * test_integration
  • openai ^1 test_integration
  • pytest-vcr ^1.0.2 test_integration
  • python-dotenv ^1.0.0 test_integration
  • tiktoken >=0.3.2,<0.6.0 test_integration
  • vdms ^0.0.20 test_integration
  • wrapt ^1.15.0 test_integration
  • langchain-core * typing
  • langchain-text-splitters * typing
  • mypy ^0.991 typing
  • mypy-protobuf ^3.0.0 typing
  • types-chardet ^5.0.4.6 typing
  • types-pytz ^2023.3.0.0 typing
  • types-pyyaml ^6.0.12.2 typing
  • types-redis ^4.3.21.6 typing
  • types-requests ^2.28.11.5 typing
  • types-toml ^0.10.8.1 typing
libs/core/poetry.lock pypi
  • 141 dependencies
libs/core/pyproject.toml pypi
  • grandalf ^0.8 develop
  • jupyter ^1.0.0 develop
  • setuptools ^67.6.1 develop
  • ruff ^0.1.5 lint
  • PyYAML >=5.3
  • jinja2 ^3
  • jsonpatch ^1.33
  • langsmith ^0.1.0
  • packaging ^23.2
  • pydantic >=1,<3
  • python >=3.8.1,<4.0
  • tenacity ^8.1.0
  • freezegun ^1.2.2 test
  • grandalf ^0.8 test
  • numpy ^1.24.0 test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-profiling ^1.7.0 test
  • pytest-watcher ^0.3.4 test
  • responses ^0.25.0 test
  • syrupy ^4.0.2 test
  • langchain-text-splitters * typing
  • mypy ^1 typing
  • types-jinja2 ^2.11.9 typing
  • types-pyyaml ^6.0.12.2 typing
  • types-requests ^2.28.11.5 typing
libs/experimental/poetry.lock pypi
  • 207 dependencies
libs/experimental/pyproject.toml pypi
  • jupyter ^1.0.0 develop
  • langchain * develop
  • langchain-community * develop
  • langchain-core * develop
  • setuptools ^67.6.1 develop
  • ruff ^0.1.5 lint
  • faker ^19.3.1
  • jinja2 ^3
  • langchain ^0.1.15
  • langchain-core ^0.1.41
  • pandas ^2.0.1
  • presidio-analyzer ^2.2.352
  • presidio-anonymizer ^2.2.352
  • python >=3.8.1,<4.0
  • sentence-transformers ^2
  • tabulate ^0.9.0
  • vowpal-wabbit-next 0.6.0
  • langchain * test
  • langchain-community * test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.20.3 test
  • langchain * test_integration
  • langchain-community * test_integration
  • langchain-core * test_integration
  • langchain-openai * test_integration
  • langchain * typing
  • langchain-community * typing
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-pyyaml ^6.0.12.2 typing
  • types-requests ^2.28.11.5 typing
libs/langchain/poetry.lock pypi
  • 386 dependencies
libs/langchain/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • jupyter ^1.0.0 develop
  • langchain-community * develop
  • langchain-core * develop
  • langchain-text-splitters * develop
  • playwright ^1.28.0 develop
  • setuptools ^67.6.1 develop
  • ruff ^0.1.5 lint
  • PyYAML >=5.3
  • SQLAlchemy >=1.4,<3
  • aiohttp ^3.8.3
  • aiosqlite ^0.19.0
  • aleph-alpha-client ^2.15.0
  • anthropic ^0.3.11
  • arxiv ^1.4
  • assemblyai ^0.17.0
  • async-timeout ^4.0.0
  • atlassian-python-api ^3.36.0
  • azure-ai-formrecognizer ^3.2.1
  • azure-ai-textanalytics ^5.3.0
  • azure-cognitiveservices-speech ^1.28.0
  • azure-core ^1.26.4
  • azure-cosmos ^4.4.0b1
  • azure-identity ^1.12.0
  • azure-search-documents 11.4.0b8
  • beautifulsoup4 ^4
  • bibtexparser ^1.4.0
  • cassio ^0.1.0
  • chardet ^5.1.0
  • clarifai >=9.1.0
  • cohere >=4,<6
  • couchbase ^4.1.9
  • dashvector ^1.0.1
  • databricks-vectorsearch ^0.21
  • dataclasses-json >= 0.5.7, < 0.7
  • datasets ^2.15.0
  • dgml-utils ^0.3.0
  • docarray ^0.32.0
  • esprima ^4.0.1
  • faiss-cpu ^1
  • feedparser ^6.0.10
  • fireworks-ai ^0.9.0
  • geopandas ^0.13.1
  • gitpython ^3.1.32
  • google-cloud-documentai ^2.20.1
  • gql ^3.4.1
  • hologres-vector ^0.0.6
  • html2text ^2020.1.16
  • huggingface_hub ^0
  • javelin-sdk ^0.1.8
  • jinja2 ^3
  • jq ^1.4.1
  • jsonpatch ^1.33
  • jsonschema >1
  • langchain-community >=0.0.36,<0.1
  • langchain-core ^0.1.48
  • langchain-openai >=0.0.2,<0.1
  • langchain-text-splitters >=0.0.1,<0.1
  • langsmith ^0.1.17
  • lxml >=4.9.3,<6.0
  • manifest-ml ^0.0.1
  • markdownify ^0.11.6
  • motor ^3.3.1
  • msal ^1.25.0
  • mwparserfromhell ^0.6.4
  • mwxml ^0.3.3
  • newspaper3k ^0.2.8
  • nlpcloud ^1
  • numexpr ^2.8.6
  • numpy ^1
  • openai <2
  • openapi-pydantic ^0.3.2
  • openlm ^0.0.5
  • pandas ^2.0.1
  • pdfminer-six ^20221105
  • pgvector ^0.1.6
  • praw ^7.7.1
  • psychicapi ^0.8.0
  • py-trello ^0.19.0
  • pydantic >=1,<3
  • pymupdf ^1.22.3
  • pypdf ^3.4.0
  • pypdfium2 ^4.10.0
  • pyspark ^3.4.0
  • python >=3.8.1,<4.0
  • qdrant-client ^1.3.1
  • rank-bm25 ^0.2.2
  • rapidfuzz ^3.1.1
  • rapidocr-onnxruntime ^1.3.2
  • rdflib 7.0.0
  • requests ^2
  • requests-toolbelt ^1.0.0
  • rspace_client ^2.5.0
  • scikit-learn ^1.2.2
  • sentence-transformers ^2
  • sqlite-vss ^0.1.2
  • streamlit ^1.18.0
  • sympy ^1.12
  • telethon ^1.28.5
  • tenacity ^8.1.0
  • tiktoken >=0.3.2,<0.6.0
  • timescale-vector ^0.0.1
  • torch >=1,<3
  • tqdm >=4.48.0
  • transformers ^4
  • typer ^0.9.0
  • upstash-redis ^0.15.0
  • xata ^1.0.0a7
  • xmltodict ^0.13.0
  • duckdb-engine ^0.9.2 test
  • freezegun ^1.2.2 test
  • langchain-core * test
  • langchain-text-splitters * test
  • lark ^1.1.5 test
  • pandas ^2.0.0 test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.23.2 test
  • pytest-cov ^4.0.0 test
  • pytest-dotenv ^0.5.2 test
  • pytest-mock ^3.10.0 test
  • pytest-socket ^0.6.0 test
  • pytest-watcher ^0.2.6 test
  • requests-mock ^1.11.0 test
  • responses ^0.22.0 test
  • syrupy ^4.0.2 test
  • anthropic ^0.3.11 test_integration
  • cassio ^0.1.0 test_integration
  • langchain-community * test_integration
  • langchain-core * test_integration
  • langchain-text-splitters * test_integration
  • langchainhub ^0.1.15 test_integration
  • openai ^1 test_integration
  • pytest-vcr ^1.0.2 test_integration
  • python-dotenv ^1.0.0 test_integration
  • tiktoken >=0.3.2,<0.6.0 test_integration
  • wrapt ^1.15.0 test_integration
  • langchain-community * typing
  • langchain-core * typing
  • langchain-text-splitters * typing
  • mypy ^1 typing
  • mypy-protobuf ^3.0.0 typing
  • types-chardet ^5.0.4.6 typing
  • types-pytz ^2023.3.0.0 typing
  • types-pyyaml ^6.0.12.2 typing
  • types-redis ^4.3.21.6 typing
  • types-requests ^2.28.11.5 typing
  • types-toml ^0.10.8.1 typing
libs/partners/ai21/poetry.lock pypi
  • ai21 2.1.3
  • ai21-tokenizer 0.3.11
  • annotated-types 0.6.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.42
  • langchain-standard-tests 0.1.0
  • langchain-text-splitters 0.0.1
  • langsmith 0.1.38
  • marshmallow 3.21.1
  • mypy 0.991
  • mypy-extensions 1.0.0
  • orjson 3.10.0
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • sentencepiece 0.1.99
  • six 1.16.0
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/ai21/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • ai21 ^2.1.2
  • langchain-core ^0.1.28
  • langchain-text-splitters ^0.0.1
  • python >=3.8.1,<4.0
  • freezegun ^1.2.2 test
  • langchain-core * test
  • langchain-standard-tests * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/airbyte/poetry.lock pypi
  • 110 dependencies
libs/partners/airbyte/pyproject.toml pypi
  • codespell ^2.2.6 codespell
  • langchain-core * develop
  • ruff ^0.1.8 lint
  • airbyte ^0.7.3
  • langchain-core ^0.1.5
  • python ^3.9
  • langchain-core * test
  • pytest ^7.4.3 test
  • pytest-asyncio ^0.23.2 test
  • langchain ^0.1.9 typing
  • langchain-core * typing
  • langchain-text-splitters * typing
  • mypy ^1.7.1 typing
libs/partners/anthropic/poetry.lock pypi
  • annotated-types 0.6.0
  • anthropic 0.25.2
  • anyio 4.3.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • defusedxml 0.7.1
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • filelock 3.13.4
  • freezegun 1.4.0
  • fsspec 2024.3.1
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • huggingface-hub 0.22.2
  • idna 3.7
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.43
  • langchain-standard-tests 0.1.0
  • langsmith 0.1.48
  • mypy 0.991
  • mypy-extensions 1.0.0
  • orjson 3.10.1
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.7.0
  • pydantic-core 2.18.1
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.3.7
  • six 1.16.0
  • sniffio 1.3.1
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tokenizers 0.15.2
  • tomli 2.0.1
  • tqdm 4.66.2
  • typing-extensions 4.11.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/anthropic/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • mypy ^0.991 lint
  • ruff >=0.2.2,<1 lint
  • anthropic >=0.23.0,<1
  • defusedxml ^0.7.1
  • langchain-core ^0.1.43
  • python >=3.8.1,<4.0
  • defusedxml ^0.7.1 test
  • freezegun ^1.2.2 test
  • langchain-core * test
  • langchain-standard-tests * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * test_integration
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/chroma/poetry.lock pypi
  • 129 dependencies
libs/partners/chroma/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-community * develop
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • chromadb ^0.4.0
  • fastapi >=0.95.2,<1
  • langchain-core ^0.1.40
  • numpy ^1
  • python >=3.8.1,<3.13
  • freezegun ^1.2.2 test
  • langchain-community * test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-openai >=0.0.3,<0.1 test_integration
  • langchain-community * typing
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-requests ^2.31.0.20240406 typing
libs/partners/exa/poetry.lock pypi
  • annotated-types 0.6.0
  • anyio 4.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • exa-py 1.0.8
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.23
  • langsmith 0.0.87
  • mypy 1.8.0
  • mypy-extensions 1.0.0
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.1
  • pydantic-core 2.16.2
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.12.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.8.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.0
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • typing-extensions 4.9.0
  • urllib3 2.2.0
  • watchdog 4.0.0
libs/partners/exa/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • exa-py ^1.0.8
  • langchain-core ^0.1
  • python >=3.8.1,<4.0
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^1 typing
libs/partners/fireworks/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fireworks-ai 0.13.0
  • freezegun 1.4.0
  • frozenlist 1.4.1
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.42
  • langchain-standard-tests 0.1.0
  • langsmith 0.1.10
  • multidict 6.0.5
  • mypy 0.991
  • mypy-extensions 1.0.0
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pillow 10.2.0
  • pluggy 1.4.0
  • pydantic 2.6.3
  • pydantic-core 2.16.3
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.12.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.2.2
  • six 1.16.0
  • sniffio 1.3.1
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • tqdm 4.66.2
  • types-requests 2.31.0.20240218
  • typing-extensions 4.10.0
  • urllib3 2.2.1
  • watchdog 4.0.0
  • yarl 1.9.4
libs/partners/fireworks/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.2.2 lint
  • aiohttp ^3.9.1
  • fireworks-ai >=0.13.0
  • langchain-core ^0.1.42
  • openai ^1.10.0
  • python >=3.8.1,<4.0
  • requests ^2
  • freezegun ^1.2.2 test
  • langchain-core * test
  • langchain-standard-tests * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-requests ^2 typing
libs/partners/groq/poetry.lock pypi
  • annotated-types 0.6.0
  • anyio 4.3.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • distro 1.9.0
  • exceptiongroup 1.2.1
  • groq 0.5.0
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • idna 3.7
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.45
  • langchain-standard-tests 0.1.0
  • langsmith 0.1.50
  • mypy 0.991
  • mypy-extensions 1.0.0
  • orjson 3.10.1
  • packaging 23.2
  • pluggy 1.5.0
  • pydantic 2.7.1
  • pydantic-core 2.18.2
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • sniffio 1.3.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • typing-extensions 4.11.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/groq/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • groq >=0.4.1,<1
  • langchain-core ^0.1.45
  • python >=3.8.1,<4.0
  • langchain-core * test
  • langchain-standard-tests * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • langchain-core * test_integration
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/ibm/poetry.lock pypi
  • annotated-types 0.6.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.1
  • freezegun 1.4.0
  • ibm-cos-sdk 2.13.4
  • ibm-cos-sdk-core 2.13.4
  • ibm-cos-sdk-s3transfer 2.13.4
  • ibm-watson-machine-learning 1.0.355
  • ibm-watsonx-ai 0.2.6
  • idna 3.7
  • importlib-metadata 7.1.0
  • iniconfig 2.0.0
  • jmespath 1.0.1
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.44
  • langsmith 0.1.49
  • lomond 0.3.3
  • mypy 0.991
  • mypy-extensions 1.0.0
  • numpy 1.26.4
  • orjson 3.10.1
  • packaging 23.2
  • pandas 2.1.4
  • pluggy 1.4.0
  • pydantic 2.7.0
  • pydantic-core 2.18.1
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pytz 2024.1
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • syrupy 4.6.1
  • tabulate 0.9.0
  • tenacity 8.2.3
  • tomli 2.0.1
  • types-requests 2.31.0.20240406
  • typing-extensions 4.11.0
  • tzdata 2024.1
  • urllib3 2.1.0
  • watchdog 4.0.0
  • zipp 3.18.1
libs/partners/ibm/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • ibm-watsonx-ai ^0.2.6
  • langchain-core ^0.1.42
  • python >=3.10,<4.0
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-requests ^2 typing
libs/partners/mistralai/poetry.lock pypi
  • annotated-types 0.6.0
  • anyio 4.3.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.1
  • filelock 3.14.0
  • fsspec 2024.3.1
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • huggingface-hub 0.22.2
  • idna 3.7
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.46
  • langchain-standard-tests 0.1.0
  • langsmith 0.1.51
  • mypy 0.991
  • mypy-extensions 1.0.0
  • orjson 3.10.1
  • packaging 23.2
  • pluggy 1.5.0
  • pydantic 2.7.1
  • pydantic-core 2.18.2
  • pytest 7.4.4
  • pytest-asyncio 0.21.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • sniffio 1.3.1
  • tenacity 8.2.3
  • tokenizers 0.15.2
  • tomli 2.0.1
  • tqdm 4.66.2
  • typing-extensions 4.11.0
  • urllib3 2.2.1
libs/partners/mistralai/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • httpx >=0.25.2,<1
  • httpx-sse >=0.3.1,<1
  • langchain-core ^0.1.46
  • python >=3.8.1,<4.0
  • tokenizers ^0.15.1
  • langchain-core * test
  • langchain-standard-tests * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/mongodb/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • dnspython 2.6.1
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • frozenlist 1.4.1
  • greenlet 3.0.3
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.11
  • langchain-community 0.0.27
  • langchain-core 0.1.30
  • langchain-text-splitters 0.0.1
  • langsmith 0.1.23
  • marshmallow 3.21.1
  • multidict 6.0.5
  • mypy 0.991
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.9.15
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.3
  • pydantic-core 2.16.3
  • pymongo 4.6.2
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.12.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • watchdog 4.0.0
  • yarl 1.9.4
libs/partners/mongodb/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.25
  • numpy ^1
  • pymongo >=4.6.1,<5.0
  • python >=3.8.1,<4.0
  • freezegun ^1.2.2 test
  • langchain * test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/nomic/poetry.lock pypi
  • annotated-types 0.6.0
  • anyio 4.2.0
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonlines 4.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.23
  • langsmith 0.0.87
  • loguru 0.7.2
  • markdown-it-py 3.0.0
  • mdurl 0.1.2
  • mypy 0.991
  • mypy-extensions 1.0.0
  • nomic 3.0.12
  • numpy 1.24.4
  • packaging 23.2
  • pandas 2.0.3
  • pillow 10.2.0
  • pluggy 1.4.0
  • pyarrow 15.0.0
  • pydantic 2.6.1
  • pydantic-core 2.16.2
  • pygments 2.17.2
  • pyjwt 2.8.0
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.12.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.8.2
  • pytz 2024.1
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.0
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • tqdm 4.66.2
  • typing-extensions 4.9.0
  • tzdata 2024.1
  • urllib3 2.2.0
  • watchdog 4.0.0
  • win32-setctime 1.1.0
libs/partners/nomic/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1
  • nomic ^3.0.12
  • python >=3.8.1,<4.0
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/openai/poetry.lock pypi
  • annotated-types 0.6.0
  • anyio 4.3.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • coverage 7.4.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.46
  • langchain-standard-tests 0.1.0
  • langsmith 0.1.42
  • mypy 0.991
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.16.2
  • orjson 3.10.0
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-cov 4.1.0
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.1
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tiktoken 0.6.0
  • tomli 2.0.1
  • tqdm 4.66.2
  • types-tqdm 4.66.0.20240106
  • typing-extensions 4.11.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/openai/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.46
  • openai ^1.10.0
  • python >=3.8.1,<4.0
  • tiktoken >=0.5.2,<1
  • freezegun ^1.2.2 test
  • langchain-core * test
  • langchain-standard-tests * test
  • numpy ^1.24 test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-cov ^4.1.0 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • numpy ^1 test_integration
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-tqdm ^4.66.0.5 typing
libs/partners/pinecone/poetry.lock pypi
  • annotated-types 0.6.0
  • anyio 4.3.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.40
  • langchain-openai 0.0.8
  • langsmith 0.1.40
  • mypy 0.991
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.16.2
  • orjson 3.10.0
  • packaging 23.2
  • pinecone-client 3.2.2
  • pluggy 1.4.0
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.1
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tiktoken 0.6.0
  • tomli 2.0.1
  • tqdm 4.66.2
  • typing-extensions 4.11.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/pinecone/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.40
  • numpy ^1
  • pinecone-client ^3.2.2
  • python >=3.8.1,<3.13
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-openai >=0.0.3,<0.1 test_integration
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/robocorp/poetry.lock pypi
  • annotated-types 0.6.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.37
  • langsmith 0.1.38
  • mypy 0.991
  • mypy-extensions 1.0.0
  • orjson 3.10.0
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • types-requests 2.31.0.20240311
  • typing-extensions 4.10.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/robocorp/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.31
  • python >=3.8.1,<4.0
  • requests ^2.31.0
  • types-requests ^2.31.0.6
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/partners/together/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.2.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • frozenlist 1.4.1
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.23
  • langsmith 0.0.87
  • multidict 6.0.5
  • mypy 0.991
  • mypy-extensions 1.0.0
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.1
  • pydantic-core 2.16.2
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.12.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.8.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.0
  • sseclient-py 1.8.0
  • syrupy 4.6.1
  • tabulate 0.9.0
  • tenacity 8.2.3
  • together 0.2.11
  • tomli 2.0.1
  • tqdm 4.66.2
  • typer 0.9.0
  • types-requests 2.31.0.20240125
  • typing-extensions 4.9.0
  • urllib3 2.2.0
  • watchdog 4.0.0
  • yarl 1.9.4
libs/partners/together/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • aiohttp ^3.9.1
  • langchain-core ^0.1
  • python >=3.8.1,<4.0
  • requests ^2
  • together ^0.2.10
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-requests ^2 typing
libs/partners/upstage/poetry.lock pypi
  • anyio 4.3.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • distro 1.9.0
  • docarray 0.32.1
  • exceptiongroup 1.2.1
  • freezegun 1.5.0
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • idna 3.7
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.46
  • langchain-openai 0.1.4
  • langchain-standard-tests 0.1.0
  • langsmith 0.1.52
  • markdown-it-py 3.0.0
  • mdurl 0.1.2
  • mypy 0.991
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.24.0
  • orjson 3.10.1
  • packaging 23.2
  • pluggy 1.5.0
  • pydantic 1.10.15
  • pygments 2.17.2
  • pymupdf 1.24.2
  • pymupdfb 1.24.1
  • pytest 7.4.4
  • pytest-asyncio 0.21.2
  • pytest-mock 3.14.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • regex 2024.4.28
  • requests 2.31.0
  • rich 13.7.1
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.1
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tiktoken 0.6.0
  • tomli 2.0.1
  • tqdm 4.66.2
  • types-requests 2.31.0.20240406
  • typing-extensions 4.11.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • watchdog 4.0.0
libs/partners/upstage/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.44
  • langchain-openai ^0.1.3
  • pymupdf ^1.24.1
  • python >=3.8.1,<4.0
  • requests ^2.31.0
  • docarray ^0.32.1 test
  • freezegun ^1.2.2 test
  • langchain-core * test
  • langchain-openai * test
  • langchain-standard-tests * test
  • pydantic ^1.10.9 test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
  • types-requests >=2.31.0 typing
libs/partners/voyageai/poetry.lock pypi
  • aiohttp 3.9.3
  • aiolimiter 1.1.0
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.0
  • freezegun 1.4.0
  • frozenlist 1.4.1
  • idna 3.6
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.32
  • langsmith 0.1.26
  • multidict 6.0.5
  • mypy 0.991
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.9.15
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pytest 7.4.4
  • pytest-asyncio 0.21.1
  • pytest-mock 3.12.0
  • pytest-watcher 0.3.5
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • six 1.16.0
  • sniffio 1.3.1
  • syrupy 4.6.1
  • tenacity 8.2.3
  • tomli 2.0.1
  • typing-extensions 4.10.0
  • urllib3 2.2.1
  • voyageai 0.2.1
  • watchdog 4.0.0
  • yarl 1.9.4
libs/partners/voyageai/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • langchain-core * develop
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.32
  • python >=3.8.1,<4.0
  • voyageai >=0.2.1,<1
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-watcher ^0.3.4 test
  • syrupy ^4.0.2 test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/standard-tests/poetry.lock pypi
  • annotated-types 0.6.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • codespell 2.2.6
  • colorama 0.4.6
  • exceptiongroup 1.2.0
  • idna 3.7
  • iniconfig 2.0.0
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain-core 0.1.42
  • langsmith 0.1.45
  • mypy 0.991
  • mypy-extensions 1.0.0
  • orjson 3.10.0
  • packaging 23.2
  • pluggy 1.4.0
  • pydantic 2.7.0
  • pydantic-core 2.18.1
  • pytest 8.1.1
  • pyyaml 6.0.1
  • requests 2.31.0
  • ruff 0.1.15
  • tenacity 8.2.3
  • tomli 2.0.1
  • typing-extensions 4.11.0
  • urllib3 2.2.1
libs/standard-tests/pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • ruff ^0.1.5 lint
  • langchain-core ^0.1.40
  • pytest >=7,<9
  • python >=3.8.1,<4.0
  • langchain-core * test
  • langchain-core * typing
  • mypy ^0.991 typing
libs/text-splitters/poetry.lock pypi
  • 158 dependencies
libs/text-splitters/pyproject.toml pypi
  • jupyter ^1.0.0 develop
  • langchain-core * develop
  • langchain-core * lint
  • ruff ^0.1.5 lint
  • beautifulsoup4 ^4.12.3
  • langchain-core ^0.1.28
  • lxml >=4.9.3,<6.0
  • python >=3.8.1,<4.0
  • freezegun ^1.2.2 test
  • langchain-core * test
  • pytest ^7.3.0 test
  • pytest-asyncio ^0.21.1 test
  • pytest-mock ^3.10.0 test
  • pytest-profiling ^1.7.0 test
  • pytest-watcher ^0.3.4 test
  • lxml-stubs ^0.5.1 typing
  • mypy ^1 typing
  • spacy ^3.7.4 typing
  • tiktoken ^0.6.0 typing
  • types-requests ^2.31.0.20240218 typing
poetry.lock pypi
  • 187 dependencies
pyproject.toml pypi
  • codespell ^2.2.0 codespell
  • ipykernel ^6.29.2 develop
  • langchain * develop
  • langchain-community * develop
  • langchain-core * develop
  • langchain-experimental * develop
  • langchain-openai * develop
  • langchain-text-splitters * develop
  • autodoc_pydantic ^1.8.0 docs
  • langchain * docs
  • linkchecker ^10.2.1 docs
  • myst-nb ^0.17.1 docs
  • myst_parser ^0.18.1 docs
  • nbdoc ^0.0.82 docs
  • nbsphinx ^0.8.9 docs
  • sphinx ^4.5.0 docs
  • sphinx-autobuild ^2021.3.14 docs
  • sphinx-copybutton ^0.5.1 docs
  • sphinx-panels ^0.6.0 docs
  • sphinx-typlog-theme ^0.8.0 docs
  • sphinx_book_theme ^0.3.3 docs
  • sphinx_rtd_theme ^1.0.0 docs
  • toml ^0.10.2 docs
  • langchain * lint
  • langchain-community * lint
  • langchain-core * lint
  • langchain-experimental * lint
  • langchain-openai * lint
  • langchain-text-splitters * lint
  • ruff ^0.4.0 lint
  • black ^24.2.0
  • python >=3.8.1,<4.0
templates/anthropic-iterative-search/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anthropic 0.23.1
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • beautifulsoup4 4.12.3
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • defusedxml 0.7.1
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.1
  • filelock 3.13.3
  • frozenlist 1.4.1
  • fsspec 2024.3.1
  • gitdb 4.0.11
  • gitpython 3.1.43
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • huggingface-hub 0.22.2
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.14
  • langchain-anthropic 0.1.6
  • langchain-cli 0.0.21
  • langchain-community 0.0.31
  • langchain-core 0.1.40
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.40
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.10.0
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • soupsieve 2.5
  • sqlalchemy 2.0.29
  • sse-starlette 1.8.2
  • starlette 0.37.2
  • tenacity 8.2.3
  • tokenizers 0.15.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.4
  • typing-extensions 4.11.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • wikipedia 1.4.0
  • yarl 1.9.4
templates/anthropic-iterative-search/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • langchain ^0.1
  • langchain-anthropic ^0.1.4
  • python >=3.8.1,<4.0
  • wikipedia ^1.4.0
templates/basic-critique-revise/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/basic-critique-revise/pyproject.toml pypi
  • fastapi >=0.104.0,<1 develop
  • langchain-cli >=0.0.21 develop
  • sse-starlette ^1.6.5 develop
  • langchain ^0.1
  • openai <2
  • python >=3.8.1,<4.0
templates/bedrock-jcvd/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • anyio 4.3.0
  • attrs 23.2.0
  • boto3 1.34.61
  • botocore 1.34.61
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jmespath 1.0.1
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.26.4
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 1.10.14
  • pygments 2.17.2
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • s3transfer 0.10.0
  • shellingham 1.5.4
  • six 1.16.0
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.0.7
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/bedrock-jcvd/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • boto3 ^1.33.10
  • langchain ^0.1
  • langserve >=0.0.30
  • pydantic <2
  • python ^3.11
  • uvicorn ^0.23.2
templates/cassandra-entomology-rag/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • cassandra-driver 3.29.0
  • cassio 0.1.5
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • geomet 0.2.1.post1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • six 1.16.0
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tiktoken 0.5.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/cassandra-entomology-rag/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • cassio ^0.1.3
  • langchain ^0.1
  • openai <2
  • python >=3.8.1,<4.0
  • tiktoken ^0.5.1
templates/cassandra-synonym-caching/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • cassandra-driver 3.29.0
  • cassio 0.1.5
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • geomet 0.2.1.post1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • six 1.16.0
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tiktoken 0.5.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/cassandra-synonym-caching/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • cassio ^0.1.3
  • langchain ^0.1
  • openai <2
  • python >=3.8.1,<4.0
  • tiktoken ^0.5.1
templates/chain-of-note-wiki/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anthropic 0.23.1
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • beautifulsoup4 4.12.3
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • defusedxml 0.7.1
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.1
  • filelock 3.13.3
  • frozenlist 1.4.1
  • fsspec 2024.3.1
  • gitdb 4.0.11
  • gitpython 3.1.43
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.5
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • huggingface-hub 0.22.2
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.14
  • langchain-anthropic 0.1.6
  • langchain-cli 0.0.21
  • langchain-community 0.0.31
  • langchain-core 0.1.40
  • langchain-text-splitters 0.0.1
  • langchainhub 0.1.15
  • langserve 0.0.51
  • langsmith 0.1.40
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.10.0
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • soupsieve 2.5
  • sqlalchemy 2.0.29
  • sse-starlette 1.8.2
  • starlette 0.37.2
  • tenacity 8.2.3
  • tokenizers 0.15.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.4
  • types-requests 2.31.0.20240403
  • typing-extensions 4.11.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • wikipedia 1.4.0
  • yarl 1.9.4
templates/chain-of-note-wiki/pyproject.toml pypi
  • fastapi >=0.104.0,<1 develop
  • langchain-cli >=0.0.21 develop
  • sse-starlette ^1.6.5 develop
  • langchain ^0.1
  • langchain-anthropic ^0.1.4
  • langchainhub ^0.1.14
  • python >=3.8.1,<4.0
  • wikipedia ^1.4.0
templates/chat-bot-feedback/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langchainhub 0.1.15
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • types-requests 2.31.0.20240311
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/chat-bot-feedback/pyproject.toml pypi
  • fastapi >=0.104.0,<1 develop
  • langchain-cli >=0.0.21 develop
  • sse-starlette ^1.6.5 develop
  • langchain ^0.1
  • langchainhub >=0.1.13
  • langsmith >=0.0.54
  • openai <2
  • python >=3.8.1,<4.0
templates/cohere-librarian/poetry.lock pypi
  • 123 dependencies
templates/cohere-librarian/pyproject.toml pypi
  • fastapi >=0.104.0,<1 develop
  • langchain-cli >=0.0.21 develop
  • sse-starlette ^1.6.5 develop
  • chromadb ^0.4.18
  • cohere ^4.37
  • langchain ^0.1
  • python >=3.8.1,<4.0
templates/csv-agent/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • faiss-cpu 1.8.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-experimental 0.0.54
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.26.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pandas 2.2.1
  • pydantic 1.10.14
  • pygments 2.17.2
  • python-dateutil 2.9.0.post0
  • pytz 2024.1
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • rich 13.7.1
  • setuptools 68.2.2
  • shellingham 1.5.4
  • six 1.16.0
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tabulate 0.9.0
  • tenacity 8.2.3
  • tiktoken 0.5.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • tzdata 2024.1
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/csv-agent/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • faiss-cpu ^1.7.4
  • langchain ^0.1
  • langchain-experimental >=0.0.54
  • openai <2
  • pandas ^2.1.1
  • pydantic <2
  • python >=3.9,<3.13
  • setuptools ^68.2.2
  • tabulate ^0.9.0
  • tiktoken ^0.5.1
templates/elastic-query-generator/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • elastic-transport 8.12.0
  • elasticsearch 8.12.1
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/elastic-query-generator/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • elasticsearch ^8.10.1
  • langchain ^0.1
  • openai <2
  • python >=3.8.1,<4.0
templates/extraction-anthropic-functions/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anthropic 0.19.2
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • filelock 3.13.1
  • frozenlist 1.4.1
  • fsspec 2024.2.0
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • huggingface-hub 0.21.4
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-experimental 0.0.54
  • langchain-text-splitters 0.0.1
  • langchainhub 0.1.15
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tokenizers 0.15.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • types-requests 2.31.0.20240311
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/extraction-anthropic-functions/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • anthropic >=0.5.0
  • langchain ^0.1
  • langchain-experimental >=0.0.54
  • langchainhub >=0.1.13
  • python >=3.8.1,<4.0
templates/extraction-openai-functions/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/extraction-openai-functions/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • langchain ^0.1
  • openai <2
  • python >=3.8.1,<4.0
templates/gemini-functions-agent/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • cachetools 5.3.3
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • google-ai-generativelanguage 0.4.0
  • google-api-core 2.17.1
  • google-auth 2.28.2
  • google-generativeai 0.3.2
  • googleapis-common-protos 1.63.0
  • greenlet 3.0.3
  • grpcio 1.62.1
  • grpcio-status 1.62.1
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-google-genai 0.0.9
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.26.4
  • orjson 3.9.15
  • packaging 23.2
  • proto-plus 1.23.0
  • protobuf 4.25.3
  • pyasn1 0.5.1
  • pyasn1-modules 0.3.0
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • requests 2.31.0
  • rich 13.7.1
  • rsa 4.9
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tavily-python 0.1.9
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/gemini-functions-agent/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • langchain ^0.1
  • langchain-google-genai >=0.0.8,<0.1
  • python >=3.9,<4.0
  • tavily-python ^0.1.9
templates/guardrails-output-parser/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • alt-profanity-check 1.4.1.post1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • boltons 23.1.1
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • colored 2.2.4
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • eliot 1.15.0
  • eliot-tree 21.0.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • griffe 0.36.9
  • guardrails-ai 0.2.9
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • iso8601 2.1.0
  • jmespath 1.0.1
  • joblib 1.3.2
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • lxml 4.9.4
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.26.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.4.2
  • pydantic-core 2.10.1
  • pygments 2.17.2
  • pyrsistent 0.20.0
  • python-dateutil 2.9.0.post0
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • rich 13.7.1
  • rstr 3.2.2
  • scikit-learn 1.4.1.post1
  • scipy 1.12.0
  • setuptools 69.1.1
  • shellingham 1.5.4
  • six 1.16.0
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • threadpoolctl 3.3.0
  • tomlkit 0.12.4
  • toolz 0.12.1
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • win-unicode-console 0.5
  • yarl 1.9.4
  • zope-interface 6.2
templates/guardrails-output-parser/pyproject.toml pypi
  • fastapi >=0.104.0,<1 develop
  • langchain-cli >=0.0.21 develop
  • sse-starlette ^1.6.5 develop
  • alt-profanity-check ^1.3.1
  • guardrails-ai ^0.2.4
  • langchain ^0.1
  • openai <2
  • python >=3.9,<3.13
templates/hybrid-search-weaviate/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • authlib 1.3.0
  • certifi 2024.2.2
  • cffi 1.16.0
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • cryptography 42.0.5
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • grpcio 1.62.1
  • grpcio-health-checking 1.62.1
  • grpcio-tools 1.62.1
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • protobuf 4.25.3
  • pycparser 2.21
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • python-dotenv 1.0.1
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • rich 13.7.1
  • setuptools 69.1.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tiktoken 0.5.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • validators 0.22.0
  • weaviate-client 4.5.2
  • yarl 1.9.4
templates/hybrid-search-weaviate/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • python-dotenv ^1.0.0 develop
  • langchain ^0.1
  • openai <2
  • python >=3.8.1,<4.0
  • tiktoken ^0.5.1
  • weaviate-client >=3.24.2
templates/hyde/poetry.lock pypi
  • 127 dependencies
templates/hyde/pyproject.toml pypi
  • fastapi >=0.104.0,<1 develop
  • langchain-cli >=0.0.21 develop
  • poethepoet ^0.24.1 develop
  • sse-starlette ^1.6.5 develop
  • chromadb ^0.4.15
  • langchain ^0.1
  • langchain-text-splitters >=0.0.1,<0.1
  • openai <2
  • python >=3.8.1,<4.0
  • tiktoken ^0.5.1
templates/intel-rag-xeon/poetry.lock pypi
  • 194 dependencies
templates/intel-rag-xeon/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • poethepoet ^0.24.1 develop
  • beautifulsoup4 >=4.12.2
  • chromadb >=0.4.14
  • fastapi ^0.104.0
  • langchain ^0.1
  • python >=3.9,<3.13
  • sentence-transformers 2.2.2
  • sse-starlette ^1.6.5
  • tiktoken >=0.5.1
  • unstructured ^0.10.27
templates/llama2-functions/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pyyaml 6.0.1
  • replicate 0.24.0
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tomlkit 0.12.4
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4
templates/llama2-functions/pyproject.toml pypi
  • langchain-cli >=0.0.21 develop
  • langchain ^0.1
  • python >=3.8.1,<4.0
  • replicate >=0.15.4
templates/mongo-parent-document-retrieval/poetry.lock pypi
  • aiohttp 3.9.3
  • aiosignal 1.3.1
  • annotated-types 0.6.0
  • anyio 4.3.0
  • async-timeout 4.0.3
  • attrs 23.2.0
  • certifi 2024.2.2
  • charset-normalizer 3.3.2
  • click 8.1.7
  • colorama 0.4.6
  • dataclasses-json 0.6.4
  • distro 1.9.0
  • dnspython 2.6.1
  • exceptiongroup 1.2.0
  • fastapi 0.110.0
  • frozenlist 1.4.1
  • gitdb 4.0.11
  • gitpython 3.1.42
  • greenlet 3.0.3
  • h11 0.14.0
  • httpcore 1.0.4
  • httpx 0.27.0
  • httpx-sse 0.4.0
  • idna 3.6
  • jsonpatch 1.33
  • jsonpointer 2.4
  • langchain 0.1.12
  • langchain-cli 0.0.21
  • langchain-community 0.0.28
  • langchain-core 0.1.31
  • langchain-text-splitters 0.0.1
  • langserve 0.0.51
  • langsmith 0.1.24
  • markdown-it-py 3.0.0
  • marshmallow 3.21.1
  • mdurl 0.1.2
  • multidict 6.0.5
  • mypy-extensions 1.0.0
  • numpy 1.24.4
  • openai 1.13.3
  • orjson 3.9.15
  • packaging 23.2
  • pydantic 2.6.4
  • pydantic-core 2.16.3
  • pygments 2.17.2
  • pymongo 4.6.2
  • pypdf 3.17.4
  • pyyaml 6.0.1
  • regex 2023.12.25
  • requests 2.31.0
  • rich 13.7.1
  • shellingham 1.5.4
  • smmap 5.0.1
  • sniffio 1.3.1
  • sqlalchemy 2.0.28
  • sse-starlette 1.8.2
  • starlette 0.36.3
  • tenacity 8.2.3
  • tiktoken 0.5.2
  • tomlkit 0.12.4
  • tqdm 4.66.2
  • typer 0.9.0
  • typing-extensions 4.10.0
  • typing-inspect 0.9.0
  • urllib3 2.2.1
  • uvicorn 0.23.2
  • yarl 1.9.4