@veroq/ai 1.0.0

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.
@@ -0,0 +1,961 @@
1
+ import * as ai from 'ai';
2
+ import * as polaris_news_api from 'polaris-news-api';
3
+ import { z } from 'zod';
4
+
5
+ declare const veroqSearch: (options?: {
6
+ apiKey?: string;
7
+ }) => ai.Tool<z.ZodObject<{
8
+ query: z.ZodString;
9
+ category: z.ZodOptional<z.ZodString>;
10
+ depth: z.ZodOptional<z.ZodEnum<["fast", "standard", "deep"]>>;
11
+ limit: z.ZodOptional<z.ZodNumber>;
12
+ }, "strip", z.ZodTypeAny, {
13
+ query: string;
14
+ category?: string | undefined;
15
+ depth?: "fast" | "standard" | "deep" | undefined;
16
+ limit?: number | undefined;
17
+ }, {
18
+ query: string;
19
+ category?: string | undefined;
20
+ depth?: "fast" | "standard" | "deep" | undefined;
21
+ limit?: number | undefined;
22
+ }>, polaris_news_api.SearchResponse> & {
23
+ execute: (args: {
24
+ query: string;
25
+ category?: string | undefined;
26
+ depth?: "fast" | "standard" | "deep" | undefined;
27
+ limit?: number | undefined;
28
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.SearchResponse>;
29
+ };
30
+
31
+ declare const veroqFeed: (options?: {
32
+ apiKey?: string;
33
+ }) => ai.Tool<z.ZodObject<{
34
+ category: z.ZodOptional<z.ZodString>;
35
+ limit: z.ZodOptional<z.ZodNumber>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ category?: string | undefined;
38
+ limit?: number | undefined;
39
+ }, {
40
+ category?: string | undefined;
41
+ limit?: number | undefined;
42
+ }>, polaris_news_api.FeedResponse> & {
43
+ execute: (args: {
44
+ category?: string | undefined;
45
+ limit?: number | undefined;
46
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.FeedResponse>;
47
+ };
48
+
49
+ declare const veroqBrief: (options?: {
50
+ apiKey?: string;
51
+ }) => ai.Tool<z.ZodObject<{
52
+ id: z.ZodString;
53
+ }, "strip", z.ZodTypeAny, {
54
+ id: string;
55
+ }, {
56
+ id: string;
57
+ }>, polaris_news_api.Brief> & {
58
+ execute: (args: {
59
+ id: string;
60
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.Brief>;
61
+ };
62
+
63
+ declare const veroqExtract: (options?: {
64
+ apiKey?: string;
65
+ }) => ai.Tool<z.ZodObject<{
66
+ urls: z.ZodArray<z.ZodString, "many">;
67
+ }, "strip", z.ZodTypeAny, {
68
+ urls: string[];
69
+ }, {
70
+ urls: string[];
71
+ }>, polaris_news_api.ExtractResponse> & {
72
+ execute: (args: {
73
+ urls: string[];
74
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.ExtractResponse>;
75
+ };
76
+
77
+ declare const veroqEntities: (options?: {
78
+ apiKey?: string;
79
+ }) => ai.Tool<z.ZodObject<{
80
+ name: z.ZodString;
81
+ }, "strip", z.ZodTypeAny, {
82
+ name: string;
83
+ }, {
84
+ name: string;
85
+ }>, polaris_news_api.Brief[]> & {
86
+ execute: (args: {
87
+ name: string;
88
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.Brief[]>;
89
+ };
90
+
91
+ declare const veroqTrending: (options?: {
92
+ apiKey?: string;
93
+ }) => ai.Tool<z.ZodObject<{
94
+ limit: z.ZodOptional<z.ZodNumber>;
95
+ }, "strip", z.ZodTypeAny, {
96
+ limit?: number | undefined;
97
+ }, {
98
+ limit?: number | undefined;
99
+ }>, polaris_news_api.EntitiesResponse> & {
100
+ execute: (args: {
101
+ limit?: number | undefined;
102
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.EntitiesResponse>;
103
+ };
104
+
105
+ declare const veroqCompare: (options?: {
106
+ apiKey?: string;
107
+ }) => ai.Tool<z.ZodObject<{
108
+ briefId: z.ZodString;
109
+ }, "strip", z.ZodTypeAny, {
110
+ briefId: string;
111
+ }, {
112
+ briefId: string;
113
+ }>, polaris_news_api.ComparisonResponse> & {
114
+ execute: (args: {
115
+ briefId: string;
116
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.ComparisonResponse>;
117
+ };
118
+
119
+ interface ResearchSourceUsed {
120
+ briefId?: string;
121
+ headline?: string;
122
+ confidence?: number;
123
+ category?: string;
124
+ }
125
+ interface ResearchEntityCooccurrence {
126
+ entity?: string;
127
+ count?: number;
128
+ }
129
+ interface ResearchEntity {
130
+ name?: string;
131
+ type?: string;
132
+ mentions?: number;
133
+ coOccursWith?: ResearchEntityCooccurrence[];
134
+ }
135
+ interface ResearchMetadata {
136
+ briefsAnalyzed: number;
137
+ uniqueSources: number;
138
+ processingTimeMs?: number;
139
+ modelsUsed?: string[];
140
+ }
141
+ interface ResearchResponse {
142
+ query: string;
143
+ report?: Record<string, unknown>;
144
+ sourcesUsed?: ResearchSourceUsed[];
145
+ entityMap?: ResearchEntity[];
146
+ subQueries?: string[];
147
+ metadata?: ResearchMetadata;
148
+ structuredOutput?: unknown;
149
+ structuredOutputError?: string;
150
+ }
151
+ interface ScreenerResult {
152
+ ticker: string;
153
+ name?: string;
154
+ sector?: string;
155
+ sentiment_score?: number;
156
+ rsi?: number;
157
+ price?: number;
158
+ market_cap?: number;
159
+ [key: string]: unknown;
160
+ }
161
+ interface ScreenerResponse {
162
+ status: string;
163
+ results: ScreenerResult[];
164
+ total?: number;
165
+ filters_applied?: Record<string, unknown>;
166
+ }
167
+ interface BacktestResponse {
168
+ status: string;
169
+ performance: {
170
+ total_return_pct: number;
171
+ max_drawdown_pct?: number;
172
+ sharpe_ratio?: number;
173
+ win_rate?: number;
174
+ total_trades?: number;
175
+ [key: string]: unknown;
176
+ };
177
+ trades?: Array<Record<string, unknown>>;
178
+ [key: string]: unknown;
179
+ }
180
+ interface CorrelationResponse {
181
+ status: string;
182
+ tickers: string[];
183
+ matrix: number[][];
184
+ period_days?: number;
185
+ [key: string]: unknown;
186
+ }
187
+ interface NewsImpactResponse {
188
+ status: string;
189
+ symbol: string;
190
+ impacts?: Array<Record<string, unknown>>;
191
+ [key: string]: unknown;
192
+ }
193
+ interface CompetitorsResponse {
194
+ status: string;
195
+ symbol: string;
196
+ competitors?: Array<Record<string, unknown>>;
197
+ [key: string]: unknown;
198
+ }
199
+
200
+ declare const veroqResearch: (options?: {
201
+ apiKey?: string;
202
+ }) => ai.Tool<z.ZodObject<{
203
+ query: z.ZodString;
204
+ category: z.ZodOptional<z.ZodString>;
205
+ maxSources: z.ZodOptional<z.ZodNumber>;
206
+ }, "strip", z.ZodTypeAny, {
207
+ query: string;
208
+ category?: string | undefined;
209
+ maxSources?: number | undefined;
210
+ }, {
211
+ query: string;
212
+ category?: string | undefined;
213
+ maxSources?: number | undefined;
214
+ }>, ResearchResponse> & {
215
+ execute: (args: {
216
+ query: string;
217
+ category?: string | undefined;
218
+ maxSources?: number | undefined;
219
+ }, options: ai.ToolExecutionOptions) => PromiseLike<ResearchResponse>;
220
+ };
221
+
222
+ declare const veroqVerify: (options?: {
223
+ apiKey?: string;
224
+ }) => ai.Tool<z.ZodObject<{
225
+ claim: z.ZodString;
226
+ context: z.ZodOptional<z.ZodString>;
227
+ }, "strip", z.ZodTypeAny, {
228
+ claim: string;
229
+ context?: string | undefined;
230
+ }, {
231
+ claim: string;
232
+ context?: string | undefined;
233
+ }>, polaris_news_api.VerifyResponse> & {
234
+ execute: (args: {
235
+ claim: string;
236
+ context?: string | undefined;
237
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.VerifyResponse>;
238
+ };
239
+
240
+ declare const veroqTimeline: (options?: {
241
+ apiKey?: string;
242
+ }) => ai.Tool<z.ZodObject<{
243
+ briefId: z.ZodString;
244
+ }, "strip", z.ZodTypeAny, {
245
+ briefId: string;
246
+ }, {
247
+ briefId: string;
248
+ }>, Record<string, unknown>> & {
249
+ execute: (args: {
250
+ briefId: string;
251
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
252
+ };
253
+
254
+ declare const veroqForecast: (options?: {
255
+ apiKey?: string;
256
+ }) => ai.Tool<z.ZodObject<{
257
+ topic: z.ZodString;
258
+ depth: z.ZodOptional<z.ZodEnum<["fast", "standard", "deep"]>>;
259
+ }, "strip", z.ZodTypeAny, {
260
+ topic: string;
261
+ depth?: "fast" | "standard" | "deep" | undefined;
262
+ }, {
263
+ topic: string;
264
+ depth?: "fast" | "standard" | "deep" | undefined;
265
+ }>, Record<string, unknown>> & {
266
+ execute: (args: {
267
+ topic: string;
268
+ depth?: "fast" | "standard" | "deep" | undefined;
269
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
270
+ };
271
+
272
+ declare const veroqContradictions: (options?: {
273
+ apiKey?: string;
274
+ }) => ai.Tool<z.ZodObject<{
275
+ severity: z.ZodOptional<z.ZodString>;
276
+ }, "strip", z.ZodTypeAny, {
277
+ severity?: string | undefined;
278
+ }, {
279
+ severity?: string | undefined;
280
+ }>, Record<string, unknown>> & {
281
+ execute: (args: {
282
+ severity?: string | undefined;
283
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
284
+ };
285
+
286
+ declare const veroqEvents: (options?: {
287
+ apiKey?: string;
288
+ }) => ai.Tool<z.ZodObject<{
289
+ type: z.ZodOptional<z.ZodString>;
290
+ subject: z.ZodOptional<z.ZodString>;
291
+ }, "strip", z.ZodTypeAny, {
292
+ type?: string | undefined;
293
+ subject?: string | undefined;
294
+ }, {
295
+ type?: string | undefined;
296
+ subject?: string | undefined;
297
+ }>, Record<string, unknown>> & {
298
+ execute: (args: {
299
+ type?: string | undefined;
300
+ subject?: string | undefined;
301
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
302
+ };
303
+
304
+ declare const veroqWebSearch: (options?: {
305
+ apiKey?: string;
306
+ }) => ai.Tool<z.ZodObject<{
307
+ query: z.ZodString;
308
+ limit: z.ZodOptional<z.ZodNumber>;
309
+ freshness: z.ZodOptional<z.ZodString>;
310
+ region: z.ZodOptional<z.ZodString>;
311
+ verify: z.ZodOptional<z.ZodBoolean>;
312
+ }, "strip", z.ZodTypeAny, {
313
+ query: string;
314
+ limit?: number | undefined;
315
+ freshness?: string | undefined;
316
+ region?: string | undefined;
317
+ verify?: boolean | undefined;
318
+ }, {
319
+ query: string;
320
+ limit?: number | undefined;
321
+ freshness?: string | undefined;
322
+ region?: string | undefined;
323
+ verify?: boolean | undefined;
324
+ }>, Record<string, unknown>> & {
325
+ execute: (args: {
326
+ query: string;
327
+ limit?: number | undefined;
328
+ freshness?: string | undefined;
329
+ region?: string | undefined;
330
+ verify?: boolean | undefined;
331
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
332
+ };
333
+
334
+ declare const veroqCrawl: (options?: {
335
+ apiKey?: string;
336
+ }) => ai.Tool<z.ZodObject<{
337
+ url: z.ZodString;
338
+ depth: z.ZodOptional<z.ZodNumber>;
339
+ max_pages: z.ZodOptional<z.ZodNumber>;
340
+ include_links: z.ZodOptional<z.ZodBoolean>;
341
+ }, "strip", z.ZodTypeAny, {
342
+ url: string;
343
+ depth?: number | undefined;
344
+ max_pages?: number | undefined;
345
+ include_links?: boolean | undefined;
346
+ }, {
347
+ url: string;
348
+ depth?: number | undefined;
349
+ max_pages?: number | undefined;
350
+ include_links?: boolean | undefined;
351
+ }>, Record<string, unknown>> & {
352
+ execute: (args: {
353
+ url: string;
354
+ depth?: number | undefined;
355
+ max_pages?: number | undefined;
356
+ include_links?: boolean | undefined;
357
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
358
+ };
359
+
360
+ declare const veroqTickerResolve: (options?: {
361
+ apiKey?: string;
362
+ }) => ai.Tool<z.ZodObject<{
363
+ q: z.ZodString;
364
+ }, "strip", z.ZodTypeAny, {
365
+ q: string;
366
+ }, {
367
+ q: string;
368
+ }>, polaris_news_api.TickerResolveResponse> & {
369
+ execute: (args: {
370
+ q: string;
371
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.TickerResolveResponse>;
372
+ };
373
+
374
+ declare const veroqTicker: (options?: {
375
+ apiKey?: string;
376
+ }) => ai.Tool<z.ZodObject<{
377
+ symbol: z.ZodString;
378
+ }, "strip", z.ZodTypeAny, {
379
+ symbol: string;
380
+ }, {
381
+ symbol: string;
382
+ }>, polaris_news_api.TickerResponse> & {
383
+ execute: (args: {
384
+ symbol: string;
385
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.TickerResponse>;
386
+ };
387
+
388
+ declare const veroqTickerHistory: (options?: {
389
+ apiKey?: string;
390
+ }) => ai.Tool<z.ZodObject<{
391
+ symbol: z.ZodString;
392
+ days: z.ZodOptional<z.ZodNumber>;
393
+ }, "strip", z.ZodTypeAny, {
394
+ symbol: string;
395
+ days?: number | undefined;
396
+ }, {
397
+ symbol: string;
398
+ days?: number | undefined;
399
+ }>, polaris_news_api.TickerHistoryResponse> & {
400
+ execute: (args: {
401
+ symbol: string;
402
+ days?: number | undefined;
403
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.TickerHistoryResponse>;
404
+ };
405
+
406
+ declare const veroqTickerScore: (options?: {
407
+ apiKey?: string;
408
+ }) => ai.Tool<z.ZodObject<{
409
+ symbol: z.ZodString;
410
+ }, "strip", z.ZodTypeAny, {
411
+ symbol: string;
412
+ }, {
413
+ symbol: string;
414
+ }>, polaris_news_api.TickerScoreResponse> & {
415
+ execute: (args: {
416
+ symbol: string;
417
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.TickerScoreResponse>;
418
+ };
419
+
420
+ declare const veroqSectors: (options?: {
421
+ apiKey?: string;
422
+ }) => ai.Tool<z.ZodObject<{
423
+ days: z.ZodOptional<z.ZodNumber>;
424
+ }, "strip", z.ZodTypeAny, {
425
+ days?: number | undefined;
426
+ }, {
427
+ days?: number | undefined;
428
+ }>, polaris_news_api.SectorsResponse> & {
429
+ execute: (args: {
430
+ days?: number | undefined;
431
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.SectorsResponse>;
432
+ };
433
+
434
+ declare const veroqPortfolioFeed: (options?: {
435
+ apiKey?: string;
436
+ }) => ai.Tool<z.ZodObject<{
437
+ holdings: z.ZodArray<z.ZodObject<{
438
+ ticker: z.ZodString;
439
+ weight: z.ZodNumber;
440
+ }, "strip", z.ZodTypeAny, {
441
+ ticker: string;
442
+ weight: number;
443
+ }, {
444
+ ticker: string;
445
+ weight: number;
446
+ }>, "many">;
447
+ days: z.ZodOptional<z.ZodNumber>;
448
+ limit: z.ZodOptional<z.ZodNumber>;
449
+ }, "strip", z.ZodTypeAny, {
450
+ holdings: {
451
+ ticker: string;
452
+ weight: number;
453
+ }[];
454
+ limit?: number | undefined;
455
+ days?: number | undefined;
456
+ }, {
457
+ holdings: {
458
+ ticker: string;
459
+ weight: number;
460
+ }[];
461
+ limit?: number | undefined;
462
+ days?: number | undefined;
463
+ }>, polaris_news_api.PortfolioFeedResponse> & {
464
+ execute: (args: {
465
+ holdings: {
466
+ ticker: string;
467
+ weight: number;
468
+ }[];
469
+ limit?: number | undefined;
470
+ days?: number | undefined;
471
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.PortfolioFeedResponse>;
472
+ };
473
+
474
+ declare const veroqEventsCalendar: (options?: {
475
+ apiKey?: string;
476
+ }) => ai.Tool<z.ZodObject<{
477
+ ticker: z.ZodOptional<z.ZodString>;
478
+ type: z.ZodOptional<z.ZodString>;
479
+ days: z.ZodOptional<z.ZodNumber>;
480
+ limit: z.ZodOptional<z.ZodNumber>;
481
+ }, "strip", z.ZodTypeAny, {
482
+ type?: string | undefined;
483
+ limit?: number | undefined;
484
+ days?: number | undefined;
485
+ ticker?: string | undefined;
486
+ }, {
487
+ type?: string | undefined;
488
+ limit?: number | undefined;
489
+ days?: number | undefined;
490
+ ticker?: string | undefined;
491
+ }>, polaris_news_api.EventsCalendarResponse> & {
492
+ execute: (args: {
493
+ type?: string | undefined;
494
+ limit?: number | undefined;
495
+ days?: number | undefined;
496
+ ticker?: string | undefined;
497
+ }, options: ai.ToolExecutionOptions) => PromiseLike<polaris_news_api.EventsCalendarResponse>;
498
+ };
499
+
500
+ /**
501
+ * Shared helper for tools that call the VEROQ API directly
502
+ * (used when the polaris-news-api SDK client doesn't yet expose the method).
503
+ */
504
+ interface ToolOptions {
505
+ apiKey?: string;
506
+ baseUrl?: string;
507
+ }
508
+
509
+ declare const veroqCandles: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
510
+ symbol: z.ZodString;
511
+ interval: z.ZodOptional<z.ZodEnum<["1d", "1wk", "1mo"]>>;
512
+ range: z.ZodOptional<z.ZodEnum<["1mo", "3mo", "6mo", "1y", "2y", "5y"]>>;
513
+ }, "strip", z.ZodTypeAny, {
514
+ symbol: string;
515
+ interval?: "1d" | "1wk" | "1mo" | undefined;
516
+ range?: "1mo" | "3mo" | "6mo" | "1y" | "2y" | "5y" | undefined;
517
+ }, {
518
+ symbol: string;
519
+ interval?: "1d" | "1wk" | "1mo" | undefined;
520
+ range?: "1mo" | "3mo" | "6mo" | "1y" | "2y" | "5y" | undefined;
521
+ }>, Record<string, unknown>> & {
522
+ execute: (args: {
523
+ symbol: string;
524
+ interval?: "1d" | "1wk" | "1mo" | undefined;
525
+ range?: "1mo" | "3mo" | "6mo" | "1y" | "2y" | "5y" | undefined;
526
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
527
+ };
528
+
529
+ declare const veroqTechnicals: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
530
+ symbol: z.ZodString;
531
+ range: z.ZodOptional<z.ZodEnum<["1mo", "3mo", "6mo", "1y", "2y", "5y"]>>;
532
+ }, "strip", z.ZodTypeAny, {
533
+ symbol: string;
534
+ range?: "1mo" | "3mo" | "6mo" | "1y" | "2y" | "5y" | undefined;
535
+ }, {
536
+ symbol: string;
537
+ range?: "1mo" | "3mo" | "6mo" | "1y" | "2y" | "5y" | undefined;
538
+ }>, Record<string, unknown>> & {
539
+ execute: (args: {
540
+ symbol: string;
541
+ range?: "1mo" | "3mo" | "6mo" | "1y" | "2y" | "5y" | undefined;
542
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
543
+ };
544
+
545
+ declare const veroqMarketMovers: (options?: ToolOptions) => ai.Tool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, Record<string, unknown>> & {
546
+ execute: (args: {}, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
547
+ };
548
+
549
+ declare const veroqEconomy: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
550
+ indicator: z.ZodOptional<z.ZodString>;
551
+ limit: z.ZodOptional<z.ZodNumber>;
552
+ }, "strip", z.ZodTypeAny, {
553
+ limit?: number | undefined;
554
+ indicator?: string | undefined;
555
+ }, {
556
+ limit?: number | undefined;
557
+ indicator?: string | undefined;
558
+ }>, Record<string, unknown>> & {
559
+ execute: (args: {
560
+ limit?: number | undefined;
561
+ indicator?: string | undefined;
562
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
563
+ };
564
+
565
+ declare const veroqForex: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
566
+ pair: z.ZodOptional<z.ZodString>;
567
+ }, "strip", z.ZodTypeAny, {
568
+ pair?: string | undefined;
569
+ }, {
570
+ pair?: string | undefined;
571
+ }>, Record<string, unknown>> & {
572
+ execute: (args: {
573
+ pair?: string | undefined;
574
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
575
+ };
576
+
577
+ declare const veroqCommodities: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
578
+ symbol: z.ZodOptional<z.ZodString>;
579
+ }, "strip", z.ZodTypeAny, {
580
+ symbol?: string | undefined;
581
+ }, {
582
+ symbol?: string | undefined;
583
+ }>, Record<string, unknown>> & {
584
+ execute: (args: {
585
+ symbol?: string | undefined;
586
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
587
+ };
588
+
589
+ declare const veroqCrypto: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
590
+ symbol: z.ZodOptional<z.ZodString>;
591
+ }, "strip", z.ZodTypeAny, {
592
+ symbol?: string | undefined;
593
+ }, {
594
+ symbol?: string | undefined;
595
+ }>, Record<string, unknown>> & {
596
+ execute: (args: {
597
+ symbol?: string | undefined;
598
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
599
+ };
600
+
601
+ declare const veroqCryptoDefi: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
602
+ protocol: z.ZodOptional<z.ZodString>;
603
+ }, "strip", z.ZodTypeAny, {
604
+ protocol?: string | undefined;
605
+ }, {
606
+ protocol?: string | undefined;
607
+ }>, Record<string, unknown>> & {
608
+ execute: (args: {
609
+ protocol?: string | undefined;
610
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
611
+ };
612
+
613
+ declare const veroqBacktest: (options?: {
614
+ apiKey?: string;
615
+ }) => ai.Tool<z.ZodObject<{
616
+ strategy: z.ZodObject<{
617
+ entry_filters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
618
+ exit_filters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
619
+ asset_type: z.ZodOptional<z.ZodString>;
620
+ sector: z.ZodOptional<z.ZodString>;
621
+ }, "strip", z.ZodTypeAny, {
622
+ entry_filters: Record<string, unknown>;
623
+ exit_filters: Record<string, unknown>;
624
+ asset_type?: string | undefined;
625
+ sector?: string | undefined;
626
+ }, {
627
+ entry_filters: Record<string, unknown>;
628
+ exit_filters: Record<string, unknown>;
629
+ asset_type?: string | undefined;
630
+ sector?: string | undefined;
631
+ }>;
632
+ period: z.ZodOptional<z.ZodString>;
633
+ }, "strip", z.ZodTypeAny, {
634
+ strategy: {
635
+ entry_filters: Record<string, unknown>;
636
+ exit_filters: Record<string, unknown>;
637
+ asset_type?: string | undefined;
638
+ sector?: string | undefined;
639
+ };
640
+ period?: string | undefined;
641
+ }, {
642
+ strategy: {
643
+ entry_filters: Record<string, unknown>;
644
+ exit_filters: Record<string, unknown>;
645
+ asset_type?: string | undefined;
646
+ sector?: string | undefined;
647
+ };
648
+ period?: string | undefined;
649
+ }>, BacktestResponse> & {
650
+ execute: (args: {
651
+ strategy: {
652
+ entry_filters: Record<string, unknown>;
653
+ exit_filters: Record<string, unknown>;
654
+ asset_type?: string | undefined;
655
+ sector?: string | undefined;
656
+ };
657
+ period?: string | undefined;
658
+ }, options: ai.ToolExecutionOptions) => PromiseLike<BacktestResponse>;
659
+ };
660
+
661
+ declare const veroqCorrelation: (options?: {
662
+ apiKey?: string;
663
+ }) => ai.Tool<z.ZodObject<{
664
+ tickers: z.ZodArray<z.ZodString, "many">;
665
+ days: z.ZodOptional<z.ZodNumber>;
666
+ }, "strip", z.ZodTypeAny, {
667
+ tickers: string[];
668
+ days?: number | undefined;
669
+ }, {
670
+ tickers: string[];
671
+ days?: number | undefined;
672
+ }>, CorrelationResponse> & {
673
+ execute: (args: {
674
+ tickers: string[];
675
+ days?: number | undefined;
676
+ }, options: ai.ToolExecutionOptions) => PromiseLike<CorrelationResponse>;
677
+ };
678
+
679
+ declare const veroqScreener: (options?: {
680
+ apiKey?: string;
681
+ }) => ai.Tool<z.ZodObject<{
682
+ query: z.ZodString;
683
+ limit: z.ZodOptional<z.ZodNumber>;
684
+ }, "strip", z.ZodTypeAny, {
685
+ query: string;
686
+ limit?: number | undefined;
687
+ }, {
688
+ query: string;
689
+ limit?: number | undefined;
690
+ }>, ScreenerResponse> & {
691
+ execute: (args: {
692
+ query: string;
693
+ limit?: number | undefined;
694
+ }, options: ai.ToolExecutionOptions) => PromiseLike<ScreenerResponse>;
695
+ };
696
+
697
+ declare const veroqNewsImpact: (options?: {
698
+ apiKey?: string;
699
+ }) => ai.Tool<z.ZodObject<{
700
+ symbol: z.ZodString;
701
+ }, "strip", z.ZodTypeAny, {
702
+ symbol: string;
703
+ }, {
704
+ symbol: string;
705
+ }>, NewsImpactResponse> & {
706
+ execute: (args: {
707
+ symbol: string;
708
+ }, options: ai.ToolExecutionOptions) => PromiseLike<NewsImpactResponse>;
709
+ };
710
+
711
+ declare const veroqCompetitors: (options?: {
712
+ apiKey?: string;
713
+ }) => ai.Tool<z.ZodObject<{
714
+ symbol: z.ZodString;
715
+ }, "strip", z.ZodTypeAny, {
716
+ symbol: string;
717
+ }, {
718
+ symbol: string;
719
+ }>, CompetitorsResponse> & {
720
+ execute: (args: {
721
+ symbol: string;
722
+ }, options: ai.ToolExecutionOptions) => PromiseLike<CompetitorsResponse>;
723
+ };
724
+
725
+ declare const veroqSocialSentiment: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
726
+ symbol: z.ZodString;
727
+ }, "strip", z.ZodTypeAny, {
728
+ symbol: string;
729
+ }, {
730
+ symbol: string;
731
+ }>, Record<string, unknown>> & {
732
+ execute: (args: {
733
+ symbol: string;
734
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
735
+ };
736
+
737
+ declare const veroqSocialTrending: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
738
+ limit: z.ZodOptional<z.ZodNumber>;
739
+ }, "strip", z.ZodTypeAny, {
740
+ limit?: number | undefined;
741
+ }, {
742
+ limit?: number | undefined;
743
+ }>, Record<string, unknown>> & {
744
+ execute: (args: {
745
+ limit?: number | undefined;
746
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
747
+ };
748
+
749
+ declare const veroqIpoCalendar: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
750
+ limit: z.ZodOptional<z.ZodNumber>;
751
+ }, "strip", z.ZodTypeAny, {
752
+ limit?: number | undefined;
753
+ }, {
754
+ limit?: number | undefined;
755
+ }>, Record<string, unknown>> & {
756
+ execute: (args: {
757
+ limit?: number | undefined;
758
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
759
+ };
760
+
761
+ declare const veroqTickerNews: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
762
+ symbol: z.ZodString;
763
+ limit: z.ZodOptional<z.ZodNumber>;
764
+ }, "strip", z.ZodTypeAny, {
765
+ symbol: string;
766
+ limit?: number | undefined;
767
+ }, {
768
+ symbol: string;
769
+ limit?: number | undefined;
770
+ }>, Record<string, unknown>> & {
771
+ execute: (args: {
772
+ symbol: string;
773
+ limit?: number | undefined;
774
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
775
+ };
776
+
777
+ declare const veroqTickerAnalysis: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
778
+ symbol: z.ZodString;
779
+ }, "strip", z.ZodTypeAny, {
780
+ symbol: string;
781
+ }, {
782
+ symbol: string;
783
+ }>, Record<string, unknown>> & {
784
+ execute: (args: {
785
+ symbol: string;
786
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
787
+ };
788
+
789
+ declare const veroqSearchSuggest: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
790
+ q: z.ZodString;
791
+ }, "strip", z.ZodTypeAny, {
792
+ q: string;
793
+ }, {
794
+ q: string;
795
+ }>, Record<string, unknown>> & {
796
+ execute: (args: {
797
+ q: string;
798
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
799
+ };
800
+
801
+ declare const veroqDefiProtocol: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
802
+ protocol: z.ZodString;
803
+ }, "strip", z.ZodTypeAny, {
804
+ protocol: string;
805
+ }, {
806
+ protocol: string;
807
+ }>, Record<string, unknown>> & {
808
+ execute: (args: {
809
+ protocol: string;
810
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
811
+ };
812
+
813
+ declare const veroqEconomyIndicator: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
814
+ indicator: z.ZodString;
815
+ limit: z.ZodOptional<z.ZodNumber>;
816
+ }, "strip", z.ZodTypeAny, {
817
+ indicator: string;
818
+ limit?: number | undefined;
819
+ }, {
820
+ indicator: string;
821
+ limit?: number | undefined;
822
+ }>, Record<string, unknown>> & {
823
+ execute: (args: {
824
+ indicator: string;
825
+ limit?: number | undefined;
826
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
827
+ };
828
+
829
+ declare const veroqGenerateReport: (options?: {
830
+ apiKey?: string;
831
+ }) => ai.Tool<z.ZodObject<{
832
+ ticker: z.ZodString;
833
+ tier: z.ZodOptional<z.ZodString>;
834
+ }, "strip", z.ZodTypeAny, {
835
+ ticker: string;
836
+ tier?: string | undefined;
837
+ }, {
838
+ ticker: string;
839
+ tier?: string | undefined;
840
+ }>, any> & {
841
+ execute: (args: {
842
+ ticker: string;
843
+ tier?: string | undefined;
844
+ }, options: ai.ToolExecutionOptions) => PromiseLike<any>;
845
+ };
846
+
847
+ declare const veroqGetReport: (options?: {
848
+ apiKey?: string;
849
+ }) => ai.Tool<z.ZodObject<{
850
+ reportId: z.ZodString;
851
+ }, "strip", z.ZodTypeAny, {
852
+ reportId: string;
853
+ }, {
854
+ reportId: string;
855
+ }>, any> & {
856
+ execute: (args: {
857
+ reportId: string;
858
+ }, options: ai.ToolExecutionOptions) => PromiseLike<any>;
859
+ };
860
+
861
+ declare const veroqAsk: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
862
+ question: z.ZodString;
863
+ }, "strip", z.ZodTypeAny, {
864
+ question: string;
865
+ }, {
866
+ question: string;
867
+ }>, Record<string, unknown>> & {
868
+ execute: (args: {
869
+ question: string;
870
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
871
+ };
872
+
873
+ declare const veroqFull: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
874
+ ticker: z.ZodString;
875
+ }, "strip", z.ZodTypeAny, {
876
+ ticker: string;
877
+ }, {
878
+ ticker: string;
879
+ }>, Record<string, unknown>> & {
880
+ execute: (args: {
881
+ ticker: string;
882
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
883
+ };
884
+
885
+ declare const veroqInsider: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
886
+ ticker: z.ZodString;
887
+ }, "strip", z.ZodTypeAny, {
888
+ ticker: string;
889
+ }, {
890
+ ticker: string;
891
+ }>, Record<string, unknown>> & {
892
+ execute: (args: {
893
+ ticker: string;
894
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
895
+ };
896
+
897
+ declare const veroqFilings: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
898
+ ticker: z.ZodString;
899
+ }, "strip", z.ZodTypeAny, {
900
+ ticker: string;
901
+ }, {
902
+ ticker: string;
903
+ }>, Record<string, unknown>> & {
904
+ execute: (args: {
905
+ ticker: string;
906
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
907
+ };
908
+
909
+ declare const veroqAnalysts: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
910
+ ticker: z.ZodString;
911
+ }, "strip", z.ZodTypeAny, {
912
+ ticker: string;
913
+ }, {
914
+ ticker: string;
915
+ }>, Record<string, unknown>> & {
916
+ execute: (args: {
917
+ ticker: string;
918
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
919
+ };
920
+
921
+ declare const veroqCongress: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
922
+ symbol: z.ZodOptional<z.ZodString>;
923
+ }, "strip", z.ZodTypeAny, {
924
+ symbol?: string | undefined;
925
+ }, {
926
+ symbol?: string | undefined;
927
+ }>, Record<string, unknown>> & {
928
+ execute: (args: {
929
+ symbol?: string | undefined;
930
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
931
+ };
932
+
933
+ declare const veroqInstitutions: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
934
+ ticker: z.ZodString;
935
+ }, "strip", z.ZodTypeAny, {
936
+ ticker: string;
937
+ }, {
938
+ ticker: string;
939
+ }>, Record<string, unknown>> & {
940
+ execute: (args: {
941
+ ticker: string;
942
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
943
+ };
944
+
945
+ declare const veroqRunAgent: (options?: ToolOptions) => ai.Tool<z.ZodObject<{
946
+ slug: z.ZodString;
947
+ inputs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
948
+ }, "strip", z.ZodTypeAny, {
949
+ slug: string;
950
+ inputs: Record<string, unknown>;
951
+ }, {
952
+ slug: string;
953
+ inputs: Record<string, unknown>;
954
+ }>, Record<string, unknown>> & {
955
+ execute: (args: {
956
+ slug: string;
957
+ inputs: Record<string, unknown>;
958
+ }, options: ai.ToolExecutionOptions) => PromiseLike<Record<string, unknown>>;
959
+ };
960
+
961
+ export { veroqAnalysts, veroqAsk, veroqBacktest, veroqBrief, veroqCandles, veroqCommodities, veroqCompare, veroqCompetitors, veroqCongress, veroqContradictions, veroqCorrelation, veroqCrawl, veroqCrypto, veroqCryptoDefi, veroqDefiProtocol, veroqEconomy, veroqEconomyIndicator, veroqEntities, veroqEvents, veroqEventsCalendar, veroqExtract, veroqFeed, veroqFilings, veroqForecast, veroqForex, veroqFull, veroqGenerateReport, veroqGetReport, veroqInsider, veroqInstitutions, veroqIpoCalendar, veroqMarketMovers, veroqNewsImpact, veroqPortfolioFeed, veroqResearch, veroqRunAgent, veroqScreener, veroqSearch, veroqSearchSuggest, veroqSectors, veroqSocialSentiment, veroqSocialTrending, veroqTechnicals, veroqTicker, veroqTickerAnalysis, veroqTickerHistory, veroqTickerNews, veroqTickerResolve, veroqTickerScore, veroqTimeline, veroqTrending, veroqVerify, veroqWebSearch };