Skip to main content

Embedding Models

Embedding models convert text and potentially other data types into high-dimensional vector representations that capture semantic meaning. These vectors are crucial for effective retrieval systems as they enable similarity matching between queries and your data sources.

Supported Embedding Models​

Teammately provides access to high-quality embedding models from OpenAI:

ModelDescriptionDimensionsContext WindowUse Case
text-embedding-3-largeOpenAI's most powerful embedding model30728191 tokensHigh-accuracy retrieval for complex or specialized content
text-embedding-3-smallEfficient embedding model with strong performance10248191 tokensGeneral-purpose retrieval with good performance-cost balance

Using Your Own Embedding Models​

You can also use your own embedding models through our platform connection system. This requires:

  1. Setting up a Platform Connection with your preferred model provider
  2. Configuring your retrieval pipeline to use the specified embedding model

This approach offers flexibility when your use case demands specific embedding models or when you have existing investments in other embedding technologies.

Embedding Model Selection Considerations​

When choosing an embedding model for your retrieval system, consider:

  • Quality vs. Speed: Larger models like text-embedding-3-large offer higher accuracy but may have slightly slower processing times
  • Cost Efficiency: Smaller models like text-embedding-3-small provide good performance at lower cost for large-scale deployments
  • Domain Specificity: Consider domain-specialized models for technical or industry-specific content

Integration with Retrieval Pipeline​

Teammately's Retrieval system integrates embedding models seamlessly within the RAG pipeline. The embedding process occurs automatically during document processing and when handling queries, ensuring optimal vector representations for accurate retrieval.

This integration is crucial for addressing the hallucination prevention capabilities that form the core of Teammately's approach to reliable, accurate AI systems.