When writing documentation in code (comments, docstrings, example snippets), ensure every instruction and external link precisely matches the actual package extras and the implemented service/provider.
Apply this checklist:
pip syntax for editable installs and extras, and confirm the package name.
pip install -e ".[openai]"pip install "db-gpt[openai]"Example (corrected install snippet):
# Install extra support
pip install -e ".[openai]"
# or
pip install "db-gpt[openai]"
If you’re unsure which doc/link is correct, verify against the project’s packaging metadata (extras) and the exact provider SDK you’re calling.
Enter the URL of a public GitHub repository