2026-05-12 13:59:15 +08:00
|
|
|
package public
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
ComposeStatusPending = "pending"
|
|
|
|
|
ComposeStatusSuccess = "success"
|
|
|
|
|
ComposeStatusFailed = "failed"
|
|
|
|
|
)
|
2026-05-20 11:36:39 +08:00
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
BuildTypePrompt = 1 //提示词构建
|
|
|
|
|
BuildTypeNode = 2 //节点构建
|
2026-06-03 18:37:18 +08:00
|
|
|
BuildTypeStruct = 3 //结构构建
|
2026-05-20 11:36:39 +08:00
|
|
|
)
|