13 lines
279 B
Python
13 lines
279 B
Python
"""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__"]
|