docs: bump version to v0.3, drop LiteLLM docstrings, fix index test table#35
Merged
Conversation
- bump package version 0.1.0 -> 0.3.0 (pyproject.toml + __init__.py) to match the shipped v0.3 provider-highway refactor - reword stale LiteLLM docstrings in council/registry/config/models to describe conclave's own provider-prefixed model-id convention (no code change); keep the accurate historical note in providers.py - DOCUMENTATION_INDEX: version 0.3.0; add test rows (test_cli, test_transport, test_logging); add community-file rows (SECURITY/CONTRIBUTING/CODE_OF_CONDUCT); add engineering-health backlog version-history row closes #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes #21
What
Final wave of the engineering-health backlog: version alignment + doc-drift sync introduced by Waves 1-3.
1. Version bump 0.1.0 -> 0.3.0
The v0.3 provider-highway refactor shipped without a package-version bump. Aligned
pyproject.tomlandsrc/conclave/__init__.py.2. Scrubbed misleading "LiteLLM" docstrings
LiteLLM was removed in v0.3; conclave now owns its provider-prefixed model-id format (e.g.
xai/grok-4.3). Reworded docstrings incouncil.py,registry.py,config.py,models.pyto describe the convention accurately. No code behavior changed. The accurate historical note inproviders.py:11is intentionally retained;grep -rin litellm src/now returns only that line.3. DOCUMENTATION_INDEX.md sync
test_cli.py,test_transport.py,test_logging.pySECURITY.md,CONTRIBUTING.md,CODE_OF_CONDUCT.md4. README / SYSTEM_CONTEXT
Skimmed both; no false statements found. Both already describe the owned provider highway, single-source registry, and BYO-keys posture accurately. No edits needed.
Verification
pytest -q-> 121 passed (docstring edits don't change behavior)ruff check .+ruff format --check .-> clean