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
95 lines
2.9 KiB
TypeScript
95 lines
2.9 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { getErrorMessage } from '@sim/utils/errors'
|
|
import { type NextRequest, NextResponse } from 'next/server'
|
|
import { copilotTrainingDataContract } from '@/lib/api/contracts/copilot'
|
|
import { parseRequest, validationErrorResponse } from '@/lib/api/server'
|
|
import { checkInternalApiKey, createUnauthorizedResponse } from '@/lib/copilot/request/http'
|
|
import { env } from '@/lib/core/config/env'
|
|
import { withRouteHandler } from '@/lib/core/utils/with-route-handler'
|
|
|
|
const logger = createLogger('CopilotTrainingAPI')
|
|
|
|
export const POST = withRouteHandler(async (request: NextRequest) => {
|
|
const auth = checkInternalApiKey(request)
|
|
if (!auth.success) {
|
|
return createUnauthorizedResponse()
|
|
}
|
|
|
|
try {
|
|
const baseUrl = env.AGENT_INDEXER_URL
|
|
if (!baseUrl) {
|
|
logger.error('Missing AGENT_INDEXER_URL environment variable')
|
|
return NextResponse.json({ error: 'Agent indexer not configured' }, { status: 500 })
|
|
}
|
|
|
|
const apiKey = env.AGENT_INDEXER_API_KEY
|
|
if (!apiKey) {
|
|
logger.error('Missing AGENT_INDEXER_API_KEY environment variable')
|
|
return NextResponse.json(
|
|
{ error: 'Agent indexer authentication not configured' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
|
|
const parsed = await parseRequest(
|
|
copilotTrainingDataContract,
|
|
request,
|
|
{},
|
|
{
|
|
validationErrorResponse: (error) => {
|
|
logger.warn('Invalid training data format', { errors: error.issues })
|
|
return validationErrorResponse(error, 'Invalid training data format')
|
|
},
|
|
}
|
|
)
|
|
if (!parsed.success) return parsed.response
|
|
const { title, prompt, input, output, operations } = parsed.data.body
|
|
|
|
logger.info('Sending training data to agent indexer', {
|
|
title,
|
|
operationsCount: operations.length,
|
|
})
|
|
|
|
const upstreamUrl = `${baseUrl}/operations/add`
|
|
const upstreamResponse = await fetch(upstreamUrl, {
|
|
method: 'POST',
|
|
headers: {
|
|
'x-api-key': apiKey,
|
|
'content-type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
title,
|
|
prompt,
|
|
input,
|
|
output,
|
|
operations: { operations },
|
|
}),
|
|
})
|
|
|
|
const responseData = await upstreamResponse.json()
|
|
|
|
if (!upstreamResponse.ok) {
|
|
logger.error('Agent indexer rejected the data', {
|
|
status: upstreamResponse.status,
|
|
response: responseData,
|
|
})
|
|
return NextResponse.json(responseData, { status: upstreamResponse.status })
|
|
}
|
|
|
|
logger.info('Successfully sent training data to agent indexer', {
|
|
title,
|
|
response: responseData,
|
|
})
|
|
|
|
return NextResponse.json(responseData)
|
|
} catch (error) {
|
|
logger.error('Failed to send training data to agent indexer', { error })
|
|
return NextResponse.json(
|
|
{
|
|
error: getErrorMessage(error, 'Failed to send training data'),
|
|
},
|
|
{ status: 502 }
|
|
)
|
|
}
|
|
})
|