This commit is contained in:
Mason Daugherty
2025-09-10 22:03:45 -04:00
parent 5ef7d42bf6
commit ffee5155b4
19 changed files with 1477 additions and 1271 deletions

View File

@@ -1,5 +1,7 @@
"""LangChain CLI."""
from __future__ import annotations
from typing import Annotated
import typer

View File

@@ -1,5 +1,7 @@
"""Manage LangChain apps."""
from __future__ import annotations
import shutil
import subprocess
import sys

View File

@@ -1,5 +1,7 @@
"""Develop integration packages for LangChain."""
from __future__ import annotations
import re
import shutil
import subprocess

View File

@@ -1,5 +1,7 @@
"""Generate migrations utilities."""
from __future__ import annotations
import ast
import inspect
import os

View File

@@ -1,5 +1,7 @@
"""Develop installable templates."""
from __future__ import annotations
import re
import shutil
import subprocess

View File

@@ -1,5 +1,7 @@
"""Events utilities."""
from __future__ import annotations
import http.client
import json
from typing import Any, TypedDict

View File

@@ -1,5 +1,7 @@
"""Git utilities."""
from __future__ import annotations
import hashlib
import logging
import re

View File

@@ -1,5 +1,7 @@
"""GitHub utilities."""
from __future__ import annotations
import http.client
import json

View File

@@ -1,5 +1,7 @@
"""Packages utilities."""
from __future__ import annotations
from pathlib import Path
from typing import Any, TypedDict, cast

View File

@@ -1,5 +1,7 @@
"""Script to generate migrations for the migration script."""
from __future__ import annotations
import json
import pkgutil
from pathlib import Path

View File

@@ -1,3 +1,5 @@
from __future__ import annotations
from typing import Any
import pytest

977
libs/cli/uv.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,7 @@
"""Pytest conftest."""
from __future__ import annotations
import gzip
from os import PathLike
from pathlib import Path

View File

@@ -1,5 +1,7 @@
"""Integration tests for chat models."""
from __future__ import annotations
import base64
import inspect
import json

View File

@@ -1,5 +1,7 @@
""":autodoc-options: autoproperty."""
from __future__ import annotations
import inspect
import os
from abc import abstractmethod

View File

@@ -1,5 +1,7 @@
"""Tools unit tests."""
from __future__ import annotations
import os
from abc import abstractmethod
from unittest import mock

View File

@@ -1,3 +1,5 @@
from __future__ import annotations
from collections.abc import Iterator
from typing import Any

View File

@@ -1,5 +1,7 @@
"""Test the standard tests on the custom chat model in the docs."""
from __future__ import annotations
import pytest
from langchain_core.language_models.chat_models import BaseChatModel

File diff suppressed because it is too large Load Diff