Add concurrent agent

This commit is contained in:
Marian Paul
2026-01-21 15:17:01 +01:00
parent 71f3271274
commit 409560fb97
5 changed files with 64 additions and 2 deletions

View File

@@ -503,6 +503,7 @@ export interface Schedule {
enabled: boolean
yolo_mode: boolean
model: string | null
max_concurrency: number // 1-5 concurrent agents
crash_count: number
created_at: string
}
@@ -514,6 +515,7 @@ export interface ScheduleCreate {
enabled: boolean
yolo_mode: boolean
model: string | null
max_concurrency: number // 1-5 concurrent agents
}
export interface ScheduleUpdate {
@@ -523,6 +525,7 @@ export interface ScheduleUpdate {
enabled?: boolean
yolo_mode?: boolean
model?: string | null
max_concurrency?: number
}
export interface ScheduleListResponse {