Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update website documentation to support the ability for ollama to do embedding #15

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/docs/concepts/prompting-embedding.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

</small>
2 changes: 1 addition & 1 deletion src/content/docs/concepts/transforming-and-enriching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 | |
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/getting-started/features.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For all our integrations and tools we aim to provide sane defaults to get you st
| AWS Bedrock | <Icon name="approve-check-circle" /> | | aws-bedrock | Mistral and Titan models supported |
| groq | <Icon name="approve-check-circle" /> | | groq | All major models supported, uses async_openai with Groq's openai schema under the hood |
| FastEmbed | | <Icon name="approve-check-circle" /> | fastembed | Uses fastembed.rs under the hood, dense and sparse embedding models supported |
| Ollama | <Icon name="approve-check-circle" /> | | ollama | Ollama support |
| Ollama | <Icon name="approve-check-circle" /> | <Icon name="approve-check-circle" /> | ollama | Ollama support |

## Additional integrations

Expand Down