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 typing import List, Dict | |
import os | |
import json | |
import requests | |
from dotenv import load_dotenv | |
from langchain.tools import StructuredTool | |
from langchain.agents import initialize_agent, AgentType | |
from langchain_groq.chat_models import ChatGroq | |
BASEDIR = os.path.abspath(os.path.dirname(__file__)) |