d25d482dc2
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
import type {
|
|
PersonaListInquiryTemplatesParams,
|
|
PersonaListInquiryTemplatesResponse,
|
|
} from '@/tools/persona/types'
|
|
import {
|
|
asResourceList,
|
|
buildPersonaHeaders,
|
|
getNextCursor,
|
|
INQUIRY_TEMPLATE_OUTPUT_PROPERTIES,
|
|
mapInquiryTemplate,
|
|
PERSONA_API_BASE,
|
|
parsePersonaResponse,
|
|
} from '@/tools/persona/utils'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const personaListInquiryTemplatesTool: ToolConfig<
|
|
PersonaListInquiryTemplatesParams,
|
|
PersonaListInquiryTemplatesResponse
|
|
> = {
|
|
id: 'persona_list_inquiry_templates',
|
|
name: 'Persona List Inquiry Templates',
|
|
description:
|
|
'List the inquiry templates in your Persona organization, to discover template IDs for creating inquiries. Results are cursor-paginated.',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Persona API key',
|
|
},
|
|
pageSize: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Number of templates to return per page (1-100, default 10)',
|
|
},
|
|
pageAfter: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Pagination cursor: return templates after this template ID',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params) => {
|
|
const searchParams = new URLSearchParams()
|
|
if (params.pageSize) searchParams.set('page[size]', String(params.pageSize))
|
|
if (params.pageAfter?.trim()) searchParams.set('page[after]', params.pageAfter.trim())
|
|
const query = searchParams.toString()
|
|
return `${PERSONA_API_BASE}/inquiry-templates${query ? `?${query}` : ''}`
|
|
},
|
|
method: 'GET',
|
|
headers: (params) => buildPersonaHeaders(params.apiKey),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const data = await parsePersonaResponse(response)
|
|
const templates = asResourceList(data.data)
|
|
return {
|
|
success: true,
|
|
output: {
|
|
inquiryTemplates: templates.map(mapInquiryTemplate),
|
|
nextCursor: getNextCursor(data.links),
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
inquiryTemplates: {
|
|
type: 'array',
|
|
description: 'Inquiry templates in the organization',
|
|
items: {
|
|
type: 'object',
|
|
properties: INQUIRY_TEMPLATE_OUTPUT_PROPERTIES,
|
|
},
|
|
},
|
|
nextCursor: {
|
|
type: 'string',
|
|
description: 'Cursor for the next page (pass as pageAfter), or null on the last page',
|
|
optional: true,
|
|
},
|
|
},
|
|
}
|