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
104 lines
3.0 KiB
TypeScript
104 lines
3.0 KiB
TypeScript
import type { PersonaListCasesParams, PersonaListCasesResponse } from '@/tools/persona/types'
|
|
import {
|
|
asResourceList,
|
|
buildPersonaHeaders,
|
|
CASE_OUTPUT_PROPERTIES,
|
|
getNextCursor,
|
|
mapCase,
|
|
PERSONA_API_BASE,
|
|
parsePersonaResponse,
|
|
} from '@/tools/persona/utils'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const personaListCasesTool: ToolConfig<PersonaListCasesParams, PersonaListCasesResponse> = {
|
|
id: 'persona_list_cases',
|
|
name: 'Persona List Cases',
|
|
description:
|
|
'List manual review cases, optionally filtered by status, account ID, or reference ID. Results are cursor-paginated.',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Persona API key',
|
|
},
|
|
status: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Filter by case status (e.g. Open, Resolved)',
|
|
},
|
|
accountId: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Filter by account ID (starts with act_)',
|
|
},
|
|
referenceId: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Filter by reference ID',
|
|
},
|
|
pageSize: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Number of cases to return per page (1-100, default 10)',
|
|
},
|
|
pageAfter: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Pagination cursor: return cases after this case ID',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params) => {
|
|
const searchParams = new URLSearchParams()
|
|
if (params.status?.trim()) searchParams.set('filter[status]', params.status.trim())
|
|
if (params.accountId?.trim()) searchParams.set('filter[account-id]', params.accountId.trim())
|
|
if (params.referenceId?.trim()) {
|
|
searchParams.set('filter[reference-id]', params.referenceId.trim())
|
|
}
|
|
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}/cases${query ? `?${query}` : ''}`
|
|
},
|
|
method: 'GET',
|
|
headers: (params) => buildPersonaHeaders(params.apiKey),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const data = await parsePersonaResponse(response)
|
|
const cases = asResourceList(data.data)
|
|
return {
|
|
success: true,
|
|
output: {
|
|
cases: cases.map(mapCase),
|
|
nextCursor: getNextCursor(data.links),
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
cases: {
|
|
type: 'array',
|
|
description: 'Cases matching the filters',
|
|
items: {
|
|
type: 'object',
|
|
properties: CASE_OUTPUT_PROPERTIES,
|
|
},
|
|
},
|
|
nextCursor: {
|
|
type: 'string',
|
|
description: 'Cursor for the next page (pass as pageAfter), or null on the last page',
|
|
optional: true,
|
|
},
|
|
},
|
|
}
|