Skip to content
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Download recording

live.sessions.download_recording(session_id) -> StringIO
GET/live/sessions/{session_id}/content

Get Live session content

ParametersExpand Collapse
session_id: String

The ID of the stored Live session to download. Use the session ID returned when the session started with storage enabled.

ReturnsExpand Collapse
StringIO

Download recording

require "openai"

openai = OpenAI::Client.new(api_key: "My API Key")

response = openai.live.sessions.download_recording("live_SQ")

puts(response)
Returns Examples