Skip to content

Commit

Permalink
refactor: reorganize module structure for clarity
Browse files Browse the repository at this point in the history
Move interactive functionality into a dedicated module to improve code organization and maintainability.
  • Loading branch information
liblaf committed Nov 25, 2024
1 parent e39e58e commit 239e765
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/llm_cli/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from . import cmd, config, llm, utils
from . import cmd, config, interactive, utils
from .cmd import app
from .config import Config, get_config
from .llm import output, pretty_usage
from .interactive import output, pretty_usage

__all__ = [
"Config",
"app",
"cmd",
"config",
"get_config",
"llm",
"interactive",
"output",
"pretty_usage",
"utils",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 239e765

Please sign in to comment.