InvokeAI/scripts
psychedelicious ce9aeeece3 feat: single app entrypoint with CLI arg parsing
We have two problems with how argparse is being utilized:
- We parse CLI args as the `api_app.py` file is read. This causes a problem pytest, which has an incompatible set of CLI args. Some tests import the FastAPI app, which triggers the config to parse CLI args, which receives the pytest args and fails.
- We've repeatedly had problems when something that uses the config is imported before the CLI args are parsed. When this happens, the root dir may not be set correctly, so we attempt to operate on incorrect paths.

To resolve these issues, we need to lift CLI arg parsing outside of the application code, but still let the application access the CLI args. We can create a external app entrypoint to do this.

- `InvokeAIArgs` is a simple helper class that parses CLI args and stores the result.
- `run_app()` is the new entrypoint. It first parses CLI args, then runs `invoke_api` to start the app.

The `invokeai-web` project script and `invokeai-web.py` dev script now call `run_app()` instead of `invoke_api()`.

The first time `get_config()` is called to get the singleton config object, it retrieves the args from `InvokeAIArgs`, sets the root dir if provided, then merges settings in from `invokeai.yaml`.

CLI arg parsing is now safely insulated from application code, but still accessible. And we don't need to worry about import order having an impact on anything, because by the time the app is running, we have already parsed CLI args. Whew!
2024-03-19 09:24:28 +11:00
..
configure_invokeai.py chore: ruff format 2023-11-11 10:55:40 +11:00
generate_openapi_schema.py feat(scripts): add script to generate openapi schema 2024-03-07 10:16:44 +11:00
generate_profile_graphs.sh feat: add profiler util (#5601) 2024-01-31 10:51:57 +00:00
images2prompt.py isort wip 2 2023-09-12 13:01:58 -04:00
invokeai-cli.py isort wip 2 2023-09-12 13:01:58 -04:00
invokeai-model-install.py remove additional unused scripts 2023-09-02 10:05:29 -04:00
invokeai-web.py feat: single app entrypoint with CLI arg parsing 2024-03-19 09:24:28 +11:00
make_models_markdown_table.py isort wip 2 2023-09-12 13:01:58 -04:00
probe-model.py feat(mm): faster hashing for spinning disk HDDs 2024-03-14 15:54:42 +11:00
pypi_helper.py Apply black 2023-07-27 10:54:01 -04:00
scan_models_directory.py chore: ruff check - fix flake8-comprensions 2023-11-11 10:55:23 +11:00
sd-metadata.py isort wip 2 2023-09-12 13:01:58 -04:00
update_config_docstring.py refactor(config): simplified config 2024-03-19 09:24:28 +11:00