fix(ask-ai): correct eval Ask-AI domain and claude-code Opus model id#57
fix(ask-ai): correct eval Ask-AI domain and claude-code Opus model id#57tristantelleb wants to merge 4 commits into
Conversation
Two fixes surfaced while verifying Mintlify Ask AI against the live docs: - tests/evals/mintlify_client.py: the Ask-AI assistant domain defaulted to "docs.edenai.co", which 404s. The Mintlify project domain is "edenai" — the eval suite could not reach Ask AI until this was corrected. - v3/integrations/claude-code.mdx: replaced the invalid model id "anthropic/claude-opus-4.7" (a dotted id not present in /v3/models) and the stale "anthropic/claude-opus-4-7" with "anthropic/claude-opus-4-8" (current, valid, hyphenated) so every Opus reference on the page is consistent. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
|
Warning Review limit reached
Next review available in: 57 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
Two small fixes surfaced while verifying that Mintlify Ask AI reflects the latest docs.
1. Eval pipeline couldn't reach Ask AI (
tests/evals/mintlify_client.py)ask_mintlify()defaulteddomain="docs.edenai.co", which the Mintlify assistant API returns 404 for. The project's actual domain isedenai(verified: onlyedenaireturns 200;docs.edenai.co,edenai.mintlify.app,www.edenai.coall 404). Without this,pytest tests/evals/fails for everyone on the first request.2. Invalid / stale Opus model id (
v3/integrations/claude-code.mdx)The page used
anthropic/claude-opus-4.7— a dotted id that isn't in the/v3/modelscatalog (Eden AI uses hyphens), so a request copied from the docs would fail with "model not found". It also mixed in a stale hyphenatedanthropic/claude-opus-4-7. Both are nowanthropic/claude-opus-4-8(current, valid), making every Opus reference on the page consistent.Verification
edenai.anthropic/claude-opus-4-8confirmed present inGET https://api.edenai.run/v3/models.🤖 Generated with Claude Code