1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
| # ./modelexpress-server -h High-performance gRPC server for model serving and management
Usage: modelexpress-server [OPTIONS]
Options: -c, --config <FILE> Configuration file path -p, --port <PORT> Server port [env: MODEL_EXPRESS_SERVER_PORT=8000] --host <HOST> Server host address [env: MODEL_EXPRESS_SERVER_HOST=] -l, --log-level <LOG_LEVEL> Log level [env: MODEL_EXPRESS_LOG_LEVEL=info] [possible values: trace, debug, info, warn, error] --log-format <LOG_FORMAT> Log format [env: MODEL_EXPRESS_LOG_FORMAT=] [possible values: json, pretty, compact] -d, --database-path <DATABASE_PATH> Database file path [env: MODEL_EXPRESS_DATABASE_PATH=/app/models.db] --cache-directory <CACHE_DIRECTORY> Cache directory path [env: MODEL_EXPRESS_CACHE_DIRECTORY=/app/cache] --cache-eviction-enabled <CACHE_EVICTION_ENABLED> Enable cache eviction [env: MODEL_EXPRESS_CACHE_EVICTION_ENABLED=] [possible values: true, false] --validate-config Validate configuration and exit -h, --help Print help -V, --version Print version
# ./model-express-cli --endpoint http://localhost:8000 -h A CLI tool for interacting with ModelExpress server
Usage: model-express-cli [OPTIONS] <COMMAND>
Commands: health Check server health and status model Model management operations (download, list, clear, validate, etc.) api Send general API requests help Print this message or the help of the given subcommand(s)
Options: -e, --endpoint <ENDPOINT> Server endpoint (can also be set via MODEL_EXPRESS_ENDPOINT env var) [env: MODEL_EXPRESS_ENDPOINT=] [default: http://localhost:8001] -t, --timeout <TIMEOUT> Request timeout in seconds [default: 30] -f, --format <FORMAT> Output format [default: human] [possible values: human, json, json-pretty] -v... Verbose mode (-v for info, -vv for debug, -vvv for trace) -q, --quiet Quiet mode (suppress all output except errors) --cache-path <PATH> Cache path override -h, --help Print help (see more with '--help') -V, --version Print version
# ./model-express-cli --endpoint http://localhost:8000 help model Model management operations (download, list, clear, validate, etc.)
Usage: model-express-cli model <COMMAND>
Commands: download Download a model with various strategies (automatically cached) init Initialize model storage configuration list List downloaded models status Show model storage status and usage clear Clear specific model from storage clear-all Clear all models from storage validate Validate model integrity stats Show model storage statistics help Print this message or the help of the given subcommand(s)
Options: -h, --help Print help
|