This commit is contained in:
2026-03-04 20:05:37 +08:00
parent 78a2d84335
commit b6dc79b298
11 changed files with 461 additions and 8 deletions

View File

@@ -39,6 +39,8 @@ export const ADMIN_URL = import.meta.env.PUBLIC_ADMIN_URL
export const BASE_URL = import.meta.env.PUBLIC_BASE_URL
export const WS_BASE_URL = import.meta.env.PUBLIC_WS_URL || `ws://${window.location.host}`
export enum TASK_TYPE {
Tutorial = "tutorial",
Challenge = "challenge",

View File

@@ -63,6 +63,7 @@ export interface SubmissionOut {
task_title: string
score: number
my_score: number
conversation_id?: string
created: Date
modified: Date
}