docs: fix AI agents guide examples and raise the runnable-example timeout#1035
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1035 +/- ##
==========================================
+ Coverage 91.75% 91.78% +0.03%
==========================================
Files 50 50
Lines 3215 3215
==========================================
+ Hits 2950 2951 +1
+ Misses 265 264 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Pijukatel
approved these changes
Jul 9, 2026
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.
Follow-up fixes to the AI agents guide (#995) after testing the five framework examples on the platform.
CrewAI
The researcher agent answered from the model's own knowledge instead of scraping the page, so it returned JavaScript Crawlee crawlers (
CheerioCrawler,PuppeteerCrawler, ...) that don't exist in Python Crawlee. Itsgoal/backstoryand the research task now require theweb_browsertool and answering only from the fetched Markdown, so the output is grounded in the actual Python Crawlee docs page.LlamaIndex
It's the heaviest example. It downloads a local HuggingFace embedding model and uses the browser-based Website Content Crawler, so a cold start exceeded the 180 s the docs "Run" button allotted and got aborted mid-index. Raised the docs "Run" button timeout to 360 s for all runnable examples (
website/roa-loader).Both
docs/and thewebsite/versioned_docs/version-3.4/mirror are updated identically.