Add shellgen core modules: main, config, history
This commit is contained in:
12
app/shellgen/__init__.py
Normal file
12
app/shellgen/__init__.py
Normal 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__"]
|
||||
Reference in New Issue
Block a user