We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
of course I had to discover this one during a live demo.
Running web-ontogpt raises a KeyError because it can't find the description key for one or more templates.
web-ontogpt
description
~/ontogpt$ web-ontogpt Traceback (most recent call last): File "/home/harry/ontogpt/.venv/bin/web-ontogpt", line 3, in <module> from ontogpt.webapp.main import start File "/home/harry/ontogpt/src/ontogpt/webapp/main.py", line 24, in <module> all_templates = _get_templates() File "/home/harry/ontogpt/src/ontogpt/cli.py", line 2182, in _get_templates all_templates[identifier] = (data["name"], data["description"]) KeyError: 'description'
The text was updated successfully, but these errors were encountered:
In this case, all the repo templates have descriptions, but I had a local template without this value. This is still a case to be caught in the CLI.
Sorry, something went wrong.
Fix #475 - Handle templates without descriptions (#476)
bdc8b28
python-multipart
Successfully merging a pull request may close this issue.
of course I had to discover this one during a live demo.
Running
web-ontogpt
raises a KeyError because it can't find thedescription
key for one or more templates.The text was updated successfully, but these errors were encountered: