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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.76.4-alpha.5",
3
+ "version": "3.76.4-alpha.6",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",
@@ -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 {