Optimization/v1#124
Open
Olympusxvn wants to merge 14 commits intoMystenLabs:devfrom
Open
Conversation
Server (Rust): - Add IVFFlat index for vector search (migration 004) - Add POST /api/remember/batch for batch memory storage - Add Redis-backed search cache (60s TTL) for recall endpoints - Add /embed-batch sidecar route for parallel text embedding - Add upload_batch() for parallel Walrus uploads - Increase DB pool to 20, add graceful SIGTERM shutdown SDK (TypeScript): - Add signedRequestWithRetry() with exponential backoff (429/network) - Add rememberBatch() method for batch operations - Add HttpClient wrapper with connection reuse (keep-alive) Monorepo: - Add Turborepo for cached builds with dependency graph - Add TypeScript composite mode for project references - Add GitHub Actions CI with pnpm + Rust caching Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Set FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true to avoid deprecation warnings and bump project node-version from 20 to 22 (current LTS). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Clone state before .with_state() consumes it, so shutdown handler can still access the DB pool for cleanup. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Allow dead_code on batch embedding/upload structs (available for future use) - Replace as_bytes().len() with len() on strings - Remove redundant .into_iter() in stream::iter() - Allow clippy::too_many_arguments on upload_blob - Allow clippy::type_complexity on batch insert tuple Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…e.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
… time Apps (chatbot, noter, researcher) run DB migrations during build which requires a live PostgreSQL connection. CI only validates the SDK. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
pnpm --filter triggers turbo's global task graph (^build resolves all workspace packages). Using turbo run build --filter= properly scopes execution to only the target package. Verified: Tasks 1/1. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Chatbot uses React 19.0.1 and Next.js 16 but had @types/react ^18, which lacks useActionState (introduced in React 19). Upgraded @types/react and @types/react-dom to ^19 to match the runtime. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
turbo is a devDependency, not globally installed in the runner. pnpm exec resolves the binary from node_modules/.bin. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ixes Added lesson MystenLabs#8 (turbo not in PATH — use pnpm exec) and CHANGELOG entries MystenLabs#14 (@types/react upgrade) and MystenLabs#15 (turbo --filter for SDK). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…dy supports --provenance Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Pushed 807eef4 to optimization/v1 , removed npm install -g npm@latest from both release workflows, updated CHANGELOG (entry #15) and lessons.md (entry #9).