wingbot 3.76.4-alpha.5 → 3.76.4-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/graphApi/schema.gql +7 -0
package/package.json
CHANGED
package/src/graphApi/schema.gql
CHANGED
|
@@ -123,10 +123,17 @@ type VectorSearchResult {
|
|
|
123
123
|
resultDocuments: [VectorSearchDocument!]!
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
type ToolFunction {
|
|
127
|
+
name: String!
|
|
128
|
+
description: String
|
|
129
|
+
parameters: Any
|
|
130
|
+
}
|
|
131
|
+
|
|
126
132
|
type PromptInfo {
|
|
127
133
|
prompt: [LLMMessage!]!
|
|
128
134
|
result: LLMMessage!
|
|
129
135
|
vectorSearchResult: VectorSearchResult
|
|
136
|
+
tools: [ToolFunction!]
|
|
130
137
|
}
|
|
131
138
|
|
|
132
139
|
type UserInteraction {
|