Metadata-Version: 2.4
Name: runapi-openai-transcription
Version: 0.1.0
Summary: RunAPI OpenAI Transcription SDK for synchronous speech-to-text integration
Project-URL: Homepage, https://runapi.ai/models/openai-transcription
Project-URL: Documentation, https://runapi.ai/docs/resources/sdks
Project-URL: Source, https://github.com/runapi-ai/openai-transcription-sdk
Project-URL: Issues, https://github.com/runapi-ai/openai-transcription-sdk/issues
Project-URL: Changelog, https://github.com/runapi-ai/openai-transcription-sdk/blob/main/CHANGELOG.md
Project-URL: Release Notes, https://github.com/runapi-ai/openai-transcription-sdk/releases/tag/python%2Fv0.1.0
Author-email: RunAPI <contact@runapi.ai>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: api,audio,golang,java,maven,openai,python,ruby,runapi,runapi-ai,sdk,speech-to-text,transcription,typescript
Requires-Python: >=3.9
Requires-Dist: runapi-core>=0.4.0
Description-Content-Type: text/markdown

# RunAPI OpenAI Transcription SDK for Python

OpenAI-compatible audio transcription through RunAPI.

```python
from runapi.openai_transcription import OpenaiTranscriptionClient

client = OpenaiTranscriptionClient()
result = client.speech_to_text.run("audio.mp3")
```

The result is a dictionary for JSON response formats and a string for text or subtitle formats. See [OpenAI Transcription](https://runapi.ai/models/openai-transcription) for supported models, formats, and pricing.
