{"openapi":"3.1.0","info":{"title":"Personal Realtime Assistant Gateway","version":"1.0.0"},"paths":{"/api/voice/health":{"get":{"tags":["voice"],"summary":"Voice Health","operationId":"voice_health_api_voice_health_get","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/voice/session":{"post":{"tags":["voice"],"summary":"Voice Session","operationId":"voice_session_api_voice_session_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VoiceSessionRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/VoiceSessionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/voice/upload-image":{"post":{"tags":["voice"],"summary":"Voice Upload Image","operationId":"voice_upload_image_api_voice_upload_image_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_voice_upload_image_api_voice_upload_image_post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/VoiceUploadResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/voice/session/release":{"post":{"tags":["voice"],"summary":"Voice Session Release","operationId":"voice_session_release_api_voice_session_release_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VoiceSessionReleaseRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/devices":{"get":{"tags":["integration"],"summary":"List Devices","operationId":"list_devices_v1_devices_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/DeviceInfo"},"type":"array","title":"Response List Devices V1 Devices Get"}}}}},"security":[{"HTTPBearer":[]}]},"post":{"tags":["integration"],"summary":"Create Device","operationId":"create_device_v1_devices_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeviceRequest"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeviceCreated"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/v1/devices/{device_id}":{"delete":{"tags":["integration"],"summary":"Revoke Device","operationId":"revoke_device_v1_devices__device_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"device_id","in":"path","required":true,"schema":{"type":"string","title":"Device Id"}}],"responses":{"204":{"description":"Successful Response"},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/capabilities":{"get":{"tags":["integration"],"summary":"Capabilities","operationId":"capabilities_v1_capabilities_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}},"security":[{"HTTPBearer":[]}]}},"/v1/realtime/sessions":{"get":{"tags":["integration"],"summary":"List Sessions","operationId":"list_sessions_v1_realtime_sessions_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/SessionInfo"},"type":"array","title":"Response List Sessions V1 Realtime Sessions Get"}}}}},"security":[{"HTTPBearer":[]}]},"post":{"tags":["integration"],"summary":"Create Session","operationId":"create_session_v1_realtime_sessions_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SessionRequest"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SessionCreated"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/v1/realtime/sessions/{session_id}":{"get":{"tags":["integration"],"summary":"Get Session","operationId":"get_session_v1_realtime_sessions__session_id__get","security":[{"HTTPBearer":[]}],"parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SessionInfo"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["integration"],"summary":"Close Session","operationId":"close_session_v1_realtime_sessions__session_id__delete","security":[{"HTTPBearer":[]}],"parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"responses":{"204":{"description":"Successful Response"},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/realtime/sessions/{session_id}/images":{"post":{"tags":["integration"],"summary":"Upload Image","operationId":"upload_image_v1_realtime_sessions__session_id__images_post","security":[{"HTTPBearer":[]}],"parameters":[{"name":"session_id","in":"path","required":true,"schema":{"type":"string","title":"Session Id"}}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_upload_image_v1_realtime_sessions__session_id__images_post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageInfo"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/healthz":{"get":{"tags":["operations"],"summary":"Health","operationId":"health_healthz_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/":{"get":{"summary":"Index","operationId":"index__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/voice.html":{"get":{"summary":"Voice Page","operationId":"voice_page_voice_html_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}}},"components":{"schemas":{"Body_upload_image_v1_realtime_sessions__session_id__images_post":{"properties":{"image":{"type":"string","contentMediaType":"application/octet-stream","title":"Image"}},"type":"object","required":["image"],"title":"Body_upload_image_v1_realtime_sessions__session_id__images_post"},"Body_voice_upload_image_api_voice_upload_image_post":{"properties":{"access_token":{"type":"string","title":"Access Token","default":""},"proxy":{"type":"string","title":"Proxy","default":""},"voice_session_id":{"type":"string","title":"Voice Session Id","default":""},"image":{"type":"string","contentMediaType":"application/octet-stream","title":"Image"}},"type":"object","required":["image"],"title":"Body_voice_upload_image_api_voice_upload_image_post"},"DeviceCreated":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"created_at":{"type":"number","title":"Created At"},"revoked_at":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Revoked At"},"max_sessions":{"type":"integer","title":"Max Sessions"},"api_key":{"type":"string","title":"Api Key"}},"type":"object","required":["id","name","created_at","revoked_at","max_sessions","api_key"],"title":"DeviceCreated"},"DeviceInfo":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"created_at":{"type":"number","title":"Created At"},"revoked_at":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Revoked At"},"max_sessions":{"type":"integer","title":"Max Sessions"}},"type":"object","required":["id","name","created_at","revoked_at","max_sessions"],"title":"DeviceInfo"},"DeviceRequest":{"properties":{"name":{"type":"string","maxLength":80,"minLength":1,"title":"Name"},"max_sessions":{"type":"integer","maximum":8.0,"minimum":1.0,"title":"Max Sessions","default":1}},"additionalProperties":false,"type":"object","required":["name"],"title":"DeviceRequest"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"ImageInfo":{"properties":{"file_id":{"type":"string","title":"File Id"},"name":{"type":"string","title":"Name"},"mimeType":{"type":"string","title":"Mimetype"},"size":{"type":"integer","title":"Size"},"width":{"type":"integer","title":"Width"},"height":{"type":"integer","title":"Height"}},"type":"object","required":["file_id","name","mimeType","size","width","height"],"title":"ImageInfo"},"SessionCreated":{"properties":{"id":{"type":"string","title":"Id"},"device_id":{"type":"string","title":"Device Id"},"status":{"type":"string","title":"Status"},"created_at":{"type":"number","title":"Created At"},"expires_at":{"type":"number","title":"Expires At"},"answer_sdp":{"type":"string","title":"Answer Sdp"},"transport":{"type":"string","title":"Transport","default":"webrtc"},"data_channel":{"additionalProperties":true,"type":"object","title":"Data Channel"}},"type":"object","required":["id","device_id","status","created_at","expires_at","answer_sdp"],"title":"SessionCreated"},"SessionInfo":{"properties":{"id":{"type":"string","title":"Id"},"device_id":{"type":"string","title":"Device Id"},"status":{"type":"string","title":"Status"},"created_at":{"type":"number","title":"Created At"},"expires_at":{"type":"number","title":"Expires At"}},"type":"object","required":["id","device_id","status","created_at","expires_at"],"title":"SessionInfo"},"SessionRequest":{"properties":{"offer_sdp":{"type":"string","maxLength":65536,"minLength":20,"pattern":"^v=0","title":"Offer Sdp"},"voice":{"type":"string","enum":["breeze","cove","ember","fathom","glimmer","juniper","maple","orbit","vale"],"title":"Voice","default":"cove"},"language_code":{"type":"string","maxLength":24,"minLength":2,"pattern":"^[A-Za-z0-9-]+$","title":"Language Code","default":"zh-CN"},"ttl_seconds":{"type":"integer","maximum":21600.0,"minimum":60.0,"title":"Ttl Seconds","default":1800}},"additionalProperties":false,"type":"object","required":["offer_sdp"],"title":"SessionRequest"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"VoiceSessionReleaseRequest":{"properties":{"voice_session_id":{"type":"string","title":"Voice Session Id","default":""},"session_id":{"type":"string","title":"Session Id","default":""}},"type":"object","title":"VoiceSessionReleaseRequest"},"VoiceSessionRequest":{"properties":{"offer_sdp":{"type":"string","title":"Offer Sdp","description":"Browser WebRTC offer SDP"},"voice":{"type":"string","title":"Voice","default":"cove"},"voice_mode":{"type":"string","title":"Voice Mode","default":"wingman"},"language_code":{"type":"string","title":"Language Code","default":"auto"},"access_token":{"type":"string","title":"Access Token","default":""},"device_id":{"type":"string","title":"Device Id","default":""},"proxy":{"type":"string","title":"Proxy","default":""},"voice_session_id":{"type":"string","title":"Voice Session Id","default":""}},"type":"object","required":["offer_sdp"],"title":"VoiceSessionRequest"},"VoiceSessionResponse":{"properties":{"answer_sdp":{"type":"string","title":"Answer Sdp"},"voice":{"type":"string","title":"Voice","default":"cove"},"voice_mode":{"type":"string","title":"Voice Mode","default":"wingman"},"device_id":{"type":"string","title":"Device Id","default":""},"account_email":{"type":"string","title":"Account Email","default":""},"proxy_source":{"type":"string","title":"Proxy Source","default":""},"session_id":{"type":"string","title":"Session Id","default":""},"voice_session_id":{"type":"string","title":"Voice Session Id","default":""}},"type":"object","required":["answer_sdp"],"title":"VoiceSessionResponse"},"VoiceUploadResponse":{"properties":{"file_id":{"type":"string","title":"File Id","default":""},"name":{"type":"string","title":"Name","default":""},"mimeType":{"type":"string","title":"Mimetype","default":"image/png"},"size":{"type":"integer","title":"Size","default":0},"width":{"type":"integer","title":"Width","default":0},"height":{"type":"integer","title":"Height","default":0},"account_email":{"type":"string","title":"Account Email","default":""},"proxy_source":{"type":"string","title":"Proxy Source","default":""},"session_id":{"type":"string","title":"Session Id","default":""},"voice_session_id":{"type":"string","title":"Voice Session Id","default":""}},"type":"object","title":"VoiceUploadResponse"}},"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}}}}