Spaces:
Runtime error
Runtime error
Windows CLI Application
This folder contains a standalone command line interface for interacting with
llm-backend. The application uses Typer for a
simple user experience and can be packaged into a single Windows executable
using PyInstaller.
Running from source
python -m cli_app --user yourname
Building the executable
Install PyInstaller:
pip install pyinstallerBuild the app:
pyinstaller --onefile -n StarletteAI cli_app/main.pyThe resulting
StarletteAI.exewill appear in thedistdirectory.
The executable can be distributed on Windows 10/11 systems without requiring a Python installation.