Add shellgen core modules: main, config, history

This commit is contained in:
2026-01-29 12:41:41 +00:00
parent 90f409c64e
commit 6fa1e38320

12
app/shellgen/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
"""ShellGen - Shell Command Generator CLI
A CLI tool that converts natural language descriptions into shell commands
using local LLMs (Ollama, Llama.cpp).
"""
__version__ = "0.1.0"
__author__ = "ShellGen Contributors"
from .main import main
__all__ = ["main", "__version__"]