fix(docs): update broken and redirected documentation links#2081
fix(docs): update broken and redirected documentation links#2081nuthalapativarun wants to merge 3 commits into
Conversation
Haleshot
left a comment
There was a problem hiding this comment.
Thanks for fixing these! I was going to fix these specific links when I got notified from the link checker CI.
The v1 branch no longer exists since v1 became the main branch, causing 404s in the link checker.
| ## Attributes | ||
|
|
||
| Row attributes are schemaless; turbopuffer infers attribute types from the values you write. Supported scalar types include `string`, `int`, `uint`, `float`, `bool`, `uuid`, and `datetime`, plus their array variants. See [Turbopuffer's schema reference](https://turbopuffer.com/docs/schema) for the full list. | ||
| Row attributes are schemaless; turbopuffer infers attribute types from the values you write. Supported scalar types include `string`, `int`, `uint`, `float`, `bool`, `uuid`, and `datetime`, plus their array variants. See [Turbopuffer's schema reference](https://turbopuffer.com/docs/write) for the full list. |
There was a problem hiding this comment.
There was a problem hiding this comment.
Done — added the #schema anchor.
| slug: multi-codebase-summarization | ||
| image: https://cocoindex.io/blobs/docs-v1/img/examples/multi-codebase-summarization/cover.png | ||
| tags: [llm, structured-data-extraction] | ||
| last_reviewed: 2026-04-20 |
There was a problem hiding this comment.
there's a separate file for reviewed time meta
There was a problem hiding this comment.
Removed — reverted this whole file back to the version on main, only keeping the instructor link fix.
|
|
||
| ```bash | ||
| pip install 'cocoindex>=1.0.2' instructor litellm pydantic | ||
| pip install 'cocoindex>=1.0.0' instructor litellm pydantic |
There was a problem hiding this comment.
Reverted, thanks for catching this.
| @@ -141,20 +136,19 @@ async def app_main( | |||
| continue | |||
| project_name = entry.name | |||
|
|
|||
| files = [ | |||
| f | |||
| async for f in localfs.walk_dir( | |||
| files = list( | |||
| localfs.walk_dir( | |||
| entry, | |||
| recursive=True, | |||
| path_matcher=PatternFilePathMatcher( | |||
| included_patterns=["**/*.py"], | |||
| excluded_patterns=["**/.*", "**/__pycache__"], | |||
| included_patterns=["*.py"], | |||
| excluded_patterns=[".*", "__pycache__"], | |||
| ), | |||
| ) | |||
| ] | |||
| ) | |||
|
|
|||
| if files: | |||
| await coco.mount( | |||
| coco.mount( | |||
There was a problem hiding this comment.
All these changes are not right. Seems they're from an older version?
The left side is consistent with the current version:
cocoindex/examples/multi_codebase_summarization/main.py
Lines 209 to 248 in 4bee454
Similar for all changes below.
There was a problem hiding this comment.
You're right, this was an unintended regression that got pulled in. Reverted the whole file to main and re-applied only the instructor link fix this PR is about.
| ```python title="main.py" | ||
| @coco.fn | ||
| async def app_main( | ||
| @coco.function |
There was a problem hiding this comment.
Fixed by reverting the file to main, which restores @coco.fn.
- Add #schema anchor to turbopuffer write docs link - Revert unrelated regression in multi-codebase-summarization.md (accidentally introduced via merge), keep only the instructor link fix Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Summary
serialization.mdx(moved fromjcristharif.com/msgspec/tomsgspec.dev)turbopuffer.mdx(/docs/schema→/docs/write)multi-codebase-summarization.md(jxnl/instructor→567-labs/instructor)Test Plan
🤖 Generated with Claude Code