feat(server): update trascript endpoint (#11196)

This commit is contained in:
darkskygit
2025-03-27 10:18:49 +00:00
parent 3303684056
commit 3b9d64d74d
17 changed files with 195 additions and 70 deletions
+2 -1
View File
@@ -81,7 +81,7 @@ type ContextWorkspaceEmbeddingStatus {
}
type Copilot {
audioTranscription(jobId: String): [TranscriptionResultType!]!
audioTranscription(blobId: String, jobId: String): TranscriptionResultType
"""Get the context list of a session"""
contexts(contextId: String, sessionId: String): [CopilotContext!]!
@@ -1465,6 +1465,7 @@ type TranscriptionResultType {
id: ID!
status: AiJobStatus!
summary: String
title: String
transcription: [TranscriptionItemType!]
}