Compare commits

...

1 Commits

Author SHA1 Message Date
Harrison Chase
37e0f0dfb4 trial move pydantic v1 2023-09-24 21:17:25 -07:00
6 changed files with 18 additions and 0 deletions

View File

@@ -1,8 +1,12 @@
# ruff: noqa: E402
"""Main entrypoint into package."""
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
from importlib import metadata
from typing import Optional
from langchain.agents import MRKLChain, ReActChain, SelfAskWithSearchChain
from langchain.chains import (
ConversationChain,

View File

@@ -0,0 +1,2 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

View File

@@ -0,0 +1,12 @@
[tool.poetry]
name = "langchain-pydantic_v1"
version = "0.1"
description = "..."
authors = ["foo <foo@bar.com>"]
packages = [
{ include = "langchain" },
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"