diff --git a/src/content/docs/concepts/prompting-embedding.md b/src/content/docs/concepts/prompting-embedding.md index b756f34..fa1698d 100644 --- a/src/content/docs/concepts/prompting-embedding.md +++ b/src/content/docs/concepts/prompting-embedding.md @@ -40,8 +40,8 @@ Or in human language: "Given a list of things to Embed, give me embeddings". The | OpenAI | Implements both SimplePrompt and Embed via `async_openai` | openai | | FastEmbed | Implements Embed via `fastembed-rs`, including many dense and sparse models | fastembed | | Titan (Bedrock) | AWS Titan via Bedrock | aws-bedrock | -| Anthropic models (Bedrock) | Recen Anthropic models via Bedrock | aws-bedrock | +| Anthropic models (Bedrock) | Recent Anthropic models via Bedrock | aws-bedrock | | Groq | Implements `SimplePrompt` | groq | -| ollama | Local models via ollama.rs implementing SimplePrompt | ollama | +| ollama | Implements both SimplePrompt and Embed via `ollama-rs`, using local models | ollama | diff --git a/src/content/docs/concepts/transforming-and-enriching.mdx b/src/content/docs/concepts/transforming-and-enriching.mdx index fa5f11f..6a1984d 100644 --- a/src/content/docs/concepts/transforming-and-enriching.mdx +++ b/src/content/docs/concepts/transforming-and-enriching.mdx @@ -76,7 +76,7 @@ pipeline.then_in_batch(10, |mut nodes| { | Name | Description | Feature Flag | | ------------------------- | -------------------------------------------------------------- | ------------ | -| Embed | Generic embedding transformer, requires an LLM | | +| Embed | Generic embedding transformer, requires an embedding model | | | MetadataKeywords | Uses an LLM to extract keywords and add as metadata | | | MetadataQACode | Uses an LLM to generate questions and answers for Code | | | MetadataQAText | Uses an LLM to generate questions and answers for Text | | diff --git a/src/content/docs/getting-started/features.mdx b/src/content/docs/getting-started/features.mdx index 80262b1..57ecd53 100644 --- a/src/content/docs/getting-started/features.mdx +++ b/src/content/docs/getting-started/features.mdx @@ -38,7 +38,7 @@ For all our integrations and tools we aim to provide sane defaults to get you st | AWS Bedrock | | | aws-bedrock | Mistral and Titan models supported | | groq | | | groq | All major models supported, uses async_openai with Groq's openai schema under the hood | | FastEmbed | | | fastembed | Uses fastembed.rs under the hood, dense and sparse embedding models supported | -| Ollama | | | ollama | Ollama support | +| Ollama | | | ollama | Ollama support | ## Additional integrations