update app.py comments

This commit is contained in:
David Westgate 2024-04-25 22:17:13 -07:00
parent 36f74f707a
commit 3ba5b7d04b

View File

@ -8,13 +8,14 @@ from langchain_community.utilities.google_jobs import GoogleJobsAPIWrapper
from dotenv import load_dotenv from dotenv import load_dotenv
from tools import lookup_ip, lookup_name, search_ksp from tools import lookup_ip, lookup_name, search_ksp
from langsmith import Client #from langsmith import Client
""" """
This is the main runner of the custom agent. Custom agent tools are defined seperatly and imported from tools.py This is the main runner of the custom agent. Custom agent tools are defined seperatly and imported from tools.py
Adapted from https://github.com/wu4f/cs410g-src/blob/main/04_Agents/07_tools_custom_agent.py Adapted from https://github.com/wu4f/cs410g-src/blob/main/04_Agents/07_tools_custom_agent.py
Langsmith code can be uncommeted for testing/debugging
""" """
load_dotenv() load_dotenv()