ZelaxyDocs
Tool Integrations
Tool

OpenAI

Access OpenAI specialized APIs — embeddings, moderation, TTS, STT

OpenAI

Access OpenAI's specialized APIs beyond chat — generate embeddings, run content moderation, convert text-to-speech, and transcribe audio. These complement the Agent block which handles chat/completion.

Overview

PropertyValue
Typeopenai
CategoryTool — AI & ML
AuthAPI Key

Operations

OperationDescription
EmbeddingsGenerate vector embeddings for text
ModerationCheck content for policy violations
Text-to-SpeechConvert text to audio
Speech-to-TextTranscribe audio to text

Configuration

SettingTypeDescription
API KeyPasswordOpenAI API key
OperationDropdownSelect operation type
InputLong textText to process
ModelDropdownOperation-specific model
VoiceDropdownTTS voice (alloy, echo, fable, etc.)

Outputs

FieldTypeDescription
contentstringProcessing result
embeddingjsonVector embedding array
moderationjsonModeration flags and scores

Example: Audio Content Pipeline

Workflow:

[Starter: Topic] → [Agent: Write Script] → [OpenAI: TTS] → [Response: Audio URL]

Agent writes a podcast script, OpenAI TTS converts it to speech, user receives playable audio.

Tips

  • Embeddings are for vector search — use with Pinecone/Qdrant for custom RAG
  • Moderation is free — use it as a fast content safety filter
  • For chat/completion — use the Agent block, not this tool