You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/langchain/__init__.py

41 lines
890 B
Python

2 years ago
"""Main entrypoint into package."""
from pathlib import Path
with open(Path(__file__).absolute().parents[0] / "VERSION") as _f:
__version__ = _f.read().strip()
from langchain.chains import (
LLMChain,
LLMMathChain,
PythonChain,
ReActChain,
2 years ago
SelfAskWithSearchChain,
SerpAPIChain,
SQLDatabaseChain,
2 years ago
)
from langchain.docstore import Wikipedia
from langchain.faiss import FAISS
from langchain.llms import Cohere, HuggingFaceHub, OpenAI
from langchain.prompt import BasePrompt, DynamicPrompt, Prompt
from langchain.sql_database import SQLDatabase
2 years ago
__all__ = [
"LLMChain",
"LLMMathChain",
"PythonChain",
"SelfAskWithSearchChain",
"SerpAPIChain",
"Cohere",
"OpenAI",
"BasePrompt",
"DynamicPrompt",
2 years ago
"Prompt",
"ReActChain",
"Wikipedia",
"HuggingFaceHub",
"SQLDatabase",
"SQLDatabaseChain",
"FAISS",
2 years ago
]