Skip to content

Commit

Permalink
feat: Add Runner field to LLMStormTask to track the task processor
Browse files Browse the repository at this point in the history
  • Loading branch information
Laisky committed Feb 7, 2025
1 parent 09e5697 commit 1381f64
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions library/db/redis/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ type LLMStormTask struct {
FinishedAt *time.Time `json:"finished_at,omitempty"`
ResultArticle *string `json:"result_article,omitempty"`
ResultReferences *stormReferences `json:"result_references,omitempty"`
// Runner is the name of the runner that processed the task
Runner string `json:"runner"`
}

type stormReferences struct {
Expand Down

0 comments on commit 1381f64

Please sign in to comment.