You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be fairly easy to create a markdown page for all possible config values from all known Configurations. This would be a super helpful addition to the docs. What probably needs to be done:
Collect all Configuration definitions, maybe we can use ast to find all classes that implement BaseConfiguration in the codebase
Detect which configuration section these configuration may appear under, this may be manual, I am not sure. The configuration classes have no awareness of which section the are available.
Generate a markdown file with all possible configuration values, extract the string below each class with ast to describe what the setting does. We will probably have to add more of those string in places where they have not been added.
Cli documentation
Inspect the populated argparse object to be able to generate a markdown page with all possible cli commands. I asked chatgpt to do it, and it came up with something, so maybe this is a good way, you will have to see. Typer has this built in, you could check out how Typer formats these generated docs and use those.
The text was updated successfully, but these errors were encountered:
It should be fairly easy to create a markdown page for all possible config values from all known Configurations. This would be a super helpful addition to the docs. What probably needs to be done:
Inspect the populated argparse object to be able to generate a markdown page with all possible cli commands. I asked chatgpt to do it, and it came up with something, so maybe this is a good way, you will have to see. Typer has this built in, you could check out how Typer formats these generated docs and use those.
The text was updated successfully, but these errors were encountered: