@cryptorobot.ai/client 0.0.39 → 0.0.40

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.
Files changed (81) hide show
  1. package/lib/src/client.js +29 -2
  2. package/lib/src/services/agents/agents.class.d.ts +11 -0
  3. package/lib/src/services/agents/agents.d.ts +11 -0
  4. package/lib/src/services/agents/agents.schema.d.ts +2371 -0
  5. package/lib/src/services/agents/agents.shared.d.ts +13 -0
  6. package/lib/src/services/agents/agents.shared.js +13 -0
  7. package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
  8. package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
  9. package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
  10. package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
  11. package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
  12. package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
  13. package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
  14. package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
  15. package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
  16. package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
  17. package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
  18. package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
  19. package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
  20. package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
  21. package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
  22. package/lib/src/services/events/events.class.d.ts +11 -0
  23. package/lib/src/services/events/events.d.ts +11 -0
  24. package/lib/src/services/events/events.schema.d.ts +786 -0
  25. package/lib/src/services/events/events.shared.d.ts +13 -0
  26. package/lib/src/services/events/events.shared.js +13 -0
  27. package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
  28. package/lib/src/services/events/triggers/triggers.d.ts +11 -0
  29. package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
  30. package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
  31. package/lib/src/services/events/triggers/triggers.shared.js +13 -0
  32. package/lib/src/services/events/types/types.class.d.ts +11 -0
  33. package/lib/src/services/events/types/types.d.ts +11 -0
  34. package/lib/src/services/events/types/types.schema.d.ts +688 -0
  35. package/lib/src/services/events/types/types.shared.d.ts +13 -0
  36. package/lib/src/services/events/types/types.shared.js +13 -0
  37. package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
  38. package/lib/src/services/exchanges/download/download.shared.js +1 -1
  39. package/lib/src/services/extensions/extensions.class.d.ts +11 -0
  40. package/lib/src/services/extensions/extensions.d.ts +11 -0
  41. package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
  42. package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
  43. package/lib/src/services/extensions/extensions.shared.js +13 -0
  44. package/lib/src/services/keys/KeysService.d.ts +13 -0
  45. package/lib/src/services/keys/keys.class.d.ts +11 -0
  46. package/lib/src/services/keys/keys.d.ts +11 -0
  47. package/lib/src/services/keys/keys.schema.d.ts +719 -0
  48. package/lib/src/services/keys/keys.shared.d.ts +14 -0
  49. package/lib/src/services/keys/keys.shared.js +13 -0
  50. package/lib/src/services/messages/messages.schema.d.ts +4 -4
  51. package/lib/src/services/restricted/restricted.class.d.ts +26 -0
  52. package/lib/src/services/restricted/restricted.d.ts +21 -0
  53. package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
  54. package/lib/src/services/restricted/restricted.shared.js +13 -0
  55. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +28 -28
  56. package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
  57. package/lib/src/services/strategies/generate/generate.d.ts +11 -0
  58. package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
  59. package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
  60. package/lib/src/services/strategies/generate/generate.shared.js +13 -0
  61. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +12 -4
  62. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
  63. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +4 -4
  64. package/lib/src/services/strategies/strategies.schema.d.ts +2708 -303
  65. package/lib/src/services/strategies/templates/templates.schema.d.ts +2142 -12
  66. package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
  67. package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
  68. package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
  69. package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
  70. package/lib/src/services/tools/tools.class.d.ts +11 -0
  71. package/lib/src/services/tools/tools.d.ts +11 -0
  72. package/lib/src/services/tools/tools.schema.d.ts +269 -0
  73. package/lib/src/services/tools/tools.shared.d.ts +13 -0
  74. package/lib/src/services/tools/tools.shared.js +13 -0
  75. package/lib/src/services/traders/pods/api/api.schema.d.ts +1284 -188
  76. package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
  77. package/lib/src/services/traders/pods/pods.schema.d.ts +1280 -184
  78. package/lib/src/services/traders/traders.schema.d.ts +4 -4
  79. package/lib/src/services/users/users.class.d.ts +2 -2
  80. package/lib/src/services/users/users.schema.d.ts +4 -4
  81. package/package.json +1 -1
