Files
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

152 lines
4.3 KiB
TypeScript

import type { LumaCreateEventParams, LumaCreateEventResponse } from '@/tools/luma/types'
import {
LUMA_EVENT_OUTPUT_PROPERTIES,
LUMA_HOST_OUTPUT_PROPERTIES,
lumaEventStub,
} from '@/tools/luma/types'
import type { ToolConfig } from '@/tools/types'
export const createEventTool: ToolConfig<LumaCreateEventParams, LumaCreateEventResponse> = {
id: 'luma_create_event',
name: 'Luma Create Event',
description:
'Create a new event on Luma with a name, start time, timezone, and optional details like description, location, and visibility.',
version: '1.0.0',
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Luma API key',
},
name: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Event name/title',
},
startAt: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Event start time in ISO 8601 format (e.g., 2025-03-15T18:00:00Z)',
},
timezone: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'IANA timezone (e.g., America/New_York, Europe/London)',
},
endAt: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Event end time in ISO 8601 format (e.g., 2025-03-15T20:00:00Z)',
},
durationInterval: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description:
'Event duration as ISO 8601 interval (e.g., PT2H for 2 hours, PT30M for 30 minutes). Used if endAt is not provided.',
},
descriptionMd: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Event description in Markdown format',
},
meetingUrl: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Virtual meeting URL for online events (e.g., Zoom, Google Meet link)',
},
visibility: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Event visibility: public, members-only, or private (defaults to public)',
},
coverUrl: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Cover image URL (must be a Luma CDN URL from images.lumacdn.com)',
},
},
request: {
url: 'https://public-api.luma.com/v1/event/create',
method: 'POST',
headers: (params) => ({
'x-luma-api-key': params.apiKey,
'Content-Type': 'application/json',
Accept: 'application/json',
}),
body: (params) => {
const body: Record<string, unknown> = {
name: params.name,
start_at: params.startAt,
timezone: params.timezone,
}
if (params.endAt) body.end_at = params.endAt
if (params.durationInterval) body.duration_interval = params.durationInterval
if (params.descriptionMd) body.description_md = params.descriptionMd
if (params.meetingUrl) body.meeting_url = params.meetingUrl
if (params.visibility) body.visibility = params.visibility
if (params.coverUrl) body.cover_url = params.coverUrl
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
if (!response.ok) {
throw new Error(data.message || data.error || 'Failed to create event')
}
const eventId: string | null = data.id ?? data.api_id ?? null
return {
success: true,
output: {
event: lumaEventStub(eventId),
hosts: [],
},
}
},
postProcess: async (result, params, executeTool) => {
const eventId = result.success ? result.output.event.id : null
if (!eventId) return result
const full = await executeTool('luma_get_event', {
apiKey: params.apiKey,
eventId,
})
if (full.success && full.output?.event) {
return full as LumaCreateEventResponse
}
return result
},
outputs: {
event: {
type: 'object',
description: 'Created event details',
properties: LUMA_EVENT_OUTPUT_PROPERTIES,
},
hosts: {
type: 'array',
description: 'Event hosts',
items: {
type: 'object',
properties: LUMA_HOST_OUTPUT_PROPERTIES,
},
},
},
}