Not yet available
| Feature | Status |
|---|
| Text-to-Speech (TTS) | Not yet supported |
| File upload / management | Not yet supported |
If you try a method that isn't available, the SDK returns a 501 status:
import OpenAI from 'openai';
try {
await rb.openai().audio.speech.create({ ... });
} catch (err) {
if (err instanceof OpenAI.APIError && err.status === 501) {
// TTS is not yet available
}
}
What's available now
| You can | Using |
|---|
| Chat, embeddings, responses | rb.openai().* |
| Anthropic messages | rb.anthropic().* |
| Model search and details | rb.models() / rb.modelEndpoint() |
| Document reranking | rb.rerank() |
| Image generation | rb.image() |
See also
SDK overview · Version compatibility