From d0a12268b14e406b357c1f1a74dd9dd2bc949a0c Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 12:42:41 +0000 Subject: [PATCH] Add shellgen core and backends modules --- app/shellgen/core/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/shellgen/core/__init__.py diff --git a/app/shellgen/core/__init__.py b/app/shellgen/core/__init__.py new file mode 100644 index 0000000..e06b567 --- /dev/null +++ b/app/shellgen/core/__init__.py @@ -0,0 +1,6 @@ +"""Core module for command generation.""" + +from .generator import CommandGenerator +from .prompts import PromptTemplates + +__all__ = ["CommandGenerator", "PromptTemplates"]