Harrison/version 0025 (#227)

This commit is contained in:
Harrison Chase 2022-11-30 06:48:22 -08:00 committed by GitHub
parent 3bda0019ae
commit ab9abf53b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
0.0.24 0.0.25

View File

@ -23,7 +23,7 @@ from langchain.prompts import (
Prompt, Prompt,
PromptTemplate, PromptTemplate,
) )
from langchain.serpapi import SerpAPIWrapper from langchain.serpapi import SerpAPIChain, SerpAPIWrapper
from langchain.sql_database import SQLDatabase from langchain.sql_database import SQLDatabase
from langchain.vectorstores import FAISS, ElasticVectorSearch from langchain.vectorstores import FAISS, ElasticVectorSearch
@ -33,7 +33,7 @@ __all__ = [
"PythonChain", "PythonChain",
"SelfAskWithSearchChain", "SelfAskWithSearchChain",
"SerpAPIWrapper", "SerpAPIWrapper",
"SerpAPIWrapper", "SerpAPIChain",
"Cohere", "Cohere",
"OpenAI", "OpenAI",
"BasePromptTemplate", "BasePromptTemplate",

View File

@ -99,4 +99,4 @@ class SerpAPIWrapper(BaseModel):
# For backwards compatability # For backwards compatability
SerpAPIWrapper = SerpAPIWrapper SerpAPIChain = SerpAPIWrapper