Files
WeHub Mirror 6bf8bebf51
CI / Test and Build (push) Failing after 1s
CI / Migrate Dev DB (push) Has been skipped
CI / Migrate DB (push) Has been skipped
CodeQL / Analyze actions (push) Has been cancelled
CodeQL / Analyze javascript-typescript (push) Has been cancelled
CI / Detect Version (push) Has been cancelled
CI / Detect Desktop Changes (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/cron.Dockerfile, ubuntu-latest, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build AMD64 (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build AMD64 (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/cron.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/cron) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/db.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/pii.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-4vcpu-ubuntu-2404-arm, ./docker/realtime.Dockerfile, ubuntu-24.04-arm, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (blacksmith-8vcpu-ubuntu-2404-arm, ./docker/app.Dockerfile, linux-arm64-8-core, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
Helm Chart / Lint, test, and validate chart (push) Has been cancelled
Helm Chart / Chart version bumped (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Build Dev ECR (blacksmith-8vcpu-ubuntu-2404, ./docker/app.Dockerfile, ECR_APP, linux-x64-8-core) (push) Has been cancelled
CI / Promote Images (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/cron) (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 / Build Dev ECR (blacksmith-2vcpu-ubuntu-2404, ./docker/db.Dockerfile, ECR_MIGRATIONS, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/pii.Dockerfile, ECR_PII, ubuntu-latest) (push) Has been cancelled
CI / Build Dev ECR (blacksmith-4vcpu-ubuntu-2404, ./docker/realtime.Dockerfile, ECR_REALTIME, ubuntu-latest) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Check Desktop Signing Secrets (push) Has been cancelled
CI / Desktop Release (push) Has been cancelled
CI / Create Desktop Prerelease (push) Has been cancelled
CI / Desktop Prerelease Build (push) Has been cancelled
CI / Publish Desktop Prerelease (push) Has been cancelled
CI / Prune Desktop Prereleases (push) Has been cancelled
Helm Chart / Install on kind and run helm test (push) Has been cancelled
WeHub snapshot of cb28d14c6f2c081de7a0d8729a8c816c9adef67a
2026-08-10 11:17:50 +08:00

293 lines
8.6 KiB
TypeScript

import { createLogger } from '@sim/logger'
import { getErrorMessage } from '@sim/utils/errors'
import { sleep } from '@sim/utils/helpers'
import { DEFAULT_EXECUTION_TIMEOUT_MS } from '@/lib/core/execution-limits'
import type { ExaAgentParams, ExaAgentResponse } from '@/tools/exa/types'
import { parseJsonSchema, requireCostTotal } from '@/tools/exa/utils'
import type { ToolConfig } from '@/tools/types'
const logger = createLogger('ExaAgentTool')
const POLL_INTERVAL_MS = 3000
const MAX_POLL_TIME_MS = DEFAULT_EXECUTION_TIMEOUT_MS
const TERMINAL_STATUSES = new Set(['completed', 'failed', 'cancelled'])
export const agentTool: ToolConfig<ExaAgentParams, ExaAgentResponse> = {
id: 'exa_agent',
name: 'Exa Agent',
description:
'Run a deep research task with Exa Agent. Handles multi-step list building, enrichment, and research, returning a written answer with field-level citations and optional structured output.',
version: '1.0.0',
params: {
query: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The research question or instructions for the agent',
},
effort: {
type: 'string',
required: false,
visibility: 'user-only',
description:
'Cost and depth tradeoff: minimal, low, medium, high, xhigh, or auto (default: auto)',
},
outputSchema: {
type: 'json',
required: false,
visibility: 'user-or-llm',
description:
'JSON Schema describing the structured result to return. Returned in the structured output.',
},
systemPrompt: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Additional guidance for how the agent should behave or format its answer',
},
previousRunId: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'ID of a completed agent run to continue from, for follow-up questions',
},
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Exa AI API Key',
},
},
hosting: {
envKeyPrefix: 'EXA_API_KEY',
apiKeyParam: 'apiKey',
byokProviderId: 'exa',
pricing: {
type: 'custom',
getCost: (_params, output) => {
const cost = requireCostTotal(output, 'agent')
return { cost, metadata: { costDollars: output.__costDollars } }
},
},
rateLimit: {
mode: 'per_request',
requestsPerMinute: 5,
},
},
request: {
modelInput: {
mode: 'project',
select: (params) => ({
query: params.query,
outputSchema: params.outputSchema,
systemPrompt: params.systemPrompt,
}),
},
url: 'https://api.exa.ai/agent/runs',
method: 'POST',
headers: (params) => ({
'Content-Type': 'application/json',
'x-api-key': params.apiKey,
}),
body: (params) => {
const body: Record<string, any> = {
query: params.query,
}
if (params.effort) body.effort = params.effort
if (params.systemPrompt) body.systemPrompt = params.systemPrompt
if (params.previousRunId) body.previousRunId = params.previousRunId
const outputSchema = parseJsonSchema(params.outputSchema, 'outputSchema')
if (outputSchema) body.outputSchema = outputSchema
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
return {
success: true,
output: {
runId: data.id,
status: data.status,
stopReason: data.stopReason,
text: data.output?.text ?? '',
structured: data.output?.structured ?? undefined,
grounding: data.output?.grounding,
__costDollars: data.costDollars,
},
}
},
/**
* Agent runs are asynchronous: the create call returns immediately with a
* `queued` or `running` status, so poll the run until it reaches a terminal
* status before handing results back to the workflow.
*/
postProcess: async (result, params) => {
if (!result.success) return result
const runId = result.output.runId
if (!runId) {
return { ...result, success: false, error: 'Exa agent run did not return a run ID' }
}
/** A run can already be terminal on creation, including a failed one. */
if (TERMINAL_STATUSES.has(result.output.status ?? '')) {
return settle(result)
}
logger.info(`Exa agent run ${runId} created, polling for completion`)
let elapsedTime = 0
while (elapsedTime < MAX_POLL_TIME_MS) {
await sleep(POLL_INTERVAL_MS)
elapsedTime += POLL_INTERVAL_MS
try {
const statusResponse = await fetch(`https://api.exa.ai/agent/runs/${runId}`, {
method: 'GET',
headers: {
'x-api-key': params.apiKey,
'Content-Type': 'application/json',
},
})
if (!statusResponse.ok) {
throw new Error(`Failed to get agent run status: ${statusResponse.statusText}`)
}
const runData = await statusResponse.json()
if (!TERMINAL_STATUSES.has(runData.status)) continue
result.output = {
runId,
status: runData.status,
stopReason: runData.stopReason,
text: runData.output?.text ?? '',
structured: runData.output?.structured ?? undefined,
grounding: runData.output?.grounding,
__costDollars: runData.costDollars,
}
return settle(result)
} catch (error) {
logger.error('Error polling Exa agent run status', {
message: getErrorMessage(error, 'Unknown error'),
runId,
})
return {
...result,
success: false,
error: `Error polling Exa agent run status: ${getErrorMessage(error, 'Unknown error')}`,
}
}
}
logger.warn(
`Exa agent run ${runId} did not complete within the maximum polling time (${MAX_POLL_TIME_MS / 1000}s)`
)
return {
...result,
success: false,
error: `Exa agent run did not complete within the maximum polling time (${MAX_POLL_TIME_MS / 1000}s)`,
}
},
outputs: {
runId: {
type: 'string',
description: 'Identifier of the agent run, reusable as previousRunId',
},
status: { type: 'string', description: 'Final status of the agent run' },
stopReason: {
type: 'string',
description: 'Why the agent stopped, such as schema_satisfied',
nullable: true,
},
text: { type: 'string', description: 'The written answer produced by the agent' },
structured: {
type: 'json',
description: 'Structured result matching outputSchema, when one was supplied',
optional: true,
},
grounding: {
type: 'json',
description: 'Field-level citations backing the agent output',
optional: true,
},
research: {
type: 'array',
description:
'The agent answer in the shape the retired Research operation emitted, so workflows that reference it keep resolving',
items: {
type: 'object',
properties: {
title: { type: 'string' },
url: { type: 'string' },
summary: { type: 'string' },
text: { type: 'string' },
score: { type: 'number' },
},
},
},
},
}
/**
* Resolves a terminal run into a tool result.
*
* A run can reach a terminal status either on creation or while polling, and a
* `failed` or `cancelled` run must surface as a tool failure from both paths —
* routing them through here keeps the two in step.
*/
function settle(result: ExaAgentResponse): ExaAgentResponse {
const { status, stopReason } = result.output
if (status !== 'completed') {
return {
...result,
success: false,
error: `Exa agent run ${status}${stopReason ? `: ${stopReason}` : ''}`,
}
}
/**
* A run that satisfies its schema can finish with an empty `text` body, so
* fall back to the structured payload rather than returning a blank answer.
*/
if (!result.output.text && result.output.structured !== undefined) {
result.output.text = JSON.stringify(result.output.structured, null, 2)
}
result.output.research = buildLegacyResearchOutput(result.output.text)
return result
}
/**
* Mirrors the one-element array the retired Research operation returned. Saved
* workflows routed here from `exa_research` reference `research[0].text` and
* `research[0].summary`, which would otherwise resolve to undefined.
*/
function buildLegacyResearchOutput(text: string) {
return [
{
title: 'Research Complete',
url: '',
summary: text,
text,
score: 1,
},
]
}