cuuupid
/
whisper-webrtc
Talk to an AI "friend" with ultra low latency over WebRTC
- Public
- 3 runs
Run cuuupid/whisper-webrtc with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
ws_url |
string
|
LiveKit Server WS URL (wss://...)
|
|
api_key |
string
|
LiveKit API Key
|
|
api_secret |
string
|
LiveKit API Secret
|
|
room |
string
|
my-first-room
|
LiveKit Room Name
|
{
"type": "object",
"title": "Input",
"required": [
"ws_url",
"api_key",
"api_secret"
],
"properties": {
"room": {
"type": "string",
"title": "Room",
"default": "my-first-room",
"x-order": 3,
"description": "LiveKit Room Name"
},
"ws_url": {
"type": "string",
"title": "Ws Url",
"pattern": "^wss://.*$",
"x-order": 0,
"description": "LiveKit Server WS URL (wss://...)"
},
"api_key": {
"type": "string",
"title": "Api Key",
"x-order": 1,
"description": "LiveKit API Key"
},
"api_secret": {
"type": "string",
"title": "Api Secret",
"format": "password",
"x-order": 2,
"description": "LiveKit API Secret",
"x-cog-secret": true
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"title": "Output"
}