Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions docs/examples/mobile/org.mobile.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"$schema": "./org.mobile.schema.json",
"app": {
"slug": "AxisLabs crewcmd",
"displayName": "AxisLabs CrewCmd",
"iosBundleId": "com.axislabs.crewcmd",
"androidApplicationId": "com.axislabs.crewcmd"
},
"branding": {
"orgName": "Axis Labs",
"profileId": "axislabs-prod",
"primaryColor": "#0A7B83",
"secondaryColor": "#F7B500",
"iconPath": "./branding/icon.svg",
"splashPath": "./branding/splash.svg"
},
"distribution": {
"channel": "private-enterprise",
"ios": {
"teamName": "Axis Labs",
"distributionNote": "Use Apple Business Manager Custom App or MDM for employee-only rollout."
},
"android": {
"distributionNote": "Use Managed Google Play private app or MDM-managed APK deployment."
},
"managedMetadataLabel": "Axis Labs CrewCmd Mobile"
},
"server": {
"defaultBaseUrl": "https://taim4.tail82c33.ts.net:3000",
"bootstrapMode": "qr-or-url",
"lockToSingleServer": true,
"tailscaleRequired": true
},
"deepLinks": {
"scheme": "crewcmd",
"host": "mobile"
},
"managedConfig": {
"allowManualServerOverride": false,
"supportEmail": "hello@axislabs.dev",
"environmentLabel": "Production"
}
}
1 change: 1 addition & 0 deletions src/app/api/runtimes/[id]/talk/realtime/session/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export async function POST(

const client = await getGatewayClientForRuntime(runtime.id);
const session = await client.realtimeTalkSession({
transport: "gateway-relay",
sessionKey: readOptionalString(body.sessionKey),
provider: readOptionalString(body.provider),
model: readOptionalString(body.model),
Expand Down
Loading