appstypes.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. type AppModule struct {
  7. NodeID string `bson:"nodeId" json:"nodeId"`
  8. Name string `bson:"name" json:"name"`
  9. Intro string `bson:"intro" json:"intro"`
  10. Avatar string `bson:"avatar,omitempty" json:"avatar,omitempty"`
  11. FlowNodeType string `bson:"flowNodeType" json:"flowNodeType"`
  12. ShowStatus bool `bson:"showStatus,omitempty" json:"showStatus,omitempty"`
  13. Position Position `bson:"position" json:"position"`
  14. Version string `bson:"version" json:"version"`
  15. Inputs []AppInput `bson:"inputs" json:"inputs"`
  16. Outputs []AppOutput `bson:"outputs" json:"outputs"`
  17. }
  18. type Position struct {
  19. X float64 `bson:"x" json:"x"`
  20. Y float64 `bson:"y" json:"y"`
  21. }
  22. type AppInput struct {
  23. Key string `bson:"key" json:"key"`
  24. RenderTypeList []string `bson:"renderTypeList" json:"renderTypeList"`
  25. ValueType string `bson:"valueType" json:"valueType"`
  26. Label string `bson:"label" json:"label"`
  27. ToolDescription string `bson:"toolDescription,omitempty" json:"toolDescription,omitempty"`
  28. Required bool `bson:"required,omitempty" json:"required,omitempty"`
  29. Value interface{} `bson:"value,omitempty" json:"value,omitempty"`
  30. Min *int32 `bson:"min,omitempty" json:"min,omitempty"`
  31. Max *int32 `bson:"max,omitempty" json:"max,omitempty"`
  32. Step *int32 `bson:"step,omitempty" json:"step,omitempty"`
  33. Description string `bson:"description,omitempty" json:"description,omitempty"`
  34. DebugLabel string `bson:"debugLabel,omitempty" json:"debugLabel,omitempty"`
  35. Placeholder string `bson:"placeholder,omitempty" json:"placeholder,omitempty"`
  36. }
  37. type AppOutput struct {
  38. ID string `bson:"id" json:"id"`
  39. Key string `bson:"key" json:"key"`
  40. Label string `bson:"label" json:"label"`
  41. Required bool `bson:"required,omitempty" json:"required,omitempty"`
  42. Description string `bson:"description,omitempty" json:"description,omitempty"`
  43. ValueType string `bson:"valueType" json:"valueType"`
  44. ValueDesc string `bson:"valueDesc,omitempty" json:"valueDesc,omitempty"`
  45. Type string `bson:"type" json:"type"`
  46. }
  47. type Edge struct {
  48. Source string `bson:"source" json:"source"`
  49. Target string `bson:"target" json:"target"`
  50. SourceHandle string `bson:"sourceHandle" json:"sourceHandle"`
  51. TargetHandle string `bson:"targetHandle" json:"targetHandle"`
  52. }
  53. type PluginData struct {
  54. ID primitive.ObjectID `bson:"_id" json:"id"`
  55. NodeVersion string `bson:"nodeVersion" json:"nodeVersion"`
  56. }
  57. type TTSConfig struct {
  58. Type string `bson:"type" json:"type"`
  59. }
  60. type WhisperConfig struct {
  61. Open bool `bson:"open" json:"open"`
  62. AutoSend bool `bson:"autoSend" json:"autoSend"`
  63. AutoTTSResponse bool `bson:"autoTTSResponse" json:"autoTTSResponse"`
  64. }
  65. type ChatInputGuide struct {
  66. Open bool `bson:"open" json:"open"`
  67. TextList []string `bson:"textList" json:"textList"`
  68. CustomUrl string `bson:"customUrl" json:"customUrl"`
  69. }
  70. type ChatConfig struct {
  71. WelcomeText string `bson:"welcomeText" json:"welcomeText"`
  72. Variables []interface{} `bson:"variables" json:"variables"`
  73. QuestionGuide bool `bson:"questionGuide" json:"questionGuide"`
  74. TTSConfig TTSConfig `bson:"ttsConfig" json:"ttsConfig"`
  75. WhisperConfig WhisperConfig `bson:"whisperConfig" json:"whisperConfig"`
  76. ScheduledTriggerConfig interface{} `bson:"scheduledTriggerConfig" json:"scheduledTriggerConfig"`
  77. ChatInputGuide ChatInputGuide `bson:"chatInputGuide" json:"chatInputGuide"`
  78. Instruction string `bson:"instruction" json:"instruction"`
  79. ID primitive.ObjectID `bson:"_id" json:"id"`
  80. }
  81. type Apps struct {
  82. ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
  83. ParentID *primitive.ObjectID `bson:"parentId,omitempty" json:"parentId,omitempty"`
  84. TeamID primitive.ObjectID `bson:"teamId" json:"teamId"`
  85. TmbID primitive.ObjectID `bson:"tmbId" json:"tmbId"`
  86. Name string `bson:"name" json:"name"`
  87. Type string `bson:"type" json:"type"`
  88. Version string `bson:"version" json:"version"`
  89. Avatar string `bson:"avatar" json:"avatar"`
  90. Intro string `bson:"intro" json:"intro"`
  91. TeamTags []string `bson:"teamTags" json:"teamTags"`
  92. Modules []AppModule `bson:"modules" json:"modules"`
  93. Edges []Edge `bson:"edges" json:"edges"`
  94. PluginData PluginData `bson:"pluginData" json:"pluginData"`
  95. InheritPermission bool `bson:"inheritPermission" json:"inheritPermission"`
  96. UpdateTime time.Time `bson:"updateTime" json:"updateTime"`
  97. VersionNumber int32 `bson:"__v" json:"versionNumber"`
  98. ChatConfig ChatConfig `bson:"chatConfig" json:"chatConfig"`
  99. ScheduledTriggerConfig interface{} `bson:"scheduledTriggerConfig" json:"scheduledTriggerConfig"`
  100. ScheduledTriggerNextTime interface{} `bson:"scheduledTriggerNextTime" json:"scheduledTriggerNextTime"`
  101. }