aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/dashapi/ai.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/dashapi/ai.go')
-rw-r--r--dashboard/dashapi/ai.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/dashboard/dashapi/ai.go b/dashboard/dashapi/ai.go
index 893ed7215..8134e5744 100644
--- a/dashboard/dashapi/ai.go
+++ b/dashboard/dashapi/ai.go
@@ -9,14 +9,14 @@ import (
)
type AIJobPollReq struct {
- LLMModel string // LLM model that will be used to execute jobs
CodeRevision string // git commit of the syz-agent server
Workflows []AIWorkflow
}
type AIWorkflow struct {
- Type ai.WorkflowType
- Name string
+ Type ai.WorkflowType
+ Name string
+ LLMModel string // LLM model that will be used to execute this workflow
}
type AIJobPollResp struct {