feat: add Zaps.ai as a first-class provider#88
Open
argosautomation wants to merge 1 commit intolfnovo:mainfrom
Open
feat: add Zaps.ai as a first-class provider#88argosautomation wants to merge 1 commit intolfnovo:mainfrom
argosautomation wants to merge 1 commit intolfnovo:mainfrom
Conversation
Zaps.ai is a privacy gateway that routes AI requests through a PII redaction layer before forwarding to upstream providers. Changes: - Add ZapsLanguageModel (LLM provider) extending OpenAILanguageModel - Add ZapsEmbeddingModel extending OpenAIEmbeddingModel - Register both in AIFactory._provider_modules - Add get_zaps_models() to model_discovery Config: ZAPS_API_KEY env var, default base_url https://api.zaps.ai/v1
Owner
|
Is there a reason why this cannot be done through the openai compatible provider instead? |
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.
Summary
Adds Zaps.ai as a first-class provider in Esperanto, covering Language Models and Embeddings.
Zaps.ai is a privacy gateway — requests are routed through Zaps for automatic PII redaction before being forwarded to the upstream provider (OpenAI, Anthropic, etc.). It exposes an OpenAI-compatible API.
Changes
New Files
src/esperanto/providers/llm/zaps.py—ZapsLanguageModel(extendsOpenAILanguageModel)src/esperanto/providers/embedding/zaps.py—ZapsEmbeddingModel(extendsOpenAIEmbeddingModel)Modified Files
src/esperanto/factory.py— Registeredzapsinlanguageandembeddingprovider modulessrc/esperanto/model_discovery.py— Addedget_zaps_models()discovery function + registry entryConfiguration
ZAPS_API_KEYZAPS_BASE_URLhttps://api.zaps.ai/v1Usage
Testing
All factory registration and provider instantiation tests pass locally.