From f98f1419021816ccd9ff6159b24ec6b6af66ffbb Mon Sep 17 00:00:00 2001 From: Minu Mathew Date: Tue, 28 Nov 2023 15:43:38 -0600 Subject: [PATCH] imports with full paths and fixed typo --- ai_ta_backend/agents/github_webhook_handlers.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ai_ta_backend/agents/github_webhook_handlers.py b/ai_ta_backend/agents/github_webhook_handlers.py index 348e8ff6..1f08a180 100644 --- a/ai_ta_backend/agents/github_webhook_handlers.py +++ b/ai_ta_backend/agents/github_webhook_handlers.py @@ -24,11 +24,11 @@ # from langchain.tools.github.utils import generate_branch_name from newrelic_telemetry_sdk import Log, LogClient -from github_agent import GH_Agent -from ml4bio_agent import WorkflowAgent -from utils import get_langsmith_trace_sharable_url +from ai_ta_backend.agents.github_agent import GH_Agent +from ai_ta_backend.agents.ml4bio_agent import WorkflowAgent +from ai_ta_backend.agents.utils import get_langsmith_trace_sharable_url -# load API keys from globally-availabe .env file +# load API keys from globally-available .env file load_dotenv(override=True, dotenv_path='.env') langchain.debug = False # True for more detailed logs