wip(agent-builder): im not sure sure this is actually a good idea
This commit is contained in:
17
backend/.gen/haystack/agents/model/agents.go
Normal file
17
backend/.gen/haystack/agents/model/agents.go
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Code generated by go-jet DO NOT EDIT.
|
||||
//
|
||||
// WARNING: Changes to this file may cause incorrect behavior
|
||||
// and will be lost if the code is regenerated
|
||||
//
|
||||
|
||||
package model
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type Agents struct {
|
||||
ID uuid.UUID `sql:"primary_key"`
|
||||
Name string
|
||||
}
|
||||
18
backend/.gen/haystack/agents/model/system_prompts.go
Normal file
18
backend/.gen/haystack/agents/model/system_prompts.go
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Code generated by go-jet DO NOT EDIT.
|
||||
//
|
||||
// WARNING: Changes to this file may cause incorrect behavior
|
||||
// and will be lost if the code is regenerated
|
||||
//
|
||||
|
||||
package model
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type SystemPrompts struct {
|
||||
ID uuid.UUID `sql:"primary_key"`
|
||||
Prompt string
|
||||
AgentID uuid.UUID
|
||||
}
|
||||
18
backend/.gen/haystack/agents/model/tools.go
Normal file
18
backend/.gen/haystack/agents/model/tools.go
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Code generated by go-jet DO NOT EDIT.
|
||||
//
|
||||
// WARNING: Changes to this file may cause incorrect behavior
|
||||
// and will be lost if the code is regenerated
|
||||
//
|
||||
|
||||
package model
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type Tools struct {
|
||||
ID uuid.UUID `sql:"primary_key"`
|
||||
Tool string
|
||||
AgentID uuid.UUID
|
||||
}
|
||||
Reference in New Issue
Block a user