Last active
April 20, 2024 12:40
-
-
Save fsndzomga/822e1e48172bc4fd8a973cd3669b171f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from langchain_openai import ChatOpenAI | |
from dotenv import load_dotenv | |
import os | |
from langchain_community.document_loaders import WebBaseLoader | |
from langchain_openai import OpenAIEmbeddings | |
from langchain_community.vectorstores.faiss import FAISS | |
from langchain_text_splitters import RecursiveCharacterTextSplitter | |
from langchain.tools.retriever import create_retriever_tool | |
from langchain_community.tools.tavily_search import TavilySearchResults | |
from langchain import hub | |
from langchain.agents import create_openai_functions_agent | |
from langchain.agents import AgentExecutor | |
load_dotenv() # Loads the environment variables from an .env file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment