docs(core): mark LiteLLM provider experimental#899
Conversation
…exing Add an experimental / advanced-users-only banner to the LiteLLM provider page and the semantic-search provider reference. Capture two operational findings from live OpenAI + Cohere smoke testing: - semantic_embedding_sync_batch_size (default 2) — not batch_size — is the throughput lever for remote providers; raise both before reindexing a real corpus, or a full reindex runs tens of seconds per note. - switching embedding dimensions requires recreating the vector table via `bm reset --reindex` (a plain reindex raises "Embedding dimension mismatch"); use BASIC_MEMORY_CONFIG_DIR to trial a provider without touching the main index. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: phernandez <paul@basicmachines.co>
|
Claude finished @phernandez's task in 1m 18s —— View job PR Review:
|
Summary
Marks the LiteLLM embedding provider (#809) as experimental / advanced-users-only in the docs, and documents two operational findings surfaced during a live OpenAI + Cohere smoke test against a real notes corpus.
What changed
docs/litellm-provider.mdsemantic_embedding_sync_batch_size(default2), notsemantic_embedding_batch_size, is the throughput lever — raise both before reindexing a real corpus, or a full reindex runs tens of seconds per note.bm reset --reindex(a plainbm reindexraisesEmbedding dimension mismatch);BASIC_MEMORY_CONFIG_DIRlets you trial a provider in isolation.docs/semantic-search.md(experimental — advanced users only)in the provider config reference table.Validation
Findings are grounded in a live smoke test (isolated
BASIC_MEMORY_CONFIG_DIRsandboxes, real keys):text-embedding-3-small—float[1536]table, hybrid search returned the exact-right specs at score 1.0, vector scores non-collapsed.embed-english-v3.0—float[1024]table, asymmetricsearch_document/search_queryinput types auto-applied (confirmed in runtime log), 16/16 entities embedded, hybrid + vector sane.Docs-only change; no code touched.
🤖 Generated with Claude Code