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
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { dbReplica } from '@sim/db'
|
|
import { copilotRuns } from '@sim/db/schema'
|
|
import { and, inArray, isNotNull } from 'drizzle-orm'
|
|
import {
|
|
decodeTimeCursor,
|
|
encodeTimeCursor,
|
|
timeCursorOrderBy,
|
|
timeCursorPredicate,
|
|
timeCursorStabilityBound,
|
|
} from '@/lib/data-drains/sources/cursor'
|
|
import { getOrganizationWorkspaceIds } from '@/lib/data-drains/sources/helpers'
|
|
import type { Cursor, DrainSource, SourcePageInput } from '@/lib/data-drains/types'
|
|
|
|
type CopilotRunRow = typeof copilotRuns.$inferSelect
|
|
|
|
/**
|
|
* Cursors on terminal `completedAt` so in-flight runs (mutable `status`,
|
|
* `error`, `completedAt`) are not exported until they reach a terminal state.
|
|
*/
|
|
async function* pages(input: SourcePageInput): AsyncIterable<CopilotRunRow[]> {
|
|
const workspaceIds = await getOrganizationWorkspaceIds(input.organizationId)
|
|
if (workspaceIds.length === 0) return
|
|
|
|
let cursor = decodeTimeCursor(input.cursor)
|
|
while (!input.signal.aborted) {
|
|
const cursorClause = timeCursorPredicate(copilotRuns.completedAt, copilotRuns.id, cursor)
|
|
|
|
const rows = await dbReplica
|
|
.select()
|
|
.from(copilotRuns)
|
|
.where(
|
|
and(
|
|
inArray(copilotRuns.workspaceId, workspaceIds),
|
|
isNotNull(copilotRuns.completedAt),
|
|
timeCursorStabilityBound(copilotRuns.completedAt),
|
|
cursorClause
|
|
)
|
|
)
|
|
.orderBy(...timeCursorOrderBy(copilotRuns.completedAt, copilotRuns.id))
|
|
.limit(input.chunkSize)
|
|
|
|
if (rows.length === 0) return
|
|
yield rows
|
|
const last = rows[rows.length - 1]
|
|
cursor = { ts: last.completedAt!.toISOString(), id: last.id }
|
|
if (rows.length < input.chunkSize) return
|
|
}
|
|
}
|
|
|
|
export const copilotRunsSource: DrainSource<CopilotRunRow> = {
|
|
type: 'copilot_runs',
|
|
displayName: 'Chat runs',
|
|
pages,
|
|
serialize(row) {
|
|
return {
|
|
id: row.id,
|
|
executionId: row.executionId,
|
|
parentRunId: row.parentRunId,
|
|
chatId: row.chatId,
|
|
userId: row.userId,
|
|
workflowId: row.workflowId,
|
|
workspaceId: row.workspaceId,
|
|
streamId: row.streamId,
|
|
agent: row.agent,
|
|
model: row.model,
|
|
provider: row.provider,
|
|
status: row.status,
|
|
requestContext: row.requestContext,
|
|
startedAt: row.startedAt.toISOString(),
|
|
completedAt: row.completedAt ? row.completedAt.toISOString() : null,
|
|
createdAt: row.createdAt.toISOString(),
|
|
updatedAt: row.updatedAt.toISOString(),
|
|
error: row.error,
|
|
}
|
|
},
|
|
cursorAfter(row): Cursor {
|
|
return encodeTimeCursor({ ts: row.completedAt!.toISOString(), id: row.id })
|
|
},
|
|
}
|