From 964370aa8ef082f90b6c967f3b2e02e3f800a2e0 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Fri, 9 May 2025 09:48:13 +0200 Subject: [PATCH] Moving to typical Python setup --- main.py => test_langgraph/__main__.py | 2 +- tools.py => test_langgraph/tools.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename main.py => test_langgraph/__main__.py (98%) rename tools.py => test_langgraph/tools.py (100%) diff --git a/main.py b/test_langgraph/__main__.py similarity index 98% rename from main.py rename to test_langgraph/__main__.py index 0a3945c..81b95ec 100644 --- a/main.py +++ b/test_langgraph/__main__.py @@ -12,7 +12,7 @@ import logging logger = logging.getLogger(__name__) -import tools +from . import tools #MODEL = "gemma3:27b" MODEL = "qwen3:latest" diff --git a/tools.py b/test_langgraph/tools.py similarity index 100% rename from tools.py rename to test_langgraph/tools.py