docs: document claude-fable-5 support via BYOK (#2050) - #2054
Open
Gaurav-meena95 wants to merge 1 commit into
Open
docs: document claude-fable-5 support via BYOK (#2050)#2054Gaurav-meena95 wants to merge 1 commit into
Gaurav-meena95 wants to merge 1 commit into
Conversation
PR overviewThis pull request documents No open security concerns remain on this pull request. Security reviewNo open security issues remain on this pull request. Scanned with Semgrep · TruffleHog · Trident review. View in Trident Fixed/addressed: 0 · PR risk: 0/10 |
Contributor
There was a problem hiding this comment.
No issues found across 3 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant User as User
participant Docs as Documentation Site
participant Core as @traceroot/core (llm-providers.ts)
participant Cloud as TraceRoot Cloud
participant BYOK as BYOK Provider
participant Anthropic as Anthropic API
Note over User,Anthropic: Model Selection Architecture
User->>Docs: View BYOK docs
Docs-->>User: List supported providers + models
Docs-->>User: Show BYOK selectable models including claude-fable-5
User->>Docs: View internal-models docs
Docs-->>User: Show hosted models + BYOK option
Docs-->>User: Clarify claude-fable-5 available via BYOK
Note over Core: Model Registry (SYSTEM_MODELS vs ADAPTER_MODELS)
Cloud->>Core: Load SYSTEM_MODELS (hosted models)
Core-->>Cloud: Hosted model list (excludes claude-fable-5)
Note over Core: Comment explains exclusion: cost + 30-day data retention
User->>Cloud: Request model via BYOK
Cloud->>Core: Lookup ADAPTER_MODELS.anthropic
Core-->>Cloud: claude-fable-5 available via BYOK
Cloud->>BYOK: Use user-provided API key
BYOK->>Anthropic: Call claude-fable-5 with key
Anthropic-->>BYOK: Response
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.
Summary
Closes #2050
Documents that
claude-fable-5is available and supported via BYOK across the documentation pages (docs/ai-agent/byok.mdxanddocs/integrations/internal-models.mdx).Also adds an internal code comment in
SYSTEM_MODELS(frontend/packages/core/src/llm-providers.ts) explaining thatclaude-fable-5is deliberately excluded from hosted system models due to cost ($10 / $50 per 1M tokens) and Anthropic's 30-day data retention requirement.Changes Made
docs/ai-agent/byok.mdx: Updated the Supported Providers section to explicitly mentionclaude-fable-5availability under BYOK.docs/integrations/internal-models.mdx: Added a note in the BYOK section clarifying that models likeclaude-fable-5are available via BYOK.frontend/packages/core/src/llm-providers.ts: Added an explanatory comment above the Anthropic section inSYSTEM_MODELSdetailing the rationale for its exclusion from hosted defaults.Validation
@traceroot/coreunit & doc synchronization tests passed:pnpm --filter @traceroot/core testSummary by cubic
Closes #2050. Makes
claude-fable-5selectable via BYOK by documenting it in the BYOK and internal-models pages, and adds a code comment inllm-providers.tsexplaining that it's excluded from hosted system models due to its $10/$50 per 1M token cost and Anthropic's 30-day data retention requirement.Written for commit aa266e2. Summary will update on new commits.