@@ -0,0 +1,2561 @@
1
+ import type { Static } from '@feathersjs/typebox';
2
+ import type { HookContext } from '../../../../declarations';
3
+ import type { AgentsSessionsConversationsService } from './conversations.class';
4
+ export declare const agentsSessionsConversationsSchema: import("@feathersjs/typebox").TObject<{
5
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
+ text: import("@feathersjs/typebox").TString<string>;
7
+ role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
8
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
9
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
10
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
11
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
12
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
13
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
14
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
15
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
16
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
17
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
18
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
19
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
20
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
21
+ }>>>;
22
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
23
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
24
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
25
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
26
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
27
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
28
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
29
+ }>>>;
30
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
31
+ }>>;
32
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
33
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
34
+ }>;
35
+ export type AgentsSessionsConversations = Static<typeof agentsSessionsConversationsSchema>;
36
+ export declare const agentsSessionsConversationsValidator: import("@feathersjs/schema").Validator<any, any>;
37
+ export declare const agentsSessionsConversationsResolver: import("@feathersjs/schema").Resolver<{
38
+ createdAt?: any;
39
+ updatedAt?: any;
40
+ sessionId?: string | undefined;
41
+ agentId?: string | undefined;
42
+ trace?: {
43
+ rationale?: string[] | undefined;
44
+ toolCalls?: {
45
+ response?: any;
46
+ actionGroupName?: string | undefined;
47
+ apiPath?: string | undefined;
48
+ verb?: string | undefined;
49
+ parameters?: any;
50
+ requestBody?: any;
51
+ success?: boolean | undefined;
52
+ executionTimeMs?: number | undefined;
53
+ }[] | undefined;
54
+ modelInvocations?: {
55
+ foundationModel?: string | undefined;
56
+ inputTokens?: number | undefined;
57
+ outputTokens?: number | undefined;
58
+ totalTimeMs?: number | undefined;
59
+ startTime?: string | undefined;
60
+ endTime?: string | undefined;
61
+ }[] | undefined;
62
+ fullTrace?: any;
63
+ } | undefined;
64
+ _id: string | {};
65
+ text: string;
66
+ role: "user" | "assistant";
67
+ }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
68
+ export declare const agentsSessionsConversationsExternalResolver: import("@feathersjs/schema").Resolver<{
69
+ createdAt?: any;
70
+ updatedAt?: any;
71
+ sessionId?: string | undefined;
72
+ agentId?: string | undefined;
73
+ trace?: {
74
+ rationale?: string[] | undefined;
75
+ toolCalls?: {
76
+ response?: any;
77
+ actionGroupName?: string | undefined;
78
+ apiPath?: string | undefined;
79
+ verb?: string | undefined;
80
+ parameters?: any;
81
+ requestBody?: any;
82
+ success?: boolean | undefined;
83
+ executionTimeMs?: number | undefined;
84
+ }[] | undefined;
85
+ modelInvocations?: {
86
+ foundationModel?: string | undefined;
87
+ inputTokens?: number | undefined;
88
+ outputTokens?: number | undefined;
89
+ totalTimeMs?: number | undefined;
90
+ startTime?: string | undefined;
91
+ endTime?: string | undefined;
92
+ }[] | undefined;
93
+ fullTrace?: any;
94
+ } | undefined;
95
+ _id: string | {};
96
+ text: string;
97
+ role: "user" | "assistant";
98
+ }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
99
+ export declare const agentsSessionsConversationsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
100
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
101
+ text: import("@feathersjs/typebox").TString<string>;
102
+ role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
103
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
104
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
105
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
106
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
107
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
108
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
109
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
110
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
111
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
112
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
113
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
114
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
115
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
116
+ }>>>;
117
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
118
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
119
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
120
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
121
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
122
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
123
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
124
+ }>>>;
125
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
126
+ }>>;
127
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
128
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
129
+ }>, ["text", "role", "sessionId", "agentId", "trace"]>;
130
+ export type AgentsSessionsConversationsData = Static<typeof agentsSessionsConversationsDataSchema>;
131
+ export declare const agentsSessionsConversationsDataValidator: import("@feathersjs/schema").Validator<any, any>;
132
+ export declare const agentsSessionsConversationsDataResolver: import("@feathersjs/schema").Resolver<{
133
+ createdAt?: any;
134
+ updatedAt?: any;
135
+ sessionId?: string | undefined;
136
+ agentId?: string | undefined;
137
+ trace?: {
138
+ rationale?: string[] | undefined;
139
+ toolCalls?: {
140
+ response?: any;
141
+ actionGroupName?: string | undefined;
142
+ apiPath?: string | undefined;
143
+ verb?: string | undefined;
144
+ parameters?: any;
145
+ requestBody?: any;
146
+ success?: boolean | undefined;
147
+ executionTimeMs?: number | undefined;
148
+ }[] | undefined;
149
+ modelInvocations?: {
150
+ foundationModel?: string | undefined;
151
+ inputTokens?: number | undefined;
152
+ outputTokens?: number | undefined;
153
+ totalTimeMs?: number | undefined;
154
+ startTime?: string | undefined;
155
+ endTime?: string | undefined;
156
+ }[] | undefined;
157
+ fullTrace?: any;
158
+ } | undefined;
159
+ _id: string | {};
160
+ text: string;
161
+ role: "user" | "assistant";
162
+ }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
163
+ export declare const agentsSessionsConversationsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
164
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
165
+ text: import("@feathersjs/typebox").TString<string>;
166
+ role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
167
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
168
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
169
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
170
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
171
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
172
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
173
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
174
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
175
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
176
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
177
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
178
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
179
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
180
+ }>>>;
181
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
182
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
183
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
184
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
185
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
186
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
187
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
188
+ }>>>;
189
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
190
+ }>>;
191
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
192
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
193
+ }>>;
194
+ export type AgentsSessionsConversationsPatch = Static<typeof agentsSessionsConversationsPatchSchema>;
195
+ export declare const agentsSessionsConversationsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
196
+ export declare const agentsSessionsConversationsPatchResolver: import("@feathersjs/schema").Resolver<{
197
+ createdAt?: any;
198
+ updatedAt?: any;
199
+ sessionId?: string | undefined;
200
+ agentId?: string | undefined;
201
+ trace?: {
202
+ rationale?: string[] | undefined;
203
+ toolCalls?: {
204
+ response?: any;
205
+ actionGroupName?: string | undefined;
206
+ apiPath?: string | undefined;
207
+ verb?: string | undefined;
208
+ parameters?: any;
209
+ requestBody?: any;
210
+ success?: boolean | undefined;
211
+ executionTimeMs?: number | undefined;
212
+ }[] | undefined;
213
+ modelInvocations?: {
214
+ foundationModel?: string | undefined;
215
+ inputTokens?: number | undefined;
216
+ outputTokens?: number | undefined;
217
+ totalTimeMs?: number | undefined;
218
+ startTime?: string | undefined;
219
+ endTime?: string | undefined;
220
+ }[] | undefined;
221
+ fullTrace?: any;
222
+ } | undefined;
223
+ _id: string | {};
224
+ text: string;
225
+ role: "user" | "assistant";
226
+ }, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;
227
+ export declare const agentsSessionsConversationsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
228
+ _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
229
+ text: import("@feathersjs/typebox").TString<string>;
230
+ role: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
231
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
232
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
233
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
234
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
235
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
236
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
237
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
238
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
239
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
240
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
241
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
242
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
243
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
244
+ }>>>;
245
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
246
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
247
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
248
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
249
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
250
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
251
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
252
+ }>>>;
253
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
254
+ }>>;
255
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
256
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
257
+ }>, ["_id", "text", "role", "sessionId", "agentId", "trace", "createdAt", "updatedAt"]>;
258
+ export declare const agentsSessionsConversationsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
259
+ $limit: import("@feathersjs/typebox").TNumber;
260
+ $skip: import("@feathersjs/typebox").TNumber;
261
+ $sort: import("@feathersjs/typebox").TObject<{
262
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
263
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
264
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
265
+ text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
266
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
267
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
268
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
269
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
270
+ }>;
271
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "updatedAt" | "text" | "role" | "sessionId" | "agentId" | "trace")[]>;
272
+ $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
273
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
274
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
275
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
276
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
277
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
278
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
279
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
280
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
281
+ }>, import("@feathersjs/typebox").TObject<{
282
+ [key: string]: import("@feathersjs/typebox").TSchema;
283
+ } | undefined>]>>]>>;
284
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
285
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
286
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
287
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
288
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
289
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
290
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
291
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
292
+ }>, import("@feathersjs/typebox").TObject<{
293
+ [key: string]: import("@feathersjs/typebox").TSchema;
294
+ } | undefined>]>>]>>;
295
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
296
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
297
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
298
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
299
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
300
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
301
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
302
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
303
+ }>, import("@feathersjs/typebox").TObject<{
304
+ [key: string]: import("@feathersjs/typebox").TSchema;
305
+ } | undefined>]>>]>>;
306
+ text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
307
+ $gt: import("@feathersjs/typebox").TString<string>;
308
+ $gte: import("@feathersjs/typebox").TString<string>;
309
+ $lt: import("@feathersjs/typebox").TString<string>;
310
+ $lte: import("@feathersjs/typebox").TString<string>;
311
+ $ne: import("@feathersjs/typebox").TString<string>;
312
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
313
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
314
+ }>, import("@feathersjs/typebox").TObject<{
315
+ [key: string]: import("@feathersjs/typebox").TSchema;
316
+ } | undefined>]>>]>>;
317
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
318
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
319
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
320
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
321
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
322
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
323
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
324
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
325
+ }>, import("@feathersjs/typebox").TObject<{
326
+ [key: string]: import("@feathersjs/typebox").TSchema;
327
+ } | undefined>]>>]>>;
328
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
329
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
330
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
331
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
332
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
333
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
334
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
335
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
336
+ }>, import("@feathersjs/typebox").TObject<{
337
+ [key: string]: import("@feathersjs/typebox").TSchema;
338
+ } | undefined>]>>]>>;
339
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
340
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
341
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
342
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
343
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
344
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
345
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
346
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
347
+ }>, import("@feathersjs/typebox").TObject<{
348
+ [key: string]: import("@feathersjs/typebox").TSchema;
349
+ } | undefined>]>>]>>;
350
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
351
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
352
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
353
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
354
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
355
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
356
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
357
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
358
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
359
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
360
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
361
+ }>>>;
362
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
363
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
364
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
365
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
366
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
367
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
368
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
369
+ }>>>;
370
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
371
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
372
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
373
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
374
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
375
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
376
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
377
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
378
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
379
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
380
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
381
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
382
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
383
+ }>>>;
384
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
385
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
386
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
387
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
388
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
389
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
390
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
391
+ }>>>;
392
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
393
+ }>>;
394
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
395
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
396
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
397
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
398
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
399
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
400
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
401
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
402
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
403
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
404
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
405
+ }>>>;
406
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
407
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
408
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
409
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
410
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
411
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
412
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
413
+ }>>>;
414
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
415
+ }>>;
416
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
417
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
418
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
419
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
420
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
421
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
422
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
423
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
424
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
425
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
426
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
427
+ }>>>;
428
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
429
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
430
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
431
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
432
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
433
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
434
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
435
+ }>>>;
436
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
437
+ }>>;
438
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
439
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
440
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
441
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
442
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
443
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
444
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
445
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
446
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
447
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
448
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
449
+ }>>>;
450
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
451
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
452
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
453
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
454
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
455
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
456
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
457
+ }>>>;
458
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
459
+ }>>;
460
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
461
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
462
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
463
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
464
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
465
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
466
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
467
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
468
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
469
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
470
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
471
+ }>>>;
472
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
473
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
474
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
475
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
476
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
477
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
478
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
479
+ }>>>;
480
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
481
+ }>>;
482
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
483
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
484
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
485
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
486
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
487
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
488
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
489
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
490
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
491
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
492
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
493
+ }>>>;
494
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
495
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
496
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
497
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
498
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
499
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
500
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
501
+ }>>>;
502
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
503
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
504
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
505
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
506
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
507
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
508
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
509
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
510
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
511
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
512
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
513
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
514
+ }>>>;
515
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
516
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
517
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
518
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
519
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
520
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
521
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
522
+ }>>>;
523
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
524
+ }>>>;
525
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
526
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
527
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
528
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
529
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
530
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
531
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
532
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
533
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
534
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
535
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
536
+ }>>>;
537
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
538
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
539
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
540
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
541
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
542
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
543
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
544
+ }>>>;
545
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
546
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
547
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
548
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
549
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
550
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
551
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
552
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
553
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
554
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
555
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
556
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
557
+ }>>>;
558
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
559
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
560
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
561
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
562
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
563
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
564
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
565
+ }>>>;
566
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
567
+ }>>>;
568
+ }>, import("@feathersjs/typebox").TObject<{
569
+ [key: string]: import("@feathersjs/typebox").TSchema;
570
+ } | undefined>]>>]>>;
571
+ }>>, import("@feathersjs/typebox").TObject<{
572
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
573
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
574
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
575
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
576
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
577
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
578
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
579
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
580
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
581
+ }>, import("@feathersjs/typebox").TObject<{
582
+ [key: string]: import("@feathersjs/typebox").TSchema;
583
+ } | undefined>]>>]>>;
584
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
585
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
586
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
587
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
588
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
589
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
590
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
591
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
592
+ }>, import("@feathersjs/typebox").TObject<{
593
+ [key: string]: import("@feathersjs/typebox").TSchema;
594
+ } | undefined>]>>]>>;
595
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
596
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
597
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
598
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
599
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
600
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
601
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
602
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
603
+ }>, import("@feathersjs/typebox").TObject<{
604
+ [key: string]: import("@feathersjs/typebox").TSchema;
605
+ } | undefined>]>>]>>;
606
+ text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
607
+ $gt: import("@feathersjs/typebox").TString<string>;
608
+ $gte: import("@feathersjs/typebox").TString<string>;
609
+ $lt: import("@feathersjs/typebox").TString<string>;
610
+ $lte: import("@feathersjs/typebox").TString<string>;
611
+ $ne: import("@feathersjs/typebox").TString<string>;
612
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
613
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
614
+ }>, import("@feathersjs/typebox").TObject<{
615
+ [key: string]: import("@feathersjs/typebox").TSchema;
616
+ } | undefined>]>>]>>;
617
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
618
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
619
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
620
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
621
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
622
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
623
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
624
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
625
+ }>, import("@feathersjs/typebox").TObject<{
626
+ [key: string]: import("@feathersjs/typebox").TSchema;
627
+ } | undefined>]>>]>>;
628
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
629
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
630
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
631
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
632
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
633
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
634
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
635
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
636
+ }>, import("@feathersjs/typebox").TObject<{
637
+ [key: string]: import("@feathersjs/typebox").TSchema;
638
+ } | undefined>]>>]>>;
639
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
640
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
641
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
642
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
643
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
644
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
645
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
646
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
647
+ }>, import("@feathersjs/typebox").TObject<{
648
+ [key: string]: import("@feathersjs/typebox").TSchema;
649
+ } | undefined>]>>]>>;
650
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
651
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
652
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
653
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
654
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
655
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
656
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
657
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
658
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
659
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
660
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
661
+ }>>>;
662
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
663
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
664
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
665
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
666
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
667
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
668
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
669
+ }>>>;
670
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
671
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
672
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
673
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
674
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
675
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
676
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
677
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
678
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
679
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
680
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
681
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
682
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
683
+ }>>>;
684
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
685
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
686
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
687
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
688
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
689
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
690
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
691
+ }>>>;
692
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
693
+ }>>;
694
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
695
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
696
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
697
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
698
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
699
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
700
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
701
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
702
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
703
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
704
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
705
+ }>>>;
706
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
707
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
708
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
709
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
710
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
711
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
712
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
713
+ }>>>;
714
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
715
+ }>>;
716
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
717
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
718
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
719
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
720
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
721
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
722
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
723
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
724
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
725
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
726
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
727
+ }>>>;
728
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
729
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
730
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
731
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
732
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
733
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
734
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
735
+ }>>>;
736
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
737
+ }>>;
738
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
739
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
740
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
741
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
742
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
743
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
744
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
745
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
746
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
747
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
748
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
749
+ }>>>;
750
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
751
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
752
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
753
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
754
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
755
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
756
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
757
+ }>>>;
758
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
759
+ }>>;
760
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
761
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
762
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
763
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
764
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
765
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
766
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
767
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
768
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
769
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
770
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
771
+ }>>>;
772
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
773
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
774
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
775
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
776
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
777
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
778
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
779
+ }>>>;
780
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
781
+ }>>;
782
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
783
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
784
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
785
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
786
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
787
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
788
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
789
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
790
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
791
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
792
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
793
+ }>>>;
794
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
795
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
796
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
797
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
798
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
799
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
800
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
801
+ }>>>;
802
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
803
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
804
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
805
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
806
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
807
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
808
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
809
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
810
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
811
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
812
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
813
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
814
+ }>>>;
815
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
816
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
817
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
818
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
819
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
820
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
821
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
822
+ }>>>;
823
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
824
+ }>>>;
825
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
826
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
827
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
828
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
829
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
830
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
831
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
832
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
833
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
834
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
835
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
836
+ }>>>;
837
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
838
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
839
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
840
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
841
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
842
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
843
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
844
+ }>>>;
845
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
846
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
847
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
848
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
849
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
850
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
851
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
852
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
853
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
854
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
855
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
856
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
857
+ }>>>;
858
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
859
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
860
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
861
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
862
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
863
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
864
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
865
+ }>>>;
866
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
867
+ }>>>;
868
+ }>, import("@feathersjs/typebox").TObject<{
869
+ [key: string]: import("@feathersjs/typebox").TSchema;
870
+ } | undefined>]>>]>>;
871
+ }>>>;
872
+ }>]>>;
873
+ $or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
874
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
875
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
876
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
877
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
878
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
879
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
880
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
881
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
882
+ }>, import("@feathersjs/typebox").TObject<{
883
+ [key: string]: import("@feathersjs/typebox").TSchema;
884
+ } | undefined>]>>]>>;
885
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
886
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
887
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
888
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
889
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
890
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
891
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
892
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
893
+ }>, import("@feathersjs/typebox").TObject<{
894
+ [key: string]: import("@feathersjs/typebox").TSchema;
895
+ } | undefined>]>>]>>;
896
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
897
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
898
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
899
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
900
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
901
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
902
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
903
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
904
+ }>, import("@feathersjs/typebox").TObject<{
905
+ [key: string]: import("@feathersjs/typebox").TSchema;
906
+ } | undefined>]>>]>>;
907
+ text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
908
+ $gt: import("@feathersjs/typebox").TString<string>;
909
+ $gte: import("@feathersjs/typebox").TString<string>;
910
+ $lt: import("@feathersjs/typebox").TString<string>;
911
+ $lte: import("@feathersjs/typebox").TString<string>;
912
+ $ne: import("@feathersjs/typebox").TString<string>;
913
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
914
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
915
+ }>, import("@feathersjs/typebox").TObject<{
916
+ [key: string]: import("@feathersjs/typebox").TSchema;
917
+ } | undefined>]>>]>>;
918
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
919
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
920
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
921
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
922
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
923
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
924
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
925
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
926
+ }>, import("@feathersjs/typebox").TObject<{
927
+ [key: string]: import("@feathersjs/typebox").TSchema;
928
+ } | undefined>]>>]>>;
929
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
930
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
931
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
932
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
933
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
934
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
935
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
936
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
937
+ }>, import("@feathersjs/typebox").TObject<{
938
+ [key: string]: import("@feathersjs/typebox").TSchema;
939
+ } | undefined>]>>]>>;
940
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
941
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
942
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
943
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
944
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
945
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
946
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
947
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
948
+ }>, import("@feathersjs/typebox").TObject<{
949
+ [key: string]: import("@feathersjs/typebox").TSchema;
950
+ } | undefined>]>>]>>;
951
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
952
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
953
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
954
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
955
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
956
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
957
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
958
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
959
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
960
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
961
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
962
+ }>>>;
963
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
964
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
965
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
966
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
967
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
968
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
969
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
970
+ }>>>;
971
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
972
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
973
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
974
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
975
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
976
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
977
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
978
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
979
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
980
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
981
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
982
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
983
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
984
+ }>>>;
985
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
986
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
987
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
988
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
989
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
990
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
991
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
992
+ }>>>;
993
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
994
+ }>>;
995
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
996
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
997
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
998
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
999
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1000
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1001
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1002
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1003
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1004
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1005
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1006
+ }>>>;
1007
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1008
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1009
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1010
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1011
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1012
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1013
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1014
+ }>>>;
1015
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1016
+ }>>;
1017
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1018
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1019
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1020
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1021
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1022
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1023
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1024
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1025
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1026
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1027
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1028
+ }>>>;
1029
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1030
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1031
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1032
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1033
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1034
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1035
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1036
+ }>>>;
1037
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1038
+ }>>;
1039
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1040
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1041
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1042
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1043
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1044
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1045
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1046
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1047
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1048
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1049
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1050
+ }>>>;
1051
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1052
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1053
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1054
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1055
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1056
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1057
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1058
+ }>>>;
1059
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1060
+ }>>;
1061
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1062
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1063
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1064
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1065
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1066
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1067
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1068
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1069
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1070
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1071
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1072
+ }>>>;
1073
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1074
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1075
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1076
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1077
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1078
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1079
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1080
+ }>>>;
1081
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1082
+ }>>;
1083
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1084
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1085
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1086
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1087
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1088
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1089
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1090
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1091
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1092
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1093
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1094
+ }>>>;
1095
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1096
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1097
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1098
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1099
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1100
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1101
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1102
+ }>>>;
1103
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1104
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1105
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1106
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1107
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1108
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1109
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1110
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1111
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1112
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1113
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1114
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1115
+ }>>>;
1116
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1117
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1118
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1119
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1120
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1121
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1122
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1123
+ }>>>;
1124
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1125
+ }>>>;
1126
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1127
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1128
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1129
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1130
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1131
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1132
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1133
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1134
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1135
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1136
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1137
+ }>>>;
1138
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1139
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1140
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1141
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1142
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1143
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1144
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1145
+ }>>>;
1146
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1147
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1148
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1149
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1150
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1151
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1152
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1153
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1154
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1155
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1156
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1157
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1158
+ }>>>;
1159
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1160
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1161
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1162
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1163
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1164
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1165
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1166
+ }>>>;
1167
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1168
+ }>>>;
1169
+ }>, import("@feathersjs/typebox").TObject<{
1170
+ [key: string]: import("@feathersjs/typebox").TSchema;
1171
+ } | undefined>]>>]>>;
1172
+ }>>>;
1173
+ }>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1174
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1175
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1176
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1177
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1178
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1179
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1180
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1181
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1182
+ }>, import("@feathersjs/typebox").TObject<{
1183
+ [key: string]: import("@feathersjs/typebox").TSchema;
1184
+ } | undefined>]>>]>>;
1185
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1186
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1187
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1188
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1189
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1190
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1191
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1192
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1193
+ }>, import("@feathersjs/typebox").TObject<{
1194
+ [key: string]: import("@feathersjs/typebox").TSchema;
1195
+ } | undefined>]>>]>>;
1196
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1197
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1198
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1199
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1200
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1201
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1202
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1203
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
1204
+ }>, import("@feathersjs/typebox").TObject<{
1205
+ [key: string]: import("@feathersjs/typebox").TSchema;
1206
+ } | undefined>]>>]>>;
1207
+ text: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1208
+ $gt: import("@feathersjs/typebox").TString<string>;
1209
+ $gte: import("@feathersjs/typebox").TString<string>;
1210
+ $lt: import("@feathersjs/typebox").TString<string>;
1211
+ $lte: import("@feathersjs/typebox").TString<string>;
1212
+ $ne: import("@feathersjs/typebox").TString<string>;
1213
+ $in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1214
+ $nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1215
+ }>, import("@feathersjs/typebox").TObject<{
1216
+ [key: string]: import("@feathersjs/typebox").TSchema;
1217
+ } | undefined>]>>]>>;
1218
+ role: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1219
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1220
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1221
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1222
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1223
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>;
1224
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
1225
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"assistant">]>>;
1226
+ }>, import("@feathersjs/typebox").TObject<{
1227
+ [key: string]: import("@feathersjs/typebox").TSchema;
1228
+ } | undefined>]>>]>>;
1229
+ sessionId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1230
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1231
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1232
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1233
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1234
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1235
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1236
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1237
+ }>, import("@feathersjs/typebox").TObject<{
1238
+ [key: string]: import("@feathersjs/typebox").TSchema;
1239
+ } | undefined>]>>]>>;
1240
+ agentId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1241
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1242
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1243
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1244
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1245
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1246
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1247
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
1248
+ }>, import("@feathersjs/typebox").TObject<{
1249
+ [key: string]: import("@feathersjs/typebox").TSchema;
1250
+ } | undefined>]>>]>>;
1251
+ trace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1252
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1253
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1254
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1255
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1256
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1257
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1258
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1259
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1260
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1261
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1262
+ }>>>;
1263
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1264
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1265
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1266
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1267
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1268
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1269
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1270
+ }>>>;
1271
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1272
+ }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1273
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1274
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1275
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1276
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1277
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1278
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1279
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1280
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1281
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1282
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1283
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1284
+ }>>>;
1285
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1286
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1287
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1288
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1289
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1290
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1291
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1292
+ }>>>;
1293
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1294
+ }>>;
1295
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1296
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1297
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1298
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1299
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1300
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1301
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1302
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1303
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1304
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1305
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1306
+ }>>>;
1307
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1308
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1309
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1310
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1311
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1312
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1313
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1314
+ }>>>;
1315
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1316
+ }>>;
1317
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1318
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1319
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1320
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1321
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1322
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1323
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1324
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1325
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1326
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1327
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1328
+ }>>>;
1329
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1330
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1331
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1332
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1333
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1334
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1335
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1336
+ }>>>;
1337
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1338
+ }>>;
1339
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1340
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1341
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1342
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1343
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1344
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1345
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1346
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1347
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1348
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1349
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1350
+ }>>>;
1351
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1352
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1353
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1354
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1355
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1356
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1357
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1358
+ }>>>;
1359
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1360
+ }>>;
1361
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1362
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1363
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1364
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1365
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1366
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1367
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1368
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1369
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1370
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1371
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1372
+ }>>>;
1373
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1374
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1375
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1376
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1377
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1378
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1379
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1380
+ }>>>;
1381
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1382
+ }>>;
1383
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1384
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1385
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1386
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1387
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1388
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1389
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1390
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1391
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1392
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1393
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1394
+ }>>>;
1395
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1396
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1397
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1398
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1399
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1400
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1401
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1402
+ }>>>;
1403
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1404
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1405
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1406
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1407
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1408
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1409
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1410
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1411
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1412
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1413
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1414
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1415
+ }>>>;
1416
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1417
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1418
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1419
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1420
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1421
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1422
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1423
+ }>>>;
1424
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1425
+ }>>>;
1426
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1427
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1428
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1429
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1430
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1431
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1432
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1433
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1434
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1435
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1436
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1437
+ }>>>;
1438
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1439
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1440
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1441
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1442
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1443
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1444
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1445
+ }>>>;
1446
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1447
+ }>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1448
+ rationale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>>;
1449
+ toolCalls: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1450
+ actionGroupName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1451
+ apiPath: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1452
+ verb: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1453
+ parameters: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1454
+ requestBody: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1455
+ response: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1456
+ success: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1457
+ executionTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1458
+ }>>>;
1459
+ modelInvocations: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1460
+ foundationModel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1461
+ inputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1462
+ outputTokens: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1463
+ totalTimeMs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1464
+ startTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1465
+ endTime: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1466
+ }>>>;
1467
+ fullTrace: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1468
+ }>>>;
1469
+ }>, import("@feathersjs/typebox").TObject<{
1470
+ [key: string]: import("@feathersjs/typebox").TSchema;
1471
+ } | undefined>]>>]>>;
1472
+ }>>]>, import("@feathersjs/typebox").TObject<{}>]>;
1473
+ export type AgentsSessionsConversationsQuery = Static<typeof agentsSessionsConversationsQuerySchema>;
1474
+ export declare const agentsSessionsConversationsQueryValidator: import("@feathersjs/schema").Validator<any, any>;
1475
+ export declare const agentsSessionsConversationsQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
1476
+ $limit: number;
1477
+ $skip: number;
1478
+ $sort: {
1479
+ _id?: number | undefined;
1480
+ createdAt?: number | undefined;
1481
+ updatedAt?: number | undefined;
1482
+ text?: number | undefined;
1483
+ role?: number | undefined;
1484
+ sessionId?: number | undefined;
1485
+ agentId?: number | undefined;
1486
+ trace?: number | undefined;
1487
+ };
1488
+ $select: ("_id" | "createdAt" | "updatedAt" | "text" | "role" | "sessionId" | "agentId" | "trace")[];
1489
+ $and: ({
1490
+ _id?: string | {} | Partial<{
1491
+ $gt: string | {};
1492
+ $gte: string | {};
1493
+ $lt: string | {};
1494
+ $lte: string | {};
1495
+ $ne: string | {};
1496
+ $in: string | {} | (string | {})[];
1497
+ $nin: string | {} | (string | {})[];
1498
+ } & {}> | undefined;
1499
+ createdAt?: any;
1500
+ updatedAt?: any;
1501
+ text?: string | Partial<{
1502
+ $gt: string;
1503
+ $gte: string;
1504
+ $lt: string;
1505
+ $lte: string;
1506
+ $ne: string;
1507
+ $in: string | string[];
1508
+ $nin: string | string[];
1509
+ } & {}> | undefined;
1510
+ role?: "user" | "assistant" | Partial<{
1511
+ $gt: "user" | "assistant";
1512
+ $gte: "user" | "assistant";
1513
+ $lt: "user" | "assistant";
1514
+ $lte: "user" | "assistant";
1515
+ $ne: "user" | "assistant";
1516
+ $in: "user" | "assistant" | ("user" | "assistant")[];
1517
+ $nin: "user" | "assistant" | ("user" | "assistant")[];
1518
+ } & {}> | undefined;
1519
+ sessionId?: string | Partial<{
1520
+ $gt?: string | undefined;
1521
+ $gte?: string | undefined;
1522
+ $lt?: string | undefined;
1523
+ $lte?: string | undefined;
1524
+ $ne?: string | undefined;
1525
+ $in: string | string[];
1526
+ $nin: string | string[];
1527
+ } & {}> | undefined;
1528
+ agentId?: string | Partial<{
1529
+ $gt?: string | undefined;
1530
+ $gte?: string | undefined;
1531
+ $lt?: string | undefined;
1532
+ $lte?: string | undefined;
1533
+ $ne?: string | undefined;
1534
+ $in: string | string[];
1535
+ $nin: string | string[];
1536
+ } & {}> | undefined;
1537
+ trace?: {
1538
+ rationale?: string[] | undefined;
1539
+ toolCalls?: {
1540
+ response?: any;
1541
+ actionGroupName?: string | undefined;
1542
+ apiPath?: string | undefined;
1543
+ verb?: string | undefined;
1544
+ parameters?: any;
1545
+ requestBody?: any;
1546
+ success?: boolean | undefined;
1547
+ executionTimeMs?: number | undefined;
1548
+ }[] | undefined;
1549
+ modelInvocations?: {
1550
+ foundationModel?: string | undefined;
1551
+ inputTokens?: number | undefined;
1552
+ outputTokens?: number | undefined;
1553
+ totalTimeMs?: number | undefined;
1554
+ startTime?: string | undefined;
1555
+ endTime?: string | undefined;
1556
+ }[] | undefined;
1557
+ fullTrace?: any;
1558
+ } | Partial<{
1559
+ $gt?: {
1560
+ rationale?: string[] | undefined;
1561
+ toolCalls?: {
1562
+ response?: any;
1563
+ actionGroupName?: string | undefined;
1564
+ apiPath?: string | undefined;
1565
+ verb?: string | undefined;
1566
+ parameters?: any;
1567
+ requestBody?: any;
1568
+ success?: boolean | undefined;
1569
+ executionTimeMs?: number | undefined;
1570
+ }[] | undefined;
1571
+ modelInvocations?: {
1572
+ foundationModel?: string | undefined;
1573
+ inputTokens?: number | undefined;
1574
+ outputTokens?: number | undefined;
1575
+ totalTimeMs?: number | undefined;
1576
+ startTime?: string | undefined;
1577
+ endTime?: string | undefined;
1578
+ }[] | undefined;
1579
+ fullTrace?: any;
1580
+ } | undefined;
1581
+ $gte?: {
1582
+ rationale?: string[] | undefined;
1583
+ toolCalls?: {
1584
+ response?: any;
1585
+ actionGroupName?: string | undefined;
1586
+ apiPath?: string | undefined;
1587
+ verb?: string | undefined;
1588
+ parameters?: any;
1589
+ requestBody?: any;
1590
+ success?: boolean | undefined;
1591
+ executionTimeMs?: number | undefined;
1592
+ }[] | undefined;
1593
+ modelInvocations?: {
1594
+ foundationModel?: string | undefined;
1595
+ inputTokens?: number | undefined;
1596
+ outputTokens?: number | undefined;
1597
+ totalTimeMs?: number | undefined;
1598
+ startTime?: string | undefined;
1599
+ endTime?: string | undefined;
1600
+ }[] | undefined;
1601
+ fullTrace?: any;
1602
+ } | undefined;
1603
+ $lt?: {
1604
+ rationale?: string[] | undefined;
1605
+ toolCalls?: {
1606
+ response?: any;
1607
+ actionGroupName?: string | undefined;
1608
+ apiPath?: string | undefined;
1609
+ verb?: string | undefined;
1610
+ parameters?: any;
1611
+ requestBody?: any;
1612
+ success?: boolean | undefined;
1613
+ executionTimeMs?: number | undefined;
1614
+ }[] | undefined;
1615
+ modelInvocations?: {
1616
+ foundationModel?: string | undefined;
1617
+ inputTokens?: number | undefined;
1618
+ outputTokens?: number | undefined;
1619
+ totalTimeMs?: number | undefined;
1620
+ startTime?: string | undefined;
1621
+ endTime?: string | undefined;
1622
+ }[] | undefined;
1623
+ fullTrace?: any;
1624
+ } | undefined;
1625
+ $lte?: {
1626
+ rationale?: string[] | undefined;
1627
+ toolCalls?: {
1628
+ response?: any;
1629
+ actionGroupName?: string | undefined;
1630
+ apiPath?: string | undefined;
1631
+ verb?: string | undefined;
1632
+ parameters?: any;
1633
+ requestBody?: any;
1634
+ success?: boolean | undefined;
1635
+ executionTimeMs?: number | undefined;
1636
+ }[] | undefined;
1637
+ modelInvocations?: {
1638
+ foundationModel?: string | undefined;
1639
+ inputTokens?: number | undefined;
1640
+ outputTokens?: number | undefined;
1641
+ totalTimeMs?: number | undefined;
1642
+ startTime?: string | undefined;
1643
+ endTime?: string | undefined;
1644
+ }[] | undefined;
1645
+ fullTrace?: any;
1646
+ } | undefined;
1647
+ $ne?: {
1648
+ rationale?: string[] | undefined;
1649
+ toolCalls?: {
1650
+ response?: any;
1651
+ actionGroupName?: string | undefined;
1652
+ apiPath?: string | undefined;
1653
+ verb?: string | undefined;
1654
+ parameters?: any;
1655
+ requestBody?: any;
1656
+ success?: boolean | undefined;
1657
+ executionTimeMs?: number | undefined;
1658
+ }[] | undefined;
1659
+ modelInvocations?: {
1660
+ foundationModel?: string | undefined;
1661
+ inputTokens?: number | undefined;
1662
+ outputTokens?: number | undefined;
1663
+ totalTimeMs?: number | undefined;
1664
+ startTime?: string | undefined;
1665
+ endTime?: string | undefined;
1666
+ }[] | undefined;
1667
+ fullTrace?: any;
1668
+ } | undefined;
1669
+ $in: {
1670
+ rationale?: string[] | undefined;
1671
+ toolCalls?: {
1672
+ response?: any;
1673
+ actionGroupName?: string | undefined;
1674
+ apiPath?: string | undefined;
1675
+ verb?: string | undefined;
1676
+ parameters?: any;
1677
+ requestBody?: any;
1678
+ success?: boolean | undefined;
1679
+ executionTimeMs?: number | undefined;
1680
+ }[] | undefined;
1681
+ modelInvocations?: {
1682
+ foundationModel?: string | undefined;
1683
+ inputTokens?: number | undefined;
1684
+ outputTokens?: number | undefined;
1685
+ totalTimeMs?: number | undefined;
1686
+ startTime?: string | undefined;
1687
+ endTime?: string | undefined;
1688
+ }[] | undefined;
1689
+ fullTrace?: any;
1690
+ } | {
1691
+ rationale?: string[] | undefined;
1692
+ toolCalls?: {
1693
+ response?: any;
1694
+ actionGroupName?: string | undefined;
1695
+ apiPath?: string | undefined;
1696
+ verb?: string | undefined;
1697
+ parameters?: any;
1698
+ requestBody?: any;
1699
+ success?: boolean | undefined;
1700
+ executionTimeMs?: number | undefined;
1701
+ }[] | undefined;
1702
+ modelInvocations?: {
1703
+ foundationModel?: string | undefined;
1704
+ inputTokens?: number | undefined;
1705
+ outputTokens?: number | undefined;
1706
+ totalTimeMs?: number | undefined;
1707
+ startTime?: string | undefined;
1708
+ endTime?: string | undefined;
1709
+ }[] | undefined;
1710
+ fullTrace?: any;
1711
+ }[];
1712
+ $nin: {
1713
+ rationale?: string[] | undefined;
1714
+ toolCalls?: {
1715
+ response?: any;
1716
+ actionGroupName?: string | undefined;
1717
+ apiPath?: string | undefined;
1718
+ verb?: string | undefined;
1719
+ parameters?: any;
1720
+ requestBody?: any;
1721
+ success?: boolean | undefined;
1722
+ executionTimeMs?: number | undefined;
1723
+ }[] | undefined;
1724
+ modelInvocations?: {
1725
+ foundationModel?: string | undefined;
1726
+ inputTokens?: number | undefined;
1727
+ outputTokens?: number | undefined;
1728
+ totalTimeMs?: number | undefined;
1729
+ startTime?: string | undefined;
1730
+ endTime?: string | undefined;
1731
+ }[] | undefined;
1732
+ fullTrace?: any;
1733
+ } | {
1734
+ rationale?: string[] | undefined;
1735
+ toolCalls?: {
1736
+ response?: any;
1737
+ actionGroupName?: string | undefined;
1738
+ apiPath?: string | undefined;
1739
+ verb?: string | undefined;
1740
+ parameters?: any;
1741
+ requestBody?: any;
1742
+ success?: boolean | undefined;
1743
+ executionTimeMs?: number | undefined;
1744
+ }[] | undefined;
1745
+ modelInvocations?: {
1746
+ foundationModel?: string | undefined;
1747
+ inputTokens?: number | undefined;
1748
+ outputTokens?: number | undefined;
1749
+ totalTimeMs?: number | undefined;
1750
+ startTime?: string | undefined;
1751
+ endTime?: string | undefined;
1752
+ }[] | undefined;
1753
+ fullTrace?: any;
1754
+ }[];
1755
+ } & {}> | undefined;
1756
+ } | {
1757
+ $or: {
1758
+ _id?: string | {} | Partial<{
1759
+ $gt: string | {};
1760
+ $gte: string | {};
1761
+ $lt: string | {};
1762
+ $lte: string | {};
1763
+ $ne: string | {};
1764
+ $in: string | {} | (string | {})[];
1765
+ $nin: string | {} | (string | {})[];
1766
+ } & {}> | undefined;
1767
+ createdAt?: any;
1768
+ updatedAt?: any;
1769
+ text?: string | Partial<{
1770
+ $gt: string;
1771
+ $gte: string;
1772
+ $lt: string;
1773
+ $lte: string;
1774
+ $ne: string;
1775
+ $in: string | string[];
1776
+ $nin: string | string[];
1777
+ } & {}> | undefined;
1778
+ role?: "user" | "assistant" | Partial<{
1779
+ $gt: "user" | "assistant";
1780
+ $gte: "user" | "assistant";
1781
+ $lt: "user" | "assistant";
1782
+ $lte: "user" | "assistant";
1783
+ $ne: "user" | "assistant";
1784
+ $in: "user" | "assistant" | ("user" | "assistant")[];
1785
+ $nin: "user" | "assistant" | ("user" | "assistant")[];
1786
+ } & {}> | undefined;
1787
+ sessionId?: string | Partial<{
1788
+ $gt?: string | undefined;
1789
+ $gte?: string | undefined;
1790
+ $lt?: string | undefined;
1791
+ $lte?: string | undefined;
1792
+ $ne?: string | undefined;
1793
+ $in: string | string[];
1794
+ $nin: string | string[];
1795
+ } & {}> | undefined;
1796
+ agentId?: string | Partial<{
1797
+ $gt?: string | undefined;
1798
+ $gte?: string | undefined;
1799
+ $lt?: string | undefined;
1800
+ $lte?: string | undefined;
1801
+ $ne?: string | undefined;
1802
+ $in: string | string[];
1803
+ $nin: string | string[];
1804
+ } & {}> | undefined;
1805
+ trace?: {
1806
+ rationale?: string[] | undefined;
1807
+ toolCalls?: {
1808
+ response?: any;
1809
+ actionGroupName?: string | undefined;
1810
+ apiPath?: string | undefined;
1811
+ verb?: string | undefined;
1812
+ parameters?: any;
1813
+ requestBody?: any;
1814
+ success?: boolean | undefined;
1815
+ executionTimeMs?: number | undefined;
1816
+ }[] | undefined;
1817
+ modelInvocations?: {
1818
+ foundationModel?: string | undefined;
1819
+ inputTokens?: number | undefined;
1820
+ outputTokens?: number | undefined;
1821
+ totalTimeMs?: number | undefined;
1822
+ startTime?: string | undefined;
1823
+ endTime?: string | undefined;
1824
+ }[] | undefined;
1825
+ fullTrace?: any;
1826
+ } | Partial<{
1827
+ $gt?: {
1828
+ rationale?: string[] | undefined;
1829
+ toolCalls?: {
1830
+ response?: any;
1831
+ actionGroupName?: string | undefined;
1832
+ apiPath?: string | undefined;
1833
+ verb?: string | undefined;
1834
+ parameters?: any;
1835
+ requestBody?: any;
1836
+ success?: boolean | undefined;
1837
+ executionTimeMs?: number | undefined;
1838
+ }[] | undefined;
1839
+ modelInvocations?: {
1840
+ foundationModel?: string | undefined;
1841
+ inputTokens?: number | undefined;
1842
+ outputTokens?: number | undefined;
1843
+ totalTimeMs?: number | undefined;
1844
+ startTime?: string | undefined;
1845
+ endTime?: string | undefined;
1846
+ }[] | undefined;
1847
+ fullTrace?: any;
1848
+ } | undefined;
1849
+ $gte?: {
1850
+ rationale?: string[] | undefined;
1851
+ toolCalls?: {
1852
+ response?: any;
1853
+ actionGroupName?: string | undefined;
1854
+ apiPath?: string | undefined;
1855
+ verb?: string | undefined;
1856
+ parameters?: any;
1857
+ requestBody?: any;
1858
+ success?: boolean | undefined;
1859
+ executionTimeMs?: number | undefined;
1860
+ }[] | undefined;
1861
+ modelInvocations?: {
1862
+ foundationModel?: string | undefined;
1863
+ inputTokens?: number | undefined;
1864
+ outputTokens?: number | undefined;
1865
+ totalTimeMs?: number | undefined;
1866
+ startTime?: string | undefined;
1867
+ endTime?: string | undefined;
1868
+ }[] | undefined;
1869
+ fullTrace?: any;
1870
+ } | undefined;
1871
+ $lt?: {
1872
+ rationale?: string[] | undefined;
1873
+ toolCalls?: {
1874
+ response?: any;
1875
+ actionGroupName?: string | undefined;
1876
+ apiPath?: string | undefined;
1877
+ verb?: string | undefined;
1878
+ parameters?: any;
1879
+ requestBody?: any;
1880
+ success?: boolean | undefined;
1881
+ executionTimeMs?: number | undefined;
1882
+ }[] | undefined;
1883
+ modelInvocations?: {
1884
+ foundationModel?: string | undefined;
1885
+ inputTokens?: number | undefined;
1886
+ outputTokens?: number | undefined;
1887
+ totalTimeMs?: number | undefined;
1888
+ startTime?: string | undefined;
1889
+ endTime?: string | undefined;
1890
+ }[] | undefined;
1891
+ fullTrace?: any;
1892
+ } | undefined;
1893
+ $lte?: {
1894
+ rationale?: string[] | undefined;
1895
+ toolCalls?: {
1896
+ response?: any;
1897
+ actionGroupName?: string | undefined;
1898
+ apiPath?: string | undefined;
1899
+ verb?: string | undefined;
1900
+ parameters?: any;
1901
+ requestBody?: any;
1902
+ success?: boolean | undefined;
1903
+ executionTimeMs?: number | undefined;
1904
+ }[] | undefined;
1905
+ modelInvocations?: {
1906
+ foundationModel?: string | undefined;
1907
+ inputTokens?: number | undefined;
1908
+ outputTokens?: number | undefined;
1909
+ totalTimeMs?: number | undefined;
1910
+ startTime?: string | undefined;
1911
+ endTime?: string | undefined;
1912
+ }[] | undefined;
1913
+ fullTrace?: any;
1914
+ } | undefined;
1915
+ $ne?: {
1916
+ rationale?: string[] | undefined;
1917
+ toolCalls?: {
1918
+ response?: any;
1919
+ actionGroupName?: string | undefined;
1920
+ apiPath?: string | undefined;
1921
+ verb?: string | undefined;
1922
+ parameters?: any;
1923
+ requestBody?: any;
1924
+ success?: boolean | undefined;
1925
+ executionTimeMs?: number | undefined;
1926
+ }[] | undefined;
1927
+ modelInvocations?: {
1928
+ foundationModel?: string | undefined;
1929
+ inputTokens?: number | undefined;
1930
+ outputTokens?: number | undefined;
1931
+ totalTimeMs?: number | undefined;
1932
+ startTime?: string | undefined;
1933
+ endTime?: string | undefined;
1934
+ }[] | undefined;
1935
+ fullTrace?: any;
1936
+ } | undefined;
1937
+ $in: {
1938
+ rationale?: string[] | undefined;
1939
+ toolCalls?: {
1940
+ response?: any;
1941
+ actionGroupName?: string | undefined;
1942
+ apiPath?: string | undefined;
1943
+ verb?: string | undefined;
1944
+ parameters?: any;
1945
+ requestBody?: any;
1946
+ success?: boolean | undefined;
1947
+ executionTimeMs?: number | undefined;
1948
+ }[] | undefined;
1949
+ modelInvocations?: {
1950
+ foundationModel?: string | undefined;
1951
+ inputTokens?: number | undefined;
1952
+ outputTokens?: number | undefined;
1953
+ totalTimeMs?: number | undefined;
1954
+ startTime?: string | undefined;
1955
+ endTime?: string | undefined;
1956
+ }[] | undefined;
1957
+ fullTrace?: any;
1958
+ } | {
1959
+ rationale?: string[] | undefined;
1960
+ toolCalls?: {
1961
+ response?: any;
1962
+ actionGroupName?: string | undefined;
1963
+ apiPath?: string | undefined;
1964
+ verb?: string | undefined;
1965
+ parameters?: any;
1966
+ requestBody?: any;
1967
+ success?: boolean | undefined;
1968
+ executionTimeMs?: number | undefined;
1969
+ }[] | undefined;
1970
+ modelInvocations?: {
1971
+ foundationModel?: string | undefined;
1972
+ inputTokens?: number | undefined;
1973
+ outputTokens?: number | undefined;
1974
+ totalTimeMs?: number | undefined;
1975
+ startTime?: string | undefined;
1976
+ endTime?: string | undefined;
1977
+ }[] | undefined;
1978
+ fullTrace?: any;
1979
+ }[];
1980
+ $nin: {
1981
+ rationale?: string[] | undefined;
1982
+ toolCalls?: {
1983
+ response?: any;
1984
+ actionGroupName?: string | undefined;
1985
+ apiPath?: string | undefined;
1986
+ verb?: string | undefined;
1987
+ parameters?: any;
1988
+ requestBody?: any;
1989
+ success?: boolean | undefined;
1990
+ executionTimeMs?: number | undefined;
1991
+ }[] | undefined;
1992
+ modelInvocations?: {
1993
+ foundationModel?: string | undefined;
1994
+ inputTokens?: number | undefined;
1995
+ outputTokens?: number | undefined;
1996
+ totalTimeMs?: number | undefined;
1997
+ startTime?: string | undefined;
1998
+ endTime?: string | undefined;
1999
+ }[] | undefined;
2000
+ fullTrace?: any;
2001
+ } | {
2002
+ rationale?: string[] | undefined;
2003
+ toolCalls?: {
2004
+ response?: any;
2005
+ actionGroupName?: string | undefined;
2006
+ apiPath?: string | undefined;
2007
+ verb?: string | undefined;
2008
+ parameters?: any;
2009
+ requestBody?: any;
2010
+ success?: boolean | undefined;
2011
+ executionTimeMs?: number | undefined;
2012
+ }[] | undefined;
2013
+ modelInvocations?: {
2014
+ foundationModel?: string | undefined;
2015
+ inputTokens?: number | undefined;
2016
+ outputTokens?: number | undefined;
2017
+ totalTimeMs?: number | undefined;
2018
+ startTime?: string | undefined;
2019
+ endTime?: string | undefined;
2020
+ }[] | undefined;
2021
+ fullTrace?: any;
2022
+ }[];
2023
+ } & {}> | undefined;
2024
+ }[];
2025
+ })[];
2026
+ $or: {
2027
+ _id?: string | {} | Partial<{
2028
+ $gt: string | {};
2029
+ $gte: string | {};
2030
+ $lt: string | {};
2031
+ $lte: string | {};
2032
+ $ne: string | {};
2033
+ $in: string | {} | (string | {})[];
2034
+ $nin: string | {} | (string | {})[];
2035
+ } & {}> | undefined;
2036
+ createdAt?: any;
2037
+ updatedAt?: any;
2038
+ text?: string | Partial<{
2039
+ $gt: string;
2040
+ $gte: string;
2041
+ $lt: string;
2042
+ $lte: string;
2043
+ $ne: string;
2044
+ $in: string | string[];
2045
+ $nin: string | string[];
2046
+ } & {}> | undefined;
2047
+ role?: "user" | "assistant" | Partial<{
2048
+ $gt: "user" | "assistant";
2049
+ $gte: "user" | "assistant";
2050
+ $lt: "user" | "assistant";
2051
+ $lte: "user" | "assistant";
2052
+ $ne: "user" | "assistant";
2053
+ $in: "user" | "assistant" | ("user" | "assistant")[];
2054
+ $nin: "user" | "assistant" | ("user" | "assistant")[];
2055
+ } & {}> | undefined;
2056
+ sessionId?: string | Partial<{
2057
+ $gt?: string | undefined;
2058
+ $gte?: string | undefined;
2059
+ $lt?: string | undefined;
2060
+ $lte?: string | undefined;
2061
+ $ne?: string | undefined;
2062
+ $in: string | string[];
2063
+ $nin: string | string[];
2064
+ } & {}> | undefined;
2065
+ agentId?: string | Partial<{
2066
+ $gt?: string | undefined;
2067
+ $gte?: string | undefined;
2068
+ $lt?: string | undefined;
2069
+ $lte?: string | undefined;
2070
+ $ne?: string | undefined;
2071
+ $in: string | string[];
2072
+ $nin: string | string[];
2073
+ } & {}> | undefined;
2074
+ trace?: {
2075
+ rationale?: string[] | undefined;
2076
+ toolCalls?: {
2077
+ response?: any;
2078
+ actionGroupName?: string | undefined;
2079
+ apiPath?: string | undefined;
2080
+ verb?: string | undefined;
2081
+ parameters?: any;
2082
+ requestBody?: any;
2083
+ success?: boolean | undefined;
2084
+ executionTimeMs?: number | undefined;
2085
+ }[] | undefined;
2086
+ modelInvocations?: {
2087
+ foundationModel?: string | undefined;
2088
+ inputTokens?: number | undefined;
2089
+ outputTokens?: number | undefined;
2090
+ totalTimeMs?: number | undefined;
2091
+ startTime?: string | undefined;
2092
+ endTime?: string | undefined;
2093
+ }[] | undefined;
2094
+ fullTrace?: any;
2095
+ } | Partial<{
2096
+ $gt?: {
2097
+ rationale?: string[] | undefined;
2098
+ toolCalls?: {
2099
+ response?: any;
2100
+ actionGroupName?: string | undefined;
2101
+ apiPath?: string | undefined;
2102
+ verb?: string | undefined;
2103
+ parameters?: any;
2104
+ requestBody?: any;
2105
+ success?: boolean | undefined;
2106
+ executionTimeMs?: number | undefined;
2107
+ }[] | undefined;
2108
+ modelInvocations?: {
2109
+ foundationModel?: string | undefined;
2110
+ inputTokens?: number | undefined;
2111
+ outputTokens?: number | undefined;
2112
+ totalTimeMs?: number | undefined;
2113
+ startTime?: string | undefined;
2114
+ endTime?: string | undefined;
2115
+ }[] | undefined;
2116
+ fullTrace?: any;
2117
+ } | undefined;
2118
+ $gte?: {
2119
+ rationale?: string[] | undefined;
2120
+ toolCalls?: {
2121
+ response?: any;
2122
+ actionGroupName?: string | undefined;
2123
+ apiPath?: string | undefined;
2124
+ verb?: string | undefined;
2125
+ parameters?: any;
2126
+ requestBody?: any;
2127
+ success?: boolean | undefined;
2128
+ executionTimeMs?: number | undefined;
2129
+ }[] | undefined;
2130
+ modelInvocations?: {
2131
+ foundationModel?: string | undefined;
2132
+ inputTokens?: number | undefined;
2133
+ outputTokens?: number | undefined;
2134
+ totalTimeMs?: number | undefined;
2135
+ startTime?: string | undefined;
2136
+ endTime?: string | undefined;
2137
+ }[] | undefined;
2138
+ fullTrace?: any;
2139
+ } | undefined;
2140
+ $lt?: {
2141
+ rationale?: string[] | undefined;
2142
+ toolCalls?: {
2143
+ response?: any;
2144
+ actionGroupName?: string | undefined;
2145
+ apiPath?: string | undefined;
2146
+ verb?: string | undefined;
2147
+ parameters?: any;
2148
+ requestBody?: any;
2149
+ success?: boolean | undefined;
2150
+ executionTimeMs?: number | undefined;
2151
+ }[] | undefined;
2152
+ modelInvocations?: {
2153
+ foundationModel?: string | undefined;
2154
+ inputTokens?: number | undefined;
2155
+ outputTokens?: number | undefined;
2156
+ totalTimeMs?: number | undefined;
2157
+ startTime?: string | undefined;
2158
+ endTime?: string | undefined;
2159
+ }[] | undefined;
2160
+ fullTrace?: any;
2161
+ } | undefined;
2162
+ $lte?: {
2163
+ rationale?: string[] | undefined;
2164
+ toolCalls?: {
2165
+ response?: any;
2166
+ actionGroupName?: string | undefined;
2167
+ apiPath?: string | undefined;
2168
+ verb?: string | undefined;
2169
+ parameters?: any;
2170
+ requestBody?: any;
2171
+ success?: boolean | undefined;
2172
+ executionTimeMs?: number | undefined;
2173
+ }[] | undefined;
2174
+ modelInvocations?: {
2175
+ foundationModel?: string | undefined;
2176
+ inputTokens?: number | undefined;
2177
+ outputTokens?: number | undefined;
2178
+ totalTimeMs?: number | undefined;
2179
+ startTime?: string | undefined;
2180
+ endTime?: string | undefined;
2181
+ }[] | undefined;
2182
+ fullTrace?: any;
2183
+ } | undefined;
2184
+ $ne?: {
2185
+ rationale?: string[] | undefined;
2186
+ toolCalls?: {
2187
+ response?: any;
2188
+ actionGroupName?: string | undefined;
2189
+ apiPath?: string | undefined;
2190
+ verb?: string | undefined;
2191
+ parameters?: any;
2192
+ requestBody?: any;
2193
+ success?: boolean | undefined;
2194
+ executionTimeMs?: number | undefined;
2195
+ }[] | undefined;
2196
+ modelInvocations?: {
2197
+ foundationModel?: string | undefined;
2198
+ inputTokens?: number | undefined;
2199
+ outputTokens?: number | undefined;
2200
+ totalTimeMs?: number | undefined;
2201
+ startTime?: string | undefined;
2202
+ endTime?: string | undefined;
2203
+ }[] | undefined;
2204
+ fullTrace?: any;
2205
+ } | undefined;
2206
+ $in: {
2207
+ rationale?: string[] | undefined;
2208
+ toolCalls?: {
2209
+ response?: any;
2210
+ actionGroupName?: string | undefined;
2211
+ apiPath?: string | undefined;
2212
+ verb?: string | undefined;
2213
+ parameters?: any;
2214
+ requestBody?: any;
2215
+ success?: boolean | undefined;
2216
+ executionTimeMs?: number | undefined;
2217
+ }[] | undefined;
2218
+ modelInvocations?: {
2219
+ foundationModel?: string | undefined;
2220
+ inputTokens?: number | undefined;
2221
+ outputTokens?: number | undefined;
2222
+ totalTimeMs?: number | undefined;
2223
+ startTime?: string | undefined;
2224
+ endTime?: string | undefined;
2225
+ }[] | undefined;
2226
+ fullTrace?: any;
2227
+ } | {
2228
+ rationale?: string[] | undefined;
2229
+ toolCalls?: {
2230
+ response?: any;
2231
+ actionGroupName?: string | undefined;
2232
+ apiPath?: string | undefined;
2233
+ verb?: string | undefined;
2234
+ parameters?: any;
2235
+ requestBody?: any;
2236
+ success?: boolean | undefined;
2237
+ executionTimeMs?: number | undefined;
2238
+ }[] | undefined;
2239
+ modelInvocations?: {
2240
+ foundationModel?: string | undefined;
2241
+ inputTokens?: number | undefined;
2242
+ outputTokens?: number | undefined;
2243
+ totalTimeMs?: number | undefined;
2244
+ startTime?: string | undefined;
2245
+ endTime?: string | undefined;
2246
+ }[] | undefined;
2247
+ fullTrace?: any;
2248
+ }[];
2249
+ $nin: {
2250
+ rationale?: string[] | undefined;
2251
+ toolCalls?: {
2252
+ response?: any;
2253
+ actionGroupName?: string | undefined;
2254
+ apiPath?: string | undefined;
2255
+ verb?: string | undefined;
2256
+ parameters?: any;
2257
+ requestBody?: any;
2258
+ success?: boolean | undefined;
2259
+ executionTimeMs?: number | undefined;
2260
+ }[] | undefined;
2261
+ modelInvocations?: {
2262
+ foundationModel?: string | undefined;
2263
+ inputTokens?: number | undefined;
2264
+ outputTokens?: number | undefined;
2265
+ totalTimeMs?: number | undefined;
2266
+ startTime?: string | undefined;
2267
+ endTime?: string | undefined;
2268
+ }[] | undefined;
2269
+ fullTrace?: any;
2270
+ } | {
2271
+ rationale?: string[] | undefined;
2272
+ toolCalls?: {
2273
+ response?: any;
2274
+ actionGroupName?: string | undefined;
2275
+ apiPath?: string | undefined;
2276
+ verb?: string | undefined;
2277
+ parameters?: any;
2278
+ requestBody?: any;
2279
+ success?: boolean | undefined;
2280
+ executionTimeMs?: number | undefined;
2281
+ }[] | undefined;
2282
+ modelInvocations?: {
2283
+ foundationModel?: string | undefined;
2284
+ inputTokens?: number | undefined;
2285
+ outputTokens?: number | undefined;
2286
+ totalTimeMs?: number | undefined;
2287
+ startTime?: string | undefined;
2288
+ endTime?: string | undefined;
2289
+ }[] | undefined;
2290
+ fullTrace?: any;
2291
+ }[];
2292
+ } & {}> | undefined;
2293
+ }[];
2294
+ }> & {
2295
+ _id?: string | {} | Partial<{
2296
+ $gt: string | {};
2297
+ $gte: string | {};
2298
+ $lt: string | {};
2299
+ $lte: string | {};
2300
+ $ne: string | {};
2301
+ $in: string | {} | (string | {})[];
2302
+ $nin: string | {} | (string | {})[];
2303
+ } & {}> | undefined;
2304
+ createdAt?: any;
2305
+ updatedAt?: any;
2306
+ text?: string | Partial<{
2307
+ $gt: string;
2308
+ $gte: string;
2309
+ $lt: string;
2310
+ $lte: string;
2311
+ $ne: string;
2312
+ $in: string | string[];
2313
+ $nin: string | string[];
2314
+ } & {}> | undefined;
2315
+ role?: "user" | "assistant" | Partial<{
2316
+ $gt: "user" | "assistant";
2317
+ $gte: "user" | "assistant";
2318
+ $lt: "user" | "assistant";
2319
+ $lte: "user" | "assistant";
2320
+ $ne: "user" | "assistant";
2321
+ $in: "user" | "assistant" | ("user" | "assistant")[];
2322
+ $nin: "user" | "assistant" | ("user" | "assistant")[];
2323
+ } & {}> | undefined;
2324
+ sessionId?: string | Partial<{
2325
+ $gt?: string | undefined;
2326
+ $gte?: string | undefined;
2327
+ $lt?: string | undefined;
2328
+ $lte?: string | undefined;
2329
+ $ne?: string | undefined;
2330
+ $in: string | string[];
2331
+ $nin: string | string[];
2332
+ } & {}> | undefined;
2333
+ agentId?: string | Partial<{
2334
+ $gt?: string | undefined;
2335
+ $gte?: string | undefined;
2336
+ $lt?: string | undefined;
2337
+ $lte?: string | undefined;
2338
+ $ne?: string | undefined;
2339
+ $in: string | string[];
2340
+ $nin: string | string[];
2341
+ } & {}> | undefined;
2342
+ trace?: {
2343
+ rationale?: string[] | undefined;
2344
+ toolCalls?: {
2345
+ response?: any;
2346
+ actionGroupName?: string | undefined;
2347
+ apiPath?: string | undefined;
2348
+ verb?: string | undefined;
2349
+ parameters?: any;
2350
+ requestBody?: any;
2351
+ success?: boolean | undefined;
2352
+ executionTimeMs?: number | undefined;
2353
+ }[] | undefined;
2354
+ modelInvocations?: {
2355
+ foundationModel?: string | undefined;
2356
+ inputTokens?: number | undefined;
2357
+ outputTokens?: number | undefined;
2358
+ totalTimeMs?: number | undefined;
2359
+ startTime?: string | undefined;
2360
+ endTime?: string | undefined;
2361
+ }[] | undefined;
2362
+ fullTrace?: any;
2363
+ } | Partial<{
2364
+ $gt?: {
2365
+ rationale?: string[] | undefined;
2366
+ toolCalls?: {
2367
+ response?: any;
2368
+ actionGroupName?: string | undefined;
2369
+ apiPath?: string | undefined;
2370
+ verb?: string | undefined;
2371
+ parameters?: any;
2372
+ requestBody?: any;
2373
+ success?: boolean | undefined;
2374
+ executionTimeMs?: number | undefined;
2375
+ }[] | undefined;
2376
+ modelInvocations?: {
2377
+ foundationModel?: string | undefined;
2378
+ inputTokens?: number | undefined;
2379
+ outputTokens?: number | undefined;
2380
+ totalTimeMs?: number | undefined;
2381
+ startTime?: string | undefined;
2382
+ endTime?: string | undefined;
2383
+ }[] | undefined;
2384
+ fullTrace?: any;
2385
+ } | undefined;
2386
+ $gte?: {
2387
+ rationale?: string[] | undefined;
2388
+ toolCalls?: {
2389
+ response?: any;
2390
+ actionGroupName?: string | undefined;
2391
+ apiPath?: string | undefined;
2392
+ verb?: string | undefined;
2393
+ parameters?: any;
2394
+ requestBody?: any;
2395
+ success?: boolean | undefined;
2396
+ executionTimeMs?: number | undefined;
2397
+ }[] | undefined;
2398
+ modelInvocations?: {
2399
+ foundationModel?: string | undefined;
2400
+ inputTokens?: number | undefined;
2401
+ outputTokens?: number | undefined;
2402
+ totalTimeMs?: number | undefined;
2403
+ startTime?: string | undefined;
2404
+ endTime?: string | undefined;
2405
+ }[] | undefined;
2406
+ fullTrace?: any;
2407
+ } | undefined;
2408
+ $lt?: {
2409
+ rationale?: string[] | undefined;
2410
+ toolCalls?: {
2411
+ response?: any;
2412
+ actionGroupName?: string | undefined;
2413
+ apiPath?: string | undefined;
2414
+ verb?: string | undefined;
2415
+ parameters?: any;
2416
+ requestBody?: any;
2417
+ success?: boolean | undefined;
2418
+ executionTimeMs?: number | undefined;
2419
+ }[] | undefined;
2420
+ modelInvocations?: {
2421
+ foundationModel?: string | undefined;
2422
+ inputTokens?: number | undefined;
2423
+ outputTokens?: number | undefined;
2424
+ totalTimeMs?: number | undefined;
2425
+ startTime?: string | undefined;
2426
+ endTime?: string | undefined;
2427
+ }[] | undefined;
2428
+ fullTrace?: any;
2429
+ } | undefined;
2430
+ $lte?: {
2431
+ rationale?: string[] | undefined;
2432
+ toolCalls?: {
2433
+ response?: any;
2434
+ actionGroupName?: string | undefined;
2435
+ apiPath?: string | undefined;
2436
+ verb?: string | undefined;
2437
+ parameters?: any;
2438
+ requestBody?: any;
2439
+ success?: boolean | undefined;
2440
+ executionTimeMs?: number | undefined;
2441
+ }[] | undefined;
2442
+ modelInvocations?: {
2443
+ foundationModel?: string | undefined;
2444
+ inputTokens?: number | undefined;
2445
+ outputTokens?: number | undefined;
2446
+ totalTimeMs?: number | undefined;
2447
+ startTime?: string | undefined;
2448
+ endTime?: string | undefined;
2449
+ }[] | undefined;
2450
+ fullTrace?: any;
2451
+ } | undefined;
2452
+ $ne?: {
2453
+ rationale?: string[] | undefined;
2454
+ toolCalls?: {
2455
+ response?: any;
2456
+ actionGroupName?: string | undefined;
2457
+ apiPath?: string | undefined;
2458
+ verb?: string | undefined;
2459
+ parameters?: any;
2460
+ requestBody?: any;
2461
+ success?: boolean | undefined;
2462
+ executionTimeMs?: number | undefined;
2463
+ }[] | undefined;
2464
+ modelInvocations?: {
2465
+ foundationModel?: string | undefined;
2466
+ inputTokens?: number | undefined;
2467
+ outputTokens?: number | undefined;
2468
+ totalTimeMs?: number | undefined;
2469
+ startTime?: string | undefined;
2470
+ endTime?: string | undefined;
2471
+ }[] | undefined;
2472
+ fullTrace?: any;
2473
+ } | undefined;
2474
+ $in: {
2475
+ rationale?: string[] | undefined;
2476
+ toolCalls?: {
2477
+ response?: any;
2478
+ actionGroupName?: string | undefined;
2479
+ apiPath?: string | undefined;
2480
+ verb?: string | undefined;
2481
+ parameters?: any;
2482
+ requestBody?: any;
2483
+ success?: boolean | undefined;
2484
+ executionTimeMs?: number | undefined;
2485
+ }[] | undefined;
2486
+ modelInvocations?: {
2487
+ foundationModel?: string | undefined;
2488
+ inputTokens?: number | undefined;
2489
+ outputTokens?: number | undefined;
2490
+ totalTimeMs?: number | undefined;
2491
+ startTime?: string | undefined;
2492
+ endTime?: string | undefined;
2493
+ }[] | undefined;
2494
+ fullTrace?: any;
2495
+ } | {
2496
+ rationale?: string[] | undefined;
2497
+ toolCalls?: {
2498
+ response?: any;
2499
+ actionGroupName?: string | undefined;
2500
+ apiPath?: string | undefined;
2501
+ verb?: string | undefined;
2502
+ parameters?: any;
2503
+ requestBody?: any;
2504
+ success?: boolean | undefined;
2505
+ executionTimeMs?: number | undefined;
2506
+ }[] | undefined;
2507
+ modelInvocations?: {
2508
+ foundationModel?: string | undefined;
2509
+ inputTokens?: number | undefined;
2510
+ outputTokens?: number | undefined;
2511
+ totalTimeMs?: number | undefined;
2512
+ startTime?: string | undefined;
2513
+ endTime?: string | undefined;
2514
+ }[] | undefined;
2515
+ fullTrace?: any;
2516
+ }[];
2517
+ $nin: {
2518
+ rationale?: string[] | undefined;
2519
+ toolCalls?: {
2520
+ response?: any;
2521
+ actionGroupName?: string | undefined;
2522
+ apiPath?: string | undefined;
2523
+ verb?: string | undefined;
2524
+ parameters?: any;
2525
+ requestBody?: any;
2526
+ success?: boolean | undefined;
2527
+ executionTimeMs?: number | undefined;
2528
+ }[] | undefined;
2529
+ modelInvocations?: {
2530
+ foundationModel?: string | undefined;
2531
+ inputTokens?: number | undefined;
2532
+ outputTokens?: number | undefined;
2533
+ totalTimeMs?: number | undefined;
2534
+ startTime?: string | undefined;
2535
+ endTime?: string | undefined;
2536
+ }[] | undefined;
2537
+ fullTrace?: any;
2538
+ } | {
2539
+ rationale?: string[] | undefined;
2540
+ toolCalls?: {
2541
+ response?: any;
2542
+ actionGroupName?: string | undefined;
2543
+ apiPath?: string | undefined;
2544
+ verb?: string | undefined;
2545
+ parameters?: any;
2546
+ requestBody?: any;
2547
+ success?: boolean | undefined;
2548
+ executionTimeMs?: number | undefined;
2549
+ }[] | undefined;
2550
+ modelInvocations?: {
2551
+ foundationModel?: string | undefined;
2552
+ inputTokens?: number | undefined;
2553
+ outputTokens?: number | undefined;
2554
+ totalTimeMs?: number | undefined;
2555
+ startTime?: string | undefined;
2556
+ endTime?: string | undefined;
2557
+ }[] | undefined;
2558
+ fullTrace?: any;
2559
+ }[];
2560
+ } & {}> | undefined;
2561
+ } & {}, HookContext<AgentsSessionsConversationsService<import("./conversations.class").AgentsSessionsConversationsParams>>>;