From bc645b8bbf3584ac49a6ec0141057e150f679f65 Mon Sep 17 00:00:00 2001 From: Viraj Malia Date: Tue, 11 Jun 2024 16:01:17 -0700 Subject: [PATCH] Use direct imports --- app/src/llama4u.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/llama4u.py b/app/src/llama4u.py index 46eec69..0efda92 100755 --- a/app/src/llama4u.py +++ b/app/src/llama4u.py @@ -6,7 +6,7 @@ from langchain_community.tools.ddg_search.tool import DuckDuckGoSearchRun from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder from langchain_core.runnables.history import RunnableWithMessageHistory -from .input.input import parse_arguments +from input.input import parse_arguments LLAMA4U_STR = 'Llama4U'