tako-sdk 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +223 -8
- package/dist/index.d.cts +267 -23
- package/dist/index.d.ts +267 -23
- package/dist/index.js +198 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -578,6 +578,249 @@ declare function TakoCardFromJSONTyped(json: any, ignoreDiscriminator: boolean):
|
|
|
578
578
|
declare function TakoCardToJSON(json: any): TakoCard;
|
|
579
579
|
declare function TakoCardToJSONTyped(value?: TakoCard | null, ignoreDiscriminator?: boolean): any;
|
|
580
580
|
|
|
581
|
+
/**
|
|
582
|
+
* Knowledge Search API
|
|
583
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
584
|
+
*
|
|
585
|
+
* The version of the OpenAPI document: 1.0.0
|
|
586
|
+
*
|
|
587
|
+
*
|
|
588
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
589
|
+
* https://openapi-generator.tech
|
|
590
|
+
* Do not edit the class manually.
|
|
591
|
+
*/
|
|
592
|
+
/**
|
|
593
|
+
* One indexed source behind the answer. Every inline [n] marker in
|
|
594
|
+
* AgentResult.answer joins to a citation's index, but a citation may also
|
|
595
|
+
* back a chart/card without an inline marker — markers map to citations,
|
|
596
|
+
* not 1:1. Covers web and Tako sources alike.
|
|
597
|
+
* @export
|
|
598
|
+
* @interface AgentAnswerCitation
|
|
599
|
+
*/
|
|
600
|
+
interface AgentAnswerCitation {
|
|
601
|
+
/**
|
|
602
|
+
*
|
|
603
|
+
* @type {number}
|
|
604
|
+
* @memberof AgentAnswerCitation
|
|
605
|
+
*/
|
|
606
|
+
index: number;
|
|
607
|
+
/**
|
|
608
|
+
*
|
|
609
|
+
* @type {string}
|
|
610
|
+
* @memberof AgentAnswerCitation
|
|
611
|
+
*/
|
|
612
|
+
title: string;
|
|
613
|
+
/**
|
|
614
|
+
*
|
|
615
|
+
* @type {string}
|
|
616
|
+
* @memberof AgentAnswerCitation
|
|
617
|
+
*/
|
|
618
|
+
url?: string | null;
|
|
619
|
+
/**
|
|
620
|
+
*
|
|
621
|
+
* @type {string}
|
|
622
|
+
* @memberof AgentAnswerCitation
|
|
623
|
+
*/
|
|
624
|
+
source_name?: string | null;
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* Check if a given object implements the AgentAnswerCitation interface.
|
|
628
|
+
*/
|
|
629
|
+
declare function instanceOfAgentAnswerCitation(value: object): value is AgentAnswerCitation;
|
|
630
|
+
declare function AgentAnswerCitationFromJSON(json: any): AgentAnswerCitation;
|
|
631
|
+
declare function AgentAnswerCitationFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentAnswerCitation;
|
|
632
|
+
declare function AgentAnswerCitationToJSON(json: any): AgentAnswerCitation;
|
|
633
|
+
declare function AgentAnswerCitationToJSONTyped(value?: AgentAnswerCitation | null, ignoreDiscriminator?: boolean): any;
|
|
634
|
+
|
|
635
|
+
/**
|
|
636
|
+
* Knowledge Search API
|
|
637
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
638
|
+
*
|
|
639
|
+
* The version of the OpenAPI document: 1.0.0
|
|
640
|
+
*
|
|
641
|
+
*
|
|
642
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
643
|
+
* https://openapi-generator.tech
|
|
644
|
+
* Do not edit the class manually.
|
|
645
|
+
*/
|
|
646
|
+
/**
|
|
647
|
+
*
|
|
648
|
+
* @export
|
|
649
|
+
* @interface AgentAnswerDefinition
|
|
650
|
+
*/
|
|
651
|
+
interface AgentAnswerDefinition {
|
|
652
|
+
/**
|
|
653
|
+
*
|
|
654
|
+
* @type {string}
|
|
655
|
+
* @memberof AgentAnswerDefinition
|
|
656
|
+
*/
|
|
657
|
+
term: string;
|
|
658
|
+
/**
|
|
659
|
+
*
|
|
660
|
+
* @type {string}
|
|
661
|
+
* @memberof AgentAnswerDefinition
|
|
662
|
+
*/
|
|
663
|
+
definition: string;
|
|
664
|
+
/**
|
|
665
|
+
*
|
|
666
|
+
* @type {number}
|
|
667
|
+
* @memberof AgentAnswerDefinition
|
|
668
|
+
*/
|
|
669
|
+
source_ref?: number | null;
|
|
670
|
+
}
|
|
671
|
+
/**
|
|
672
|
+
* Check if a given object implements the AgentAnswerDefinition interface.
|
|
673
|
+
*/
|
|
674
|
+
declare function instanceOfAgentAnswerDefinition(value: object): value is AgentAnswerDefinition;
|
|
675
|
+
declare function AgentAnswerDefinitionFromJSON(json: any): AgentAnswerDefinition;
|
|
676
|
+
declare function AgentAnswerDefinitionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentAnswerDefinition;
|
|
677
|
+
declare function AgentAnswerDefinitionToJSON(json: any): AgentAnswerDefinition;
|
|
678
|
+
declare function AgentAnswerDefinitionToJSONTyped(value?: AgentAnswerDefinition | null, ignoreDiscriminator?: boolean): any;
|
|
679
|
+
|
|
680
|
+
/**
|
|
681
|
+
* Knowledge Search API
|
|
682
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
683
|
+
*
|
|
684
|
+
* The version of the OpenAPI document: 1.0.0
|
|
685
|
+
*
|
|
686
|
+
*
|
|
687
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
688
|
+
* https://openapi-generator.tech
|
|
689
|
+
* Do not edit the class manually.
|
|
690
|
+
*/
|
|
691
|
+
/**
|
|
692
|
+
*
|
|
693
|
+
* @export
|
|
694
|
+
* @interface AgentAnswerMethodologyNote
|
|
695
|
+
*/
|
|
696
|
+
interface AgentAnswerMethodologyNote {
|
|
697
|
+
/**
|
|
698
|
+
*
|
|
699
|
+
* @type {string}
|
|
700
|
+
* @memberof AgentAnswerMethodologyNote
|
|
701
|
+
*/
|
|
702
|
+
title: string;
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* @type {string}
|
|
706
|
+
* @memberof AgentAnswerMethodologyNote
|
|
707
|
+
*/
|
|
708
|
+
description: string;
|
|
709
|
+
}
|
|
710
|
+
/**
|
|
711
|
+
* Check if a given object implements the AgentAnswerMethodologyNote interface.
|
|
712
|
+
*/
|
|
713
|
+
declare function instanceOfAgentAnswerMethodologyNote(value: object): value is AgentAnswerMethodologyNote;
|
|
714
|
+
declare function AgentAnswerMethodologyNoteFromJSON(json: any): AgentAnswerMethodologyNote;
|
|
715
|
+
declare function AgentAnswerMethodologyNoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentAnswerMethodologyNote;
|
|
716
|
+
declare function AgentAnswerMethodologyNoteToJSON(json: any): AgentAnswerMethodologyNote;
|
|
717
|
+
declare function AgentAnswerMethodologyNoteToJSONTyped(value?: AgentAnswerMethodologyNote | null, ignoreDiscriminator?: boolean): any;
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* Knowledge Search API
|
|
721
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
722
|
+
*
|
|
723
|
+
* The version of the OpenAPI document: 1.0.0
|
|
724
|
+
*
|
|
725
|
+
*
|
|
726
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
727
|
+
* https://openapi-generator.tech
|
|
728
|
+
* Do not edit the class manually.
|
|
729
|
+
*/
|
|
730
|
+
/**
|
|
731
|
+
*
|
|
732
|
+
* @export
|
|
733
|
+
* @interface AgentAnswerAssumption
|
|
734
|
+
*/
|
|
735
|
+
interface AgentAnswerAssumption {
|
|
736
|
+
/**
|
|
737
|
+
*
|
|
738
|
+
* @type {string}
|
|
739
|
+
* @memberof AgentAnswerAssumption
|
|
740
|
+
*/
|
|
741
|
+
title: string;
|
|
742
|
+
/**
|
|
743
|
+
*
|
|
744
|
+
* @type {string}
|
|
745
|
+
* @memberof AgentAnswerAssumption
|
|
746
|
+
*/
|
|
747
|
+
description: string;
|
|
748
|
+
/**
|
|
749
|
+
*
|
|
750
|
+
* @type {string}
|
|
751
|
+
* @memberof AgentAnswerAssumption
|
|
752
|
+
*/
|
|
753
|
+
category?: string | null;
|
|
754
|
+
/**
|
|
755
|
+
*
|
|
756
|
+
* @type {number}
|
|
757
|
+
* @memberof AgentAnswerAssumption
|
|
758
|
+
*/
|
|
759
|
+
source_ref?: number | null;
|
|
760
|
+
}
|
|
761
|
+
/**
|
|
762
|
+
* Check if a given object implements the AgentAnswerAssumption interface.
|
|
763
|
+
*/
|
|
764
|
+
declare function instanceOfAgentAnswerAssumption(value: object): value is AgentAnswerAssumption;
|
|
765
|
+
declare function AgentAnswerAssumptionFromJSON(json: any): AgentAnswerAssumption;
|
|
766
|
+
declare function AgentAnswerAssumptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentAnswerAssumption;
|
|
767
|
+
declare function AgentAnswerAssumptionToJSON(json: any): AgentAnswerAssumption;
|
|
768
|
+
declare function AgentAnswerAssumptionToJSONTyped(value?: AgentAnswerAssumption | null, ignoreDiscriminator?: boolean): any;
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* Knowledge Search API
|
|
772
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
773
|
+
*
|
|
774
|
+
* The version of the OpenAPI document: 1.0.0
|
|
775
|
+
*
|
|
776
|
+
*
|
|
777
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
778
|
+
* https://openapi-generator.tech
|
|
779
|
+
* Do not edit the class manually.
|
|
780
|
+
*/
|
|
781
|
+
|
|
782
|
+
/**
|
|
783
|
+
* Supplementary answer metadata. All fields optional — population varies
|
|
784
|
+
* by effort/engine (low fills citations only today); new components are
|
|
785
|
+
* added here additively.
|
|
786
|
+
* @export
|
|
787
|
+
* @interface AgentAnswerMetadata
|
|
788
|
+
*/
|
|
789
|
+
interface AgentAnswerMetadata {
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @type {Array<AgentAnswerCitation>}
|
|
793
|
+
* @memberof AgentAnswerMetadata
|
|
794
|
+
*/
|
|
795
|
+
citations?: Array<AgentAnswerCitation> | null;
|
|
796
|
+
/**
|
|
797
|
+
*
|
|
798
|
+
* @type {Array<AgentAnswerDefinition>}
|
|
799
|
+
* @memberof AgentAnswerMetadata
|
|
800
|
+
*/
|
|
801
|
+
definitions?: Array<AgentAnswerDefinition> | null;
|
|
802
|
+
/**
|
|
803
|
+
*
|
|
804
|
+
* @type {Array<AgentAnswerAssumption>}
|
|
805
|
+
* @memberof AgentAnswerMetadata
|
|
806
|
+
*/
|
|
807
|
+
assumptions?: Array<AgentAnswerAssumption> | null;
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* @type {Array<AgentAnswerMethodologyNote>}
|
|
811
|
+
* @memberof AgentAnswerMetadata
|
|
812
|
+
*/
|
|
813
|
+
methodology?: Array<AgentAnswerMethodologyNote> | null;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* Check if a given object implements the AgentAnswerMetadata interface.
|
|
817
|
+
*/
|
|
818
|
+
declare function instanceOfAgentAnswerMetadata(value: object): value is AgentAnswerMetadata;
|
|
819
|
+
declare function AgentAnswerMetadataFromJSON(json: any): AgentAnswerMetadata;
|
|
820
|
+
declare function AgentAnswerMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentAnswerMetadata;
|
|
821
|
+
declare function AgentAnswerMetadataToJSON(json: any): AgentAnswerMetadata;
|
|
822
|
+
declare function AgentAnswerMetadataToJSONTyped(value?: AgentAnswerMetadata | null, ignoreDiscriminator?: boolean): any;
|
|
823
|
+
|
|
581
824
|
/**
|
|
582
825
|
* Knowledge Search API
|
|
583
826
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -666,7 +909,9 @@ declare function WebResultToJSONTyped(value?: WebResult | null, ignoreDiscrimina
|
|
|
666
909
|
*/
|
|
667
910
|
|
|
668
911
|
/**
|
|
669
|
-
* Final agent output. answer is markdown
|
|
912
|
+
* Final agent output. answer is markdown prose with [n] citation markers;
|
|
913
|
+
* cards reuse the sibling TakoCard; metadata carries the structured
|
|
914
|
+
* components behind the answer.
|
|
670
915
|
* @export
|
|
671
916
|
* @interface AgentResult
|
|
672
917
|
*/
|
|
@@ -689,6 +934,12 @@ interface AgentResult {
|
|
|
689
934
|
* @memberof AgentResult
|
|
690
935
|
*/
|
|
691
936
|
web_results?: Array<WebResult>;
|
|
937
|
+
/**
|
|
938
|
+
*
|
|
939
|
+
* @type {AgentAnswerMetadata}
|
|
940
|
+
* @memberof AgentResult
|
|
941
|
+
*/
|
|
942
|
+
metadata?: AgentAnswerMetadata | null;
|
|
692
943
|
/**
|
|
693
944
|
*
|
|
694
945
|
* @type {string}
|
|
@@ -1679,7 +1930,6 @@ declare function EntityClassNameToJSONTyped(value: any, ignoreDiscriminator: boo
|
|
|
1679
1930
|
* @export
|
|
1680
1931
|
*/
|
|
1681
1932
|
declare const GraphNodeType: {
|
|
1682
|
-
readonly Source: "source";
|
|
1683
1933
|
readonly Metric: "metric";
|
|
1684
1934
|
readonly Entity: "entity";
|
|
1685
1935
|
};
|
|
@@ -1812,12 +2062,6 @@ declare function RelationGroupToJSONTyped(value?: RelationGroup | null, ignoreDi
|
|
|
1812
2062
|
* @interface RelatedGroups
|
|
1813
2063
|
*/
|
|
1814
2064
|
interface RelatedGroups {
|
|
1815
|
-
/**
|
|
1816
|
-
*
|
|
1817
|
-
* @type {RelationGroup}
|
|
1818
|
-
* @memberof RelatedGroups
|
|
1819
|
-
*/
|
|
1820
|
-
sources: RelationGroup;
|
|
1821
2065
|
/**
|
|
1822
2066
|
*
|
|
1823
2067
|
* @type {RelationGroup}
|
|
@@ -2456,8 +2700,8 @@ interface TakoApiInterface {
|
|
|
2456
2700
|
createCard(requestParameters: CreateCardOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ThinVizCard>;
|
|
2457
2701
|
/**
|
|
2458
2702
|
* Creates request options for graphRelated without sending the request
|
|
2459
|
-
* @param {string} nodeId Opaque public id of the node
|
|
2460
|
-
* @param {string} [relationType] Paginate one facet:
|
|
2703
|
+
* @param {string} nodeId Opaque public id of the node.
|
|
2704
|
+
* @param {string} [relationType] Paginate one facet: metric or entity.
|
|
2461
2705
|
* @param {string} [q] Optional case-insensitive substring filter on the related nodes\' name/aliases. Filters every facet of the overview, or the single paginated facet when relation_type is set.
|
|
2462
2706
|
* @param {string} [cursor] Opaque pagination cursor.
|
|
2463
2707
|
* @param {number} [limit] Page size (default 50, max 100).
|
|
@@ -2466,10 +2710,10 @@ interface TakoApiInterface {
|
|
|
2466
2710
|
*/
|
|
2467
2711
|
graphRelatedRequestOpts(requestParameters: GraphRelatedRequest): Promise<RequestOpts>;
|
|
2468
2712
|
/**
|
|
2469
|
-
* Explore what a node connects to: a
|
|
2713
|
+
* Explore what a node connects to: a metric\'s entities (the things it\'s tracked for), or an entity\'s available metrics. Use it to find which entity + metric combinations Tako covers, then query /v3/search or /v1/answer for that combination. Pass relation_type + cursor to paginate one facet, and the optional q to narrow that facet by a case-insensitive substring on name/aliases (e.g. metrics for an entity matching \'gdp\'). Public and unauthenticated.
|
|
2470
2714
|
* @summary Get a graph node\'s related nodes
|
|
2471
|
-
* @param {string} nodeId Opaque public id of the node
|
|
2472
|
-
* @param {string} [relationType] Paginate one facet:
|
|
2715
|
+
* @param {string} nodeId Opaque public id of the node.
|
|
2716
|
+
* @param {string} [relationType] Paginate one facet: metric or entity.
|
|
2473
2717
|
* @param {string} [q] Optional case-insensitive substring filter on the related nodes\' name/aliases. Filters every facet of the overview, or the single paginated facet when relation_type is set.
|
|
2474
2718
|
* @param {string} [cursor] Opaque pagination cursor.
|
|
2475
2719
|
* @param {number} [limit] Page size (default 50, max 100).
|
|
@@ -2479,14 +2723,14 @@ interface TakoApiInterface {
|
|
|
2479
2723
|
*/
|
|
2480
2724
|
graphRelatedRaw(requestParameters: GraphRelatedRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GraphRelatedResponse>>;
|
|
2481
2725
|
/**
|
|
2482
|
-
* Explore what a node connects to: a
|
|
2726
|
+
* Explore what a node connects to: a metric\'s entities (the things it\'s tracked for), or an entity\'s available metrics. Use it to find which entity + metric combinations Tako covers, then query /v3/search or /v1/answer for that combination. Pass relation_type + cursor to paginate one facet, and the optional q to narrow that facet by a case-insensitive substring on name/aliases (e.g. metrics for an entity matching \'gdp\'). Public and unauthenticated.
|
|
2483
2727
|
* Get a graph node\'s related nodes
|
|
2484
2728
|
*/
|
|
2485
2729
|
graphRelated(requestParameters: GraphRelatedRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GraphRelatedResponse>;
|
|
2486
2730
|
/**
|
|
2487
2731
|
* Creates request options for graphSearch without sending the request
|
|
2488
2732
|
* @param {string} q Search text (min 2 chars).
|
|
2489
|
-
* @param {string} [types] Comma-separated facets:
|
|
2733
|
+
* @param {string} [types] Comma-separated facets: metric,entity.
|
|
2490
2734
|
* @param {number} [limit] Max results (default 20, max 50).
|
|
2491
2735
|
* @param {'Companies' | 'Cryptocurrencies' | 'Financial Instruments' | 'Internet Browsers' | 'Commodities' | 'People' | 'Currencies' | 'Stock Exchanges' | 'Securities' | 'IPOs' | 'Government Debt Instruments' | 'Treasury Securities' | 'Airports' | 'Airlines' | 'Vehicle Types' | 'Transportation Modes' | 'Drugs' | 'Drug Categories' | 'Diseases' | 'Chemical Elements' | 'Chemical Compounds' | 'Celestial Bodies' | 'Occupations' | 'Social Media Platforms' | 'Operating Systems' | 'Search Engines' | 'Device Types' | 'LLMs' | 'LLM Families' | 'LLM Benchmarks' | 'Industries' | 'NAICS Industries' | 'BLS Industries' | 'PSC Categories' | 'Federal Contractors' | 'Federal Agencies' | 'Federal Subagencies' | 'ICE Contracts' | 'ICE Contractors' | 'Elections' | 'Political Offices' | 'Pollsters' | 'Agricultural Products' | 'Tobacco Products' | 'Prediction Markets' | 'Prediction Events' | 'Real Estate Property Types' | 'Continents' | 'World Regions' | 'Countries' | 'States' | 'Counties' | 'Metro Areas' | 'Cities' | 'F1 Drivers' | 'F1 Teams' | 'F1 Circuits' | 'F1 Events' | 'NASCAR Drivers' | 'NASCAR Teams' | 'NASCAR Tracks' | 'NASCAR Events' | 'NASCAR Races' | 'NASCAR Owners' | 'NASCAR Manufacturers' | 'Soccer Teams' | 'Soccer Players' | 'Soccer Competitions' | 'Soccer Conferences' | 'Basketball Teams' | 'Basketball Players' | 'Basketball Conferences' | 'Basketball Divisions' | 'Baseball Teams' | 'Baseball Players' | 'Baseball Conferences' | 'Baseball Divisions' | 'Baseball Competitions' | 'Football Teams' | 'Football Players' | 'Football Conferences' | 'Football Divisions' | 'Sports' | 'Sports Leagues'} [subtype] Filter to a single entity class (e.g. Countries, Companies). Implies entity-only results; an explicit non-entity \'types\' is a 400. Note: results are drawn from a bounded candidate window (min(limit*5, 200)) before filtering, so a response shorter than `limit` does not imply no further matches exist.
|
|
2492
2736
|
* @throws {RequiredError}
|
|
@@ -2494,10 +2738,10 @@ interface TakoApiInterface {
|
|
|
2494
2738
|
*/
|
|
2495
2739
|
graphSearchRequestOpts(requestParameters: GraphSearchRequest): Promise<RequestOpts>;
|
|
2496
2740
|
/**
|
|
2497
|
-
* Resolve a
|
|
2741
|
+
* Resolve a metric or entity in Tako\'s data graph by name. Use this to discover and confirm what data exists before querying — e.g. resolve the metric and the entity you care about here, then ask /v3/search or /v1/answer for that specific entity + metric combination. Public and unauthenticated. Note: results are not yet filtered to the production-ready inventory, so a returned metric or entity that is not backed by a production fact table may 404 when passed to /beta/graph/related. Pass subtype to scope results to one entity class (see the subtype enum).
|
|
2498
2742
|
* @summary Search the data graph
|
|
2499
2743
|
* @param {string} q Search text (min 2 chars).
|
|
2500
|
-
* @param {string} [types] Comma-separated facets:
|
|
2744
|
+
* @param {string} [types] Comma-separated facets: metric,entity.
|
|
2501
2745
|
* @param {number} [limit] Max results (default 20, max 50).
|
|
2502
2746
|
* @param {'Companies' | 'Cryptocurrencies' | 'Financial Instruments' | 'Internet Browsers' | 'Commodities' | 'People' | 'Currencies' | 'Stock Exchanges' | 'Securities' | 'IPOs' | 'Government Debt Instruments' | 'Treasury Securities' | 'Airports' | 'Airlines' | 'Vehicle Types' | 'Transportation Modes' | 'Drugs' | 'Drug Categories' | 'Diseases' | 'Chemical Elements' | 'Chemical Compounds' | 'Celestial Bodies' | 'Occupations' | 'Social Media Platforms' | 'Operating Systems' | 'Search Engines' | 'Device Types' | 'LLMs' | 'LLM Families' | 'LLM Benchmarks' | 'Industries' | 'NAICS Industries' | 'BLS Industries' | 'PSC Categories' | 'Federal Contractors' | 'Federal Agencies' | 'Federal Subagencies' | 'ICE Contracts' | 'ICE Contractors' | 'Elections' | 'Political Offices' | 'Pollsters' | 'Agricultural Products' | 'Tobacco Products' | 'Prediction Markets' | 'Prediction Events' | 'Real Estate Property Types' | 'Continents' | 'World Regions' | 'Countries' | 'States' | 'Counties' | 'Metro Areas' | 'Cities' | 'F1 Drivers' | 'F1 Teams' | 'F1 Circuits' | 'F1 Events' | 'NASCAR Drivers' | 'NASCAR Teams' | 'NASCAR Tracks' | 'NASCAR Events' | 'NASCAR Races' | 'NASCAR Owners' | 'NASCAR Manufacturers' | 'Soccer Teams' | 'Soccer Players' | 'Soccer Competitions' | 'Soccer Conferences' | 'Basketball Teams' | 'Basketball Players' | 'Basketball Conferences' | 'Basketball Divisions' | 'Baseball Teams' | 'Baseball Players' | 'Baseball Conferences' | 'Baseball Divisions' | 'Baseball Competitions' | 'Football Teams' | 'Football Players' | 'Football Conferences' | 'Football Divisions' | 'Sports' | 'Sports Leagues'} [subtype] Filter to a single entity class (e.g. Countries, Companies). Implies entity-only results; an explicit non-entity \'types\' is a 400. Note: results are drawn from a bounded candidate window (min(limit*5, 200)) before filtering, so a response shorter than `limit` does not imply no further matches exist.
|
|
2503
2747
|
* @param {*} [options] Override http request option.
|
|
@@ -2506,7 +2750,7 @@ interface TakoApiInterface {
|
|
|
2506
2750
|
*/
|
|
2507
2751
|
graphSearchRaw(requestParameters: GraphSearchRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GraphSearchResponse>>;
|
|
2508
2752
|
/**
|
|
2509
|
-
* Resolve a
|
|
2753
|
+
* Resolve a metric or entity in Tako\'s data graph by name. Use this to discover and confirm what data exists before querying — e.g. resolve the metric and the entity you care about here, then ask /v3/search or /v1/answer for that specific entity + metric combination. Public and unauthenticated. Note: results are not yet filtered to the production-ready inventory, so a returned metric or entity that is not backed by a production fact table may 404 when passed to /beta/graph/related. Pass subtype to scope results to one entity class (see the subtype enum).
|
|
2510
2754
|
* Search the data graph
|
|
2511
2755
|
*/
|
|
2512
2756
|
graphSearch(requestParameters: GraphSearchRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GraphSearchResponse>;
|
|
@@ -2581,12 +2825,12 @@ declare class TakoApi extends BaseAPI implements TakoApiInterface {
|
|
|
2581
2825
|
*/
|
|
2582
2826
|
graphRelatedRequestOpts(requestParameters: GraphRelatedRequest): Promise<RequestOpts>;
|
|
2583
2827
|
/**
|
|
2584
|
-
* Explore what a node connects to: a
|
|
2828
|
+
* Explore what a node connects to: a metric\'s entities (the things it\'s tracked for), or an entity\'s available metrics. Use it to find which entity + metric combinations Tako covers, then query /v3/search or /v1/answer for that combination. Pass relation_type + cursor to paginate one facet, and the optional q to narrow that facet by a case-insensitive substring on name/aliases (e.g. metrics for an entity matching \'gdp\'). Public and unauthenticated.
|
|
2585
2829
|
* Get a graph node\'s related nodes
|
|
2586
2830
|
*/
|
|
2587
2831
|
graphRelatedRaw(requestParameters: GraphRelatedRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GraphRelatedResponse>>;
|
|
2588
2832
|
/**
|
|
2589
|
-
* Explore what a node connects to: a
|
|
2833
|
+
* Explore what a node connects to: a metric\'s entities (the things it\'s tracked for), or an entity\'s available metrics. Use it to find which entity + metric combinations Tako covers, then query /v3/search or /v1/answer for that combination. Pass relation_type + cursor to paginate one facet, and the optional q to narrow that facet by a case-insensitive substring on name/aliases (e.g. metrics for an entity matching \'gdp\'). Public and unauthenticated.
|
|
2590
2834
|
* Get a graph node\'s related nodes
|
|
2591
2835
|
*/
|
|
2592
2836
|
graphRelated(requestParameters: GraphRelatedRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GraphRelatedResponse>;
|
|
@@ -2595,12 +2839,12 @@ declare class TakoApi extends BaseAPI implements TakoApiInterface {
|
|
|
2595
2839
|
*/
|
|
2596
2840
|
graphSearchRequestOpts(requestParameters: GraphSearchRequest): Promise<RequestOpts>;
|
|
2597
2841
|
/**
|
|
2598
|
-
* Resolve a
|
|
2842
|
+
* Resolve a metric or entity in Tako\'s data graph by name. Use this to discover and confirm what data exists before querying — e.g. resolve the metric and the entity you care about here, then ask /v3/search or /v1/answer for that specific entity + metric combination. Public and unauthenticated. Note: results are not yet filtered to the production-ready inventory, so a returned metric or entity that is not backed by a production fact table may 404 when passed to /beta/graph/related. Pass subtype to scope results to one entity class (see the subtype enum).
|
|
2599
2843
|
* Search the data graph
|
|
2600
2844
|
*/
|
|
2601
2845
|
graphSearchRaw(requestParameters: GraphSearchRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GraphSearchResponse>>;
|
|
2602
2846
|
/**
|
|
2603
|
-
* Resolve a
|
|
2847
|
+
* Resolve a metric or entity in Tako\'s data graph by name. Use this to discover and confirm what data exists before querying — e.g. resolve the metric and the entity you care about here, then ask /v3/search or /v1/answer for that specific entity + metric combination. Public and unauthenticated. Note: results are not yet filtered to the production-ready inventory, so a returned metric or entity that is not backed by a production fact table may 404 when passed to /beta/graph/related. Pass subtype to scope results to one entity class (see the subtype enum).
|
|
2604
2848
|
* Search the data graph
|
|
2605
2849
|
*/
|
|
2606
2850
|
graphSearch(requestParameters: GraphSearchRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GraphSearchResponse>;
|
|
@@ -3776,4 +4020,4 @@ declare class Tako {
|
|
|
3776
4020
|
graphRelated(request: GraphRelatedRequest): Promise<GraphRelatedResponse>;
|
|
3777
4021
|
}
|
|
3778
4022
|
|
|
3779
|
-
export { APIErrorType, APIErrorTypeFromJSON, APIErrorTypeFromJSONTyped, APIErrorTypeToJSON, APIErrorTypeToJSONTyped, AgentApi, type AgentApiInterface, AgentEffortLevel, AgentEffortLevelFromJSON, AgentEffortLevelFromJSONTyped, AgentEffortLevelToJSON, AgentEffortLevelToJSONTyped, type AgentOutputSettings, AgentOutputSettingsFromJSON, AgentOutputSettingsFromJSONTyped, AgentOutputSettingsToJSON, AgentOutputSettingsToJSONTyped, AgentResource, type AgentResult, type AgentResultEvent, AgentResultEventFromJSON, AgentResultEventFromJSONTyped, AgentResultEventKindEnum, AgentResultEventToJSON, AgentResultEventToJSONTyped, AgentResultFromJSON, AgentResultFromJSONTyped, AgentResultToJSON, AgentResultToJSONTyped, type AgentRun, AgentRunFromJSON, AgentRunFromJSONTyped, AgentRunObjectEnum, type AgentRunRequest, AgentRunRequestFromJSON, AgentRunRequestFromJSONTyped, AgentRunRequestSourceIndexesEnum, AgentRunRequestToJSON, AgentRunRequestToJSONTyped, AgentRunStatus, AgentRunStatusFromJSON, AgentRunStatusFromJSONTyped, AgentRunStatusToJSON, AgentRunStatusToJSONTyped, AgentRunToJSON, AgentRunToJSONTyped, AgentStream, type AgentStreamEnvelope, AgentStreamEnvelopeFromJSON, AgentStreamEnvelopeFromJSONTyped, AgentStreamEnvelopeToJSON, AgentStreamEnvelopeToJSONTyped, type AgentStreamOptions, type AgentUsage, AgentUsageFromJSON, AgentUsageFromJSONTyped, AgentUsageToJSON, AgentUsageToJSONTyped, type AnswerRequest, type AnswerResponse, AnswerResponseFromJSON, AnswerResponseFromJSONTyped, AnswerResponseToJSON, AnswerResponseToJSONTyped, type ApiResponse, BASE_PATH, BaseAPI, type BaseAPIError, BaseAPIErrorFromJSON, BaseAPIErrorFromJSONTyped, BaseAPIErrorToJSON, BaseAPIErrorToJSONTyped, BlobApiResponse, type Block, BlockFromJSON, BlockFromJSONTyped, BlockToJSON, BlockToJSONTyped, COLLECTION_FORMATS, type ComponentConfig, ComponentConfigFromJSON, ComponentConfigFromJSONTyped, ComponentConfigToJSON, ComponentConfigToJSONTyped, ComponentTypeEnum, ComponentTypeEnumFromJSON, ComponentTypeEnumFromJSONTyped, ComponentTypeEnumToJSON, ComponentTypeEnumToJSONTyped, Configuration, type ConfigurationParameters, type Consume, ContentFormat, ContentFormatFromJSON, ContentFormatFromJSONTyped, ContentFormatToJSON, ContentFormatToJSONTyped, type ContentItem, ContentItemFromJSON, ContentItemFromJSONTyped, ContentItemToJSON, ContentItemToJSONTyped, ContentsDeliveryMode, ContentsDeliveryModeFromJSON, ContentsDeliveryModeFromJSONTyped, ContentsDeliveryModeToJSON, ContentsDeliveryModeToJSONTyped, type ContentsOperationRequest, type ContentsRequest, ContentsRequestFromJSON, ContentsRequestFromJSONTyped, ContentsRequestToJSON, ContentsRequestToJSONTyped, type ContentsResponse, ContentsResponseFromJSON, ContentsResponseFromJSONTyped, ContentsResponseToJSON, ContentsResponseToJSONTyped, type CreateAgentRunRequest, type CreateCard400Response, CreateCard400ResponseFromJSON, CreateCard400ResponseFromJSONTyped, CreateCard400ResponseToJSON, CreateCard400ResponseToJSONTyped, type CreateCardOperationRequest, type CreateCardRequest, CreateCardRequestFromJSON, CreateCardRequestFromJSONTyped, CreateCardRequestToJSON, CreateCardRequestToJSONTyped, type DataPipelineAnswerEvent, DataPipelineAnswerEventFromJSON, DataPipelineAnswerEventFromJSONTyped, DataPipelineAnswerEventKindEnum, DataPipelineAnswerEventToJSON, DataPipelineAnswerEventToJSONTyped, DefaultConfig, EntityClassName, EntityClassNameFromJSON, EntityClassNameFromJSONTyped, EntityClassNameToJSON, EntityClassNameToJSONTyped, type ErrorContext, type ErrorObject, ErrorObjectFromJSON, ErrorObjectFromJSONTyped, ErrorObjectToJSON, ErrorObjectToJSONTyped, type FetchAPI, FetchError, type FetchParams, type GetAgentRunRequest, type GraphNode, GraphNodeFromJSON, GraphNodeFromJSONTyped, GraphNodeToJSON, GraphNodeToJSONTyped, GraphNodeType, GraphNodeTypeFromJSON, GraphNodeTypeFromJSONTyped, GraphNodeTypeToJSON, GraphNodeTypeToJSONTyped, type GraphRelatedRequest, type GraphRelatedResponse, GraphRelatedResponseFromJSON, GraphRelatedResponseFromJSONTyped, GraphRelatedResponseToJSON, GraphRelatedResponseToJSONTyped, type GraphRelationPage, GraphRelationPageFromJSON, GraphRelationPageFromJSONTyped, GraphRelationPageToJSON, GraphRelationPageToJSONTyped, type GraphSearchRequest, type GraphSearchResponse, GraphSearchResponseFromJSON, GraphSearchResponseFromJSONTyped, GraphSearchResponseToJSON, GraphSearchResponseToJSONTyped, GraphSearchSubtypeEnum, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type HeartbeatEvent, HeartbeatEventFromJSON, HeartbeatEventFromJSONTyped, HeartbeatEventKindEnum, HeartbeatEventToJSON, HeartbeatEventToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, type KnowledgeCardMethodology, KnowledgeCardMethodologyFromJSON, KnowledgeCardMethodologyFromJSONTyped, KnowledgeCardMethodologyToJSON, KnowledgeCardMethodologyToJSONTyped, KnowledgeCardRelevance, KnowledgeCardRelevanceFromJSON, KnowledgeCardRelevanceFromJSONTyped, KnowledgeCardRelevanceToJSON, KnowledgeCardRelevanceToJSONTyped, type Middleware, type ModelPropertyNaming, type OutputSettings, OutputSettingsFromJSON, OutputSettingsFromJSONTyped, OutputSettingsToJSON, OutputSettingsToJSONTyped, type ReasoningEvent, ReasoningEventFromJSON, ReasoningEventFromJSONTyped, ReasoningEventKindEnum, ReasoningEventToJSON, ReasoningEventToJSONTyped, type RelatedGroups, RelatedGroupsFromJSON, RelatedGroupsFromJSONTyped, RelatedGroupsToJSON, RelatedGroupsToJSONTyped, type RelationGroup, RelationGroupFromJSON, RelationGroupFromJSONTyped, RelationGroupToJSON, RelationGroupToJSONTyped, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, type ResultContent, ResultContentFromJSON, ResultContentFromJSONTyped, ResultContentToJSON, ResultContentToJSONTyped, SearchEffortLevel, SearchEffortLevelFromJSON, SearchEffortLevelFromJSONTyped, SearchEffortLevelToJSON, SearchEffortLevelToJSONTyped, type SearchOperationRequest, type SearchRequest, SearchRequestFromJSON, SearchRequestFromJSONTyped, SearchRequestToJSON, SearchRequestToJSONTyped, type SearchResponse, SearchResponseFromJSON, SearchResponseFromJSONTyped, SearchResponseToJSON, SearchResponseToJSONTyped, type SourceSettings, SourceSettingsFromJSON, SourceSettingsFromJSONTyped, SourceSettingsToJSON, SourceSettingsToJSONTyped, type Sources, SourcesFromJSON, SourcesFromJSONTyped, SourcesToJSON, SourcesToJSONTyped, type StatusEvent, StatusEventFromJSON, StatusEventFromJSONTyped, StatusEventKindEnum, StatusEventToJSON, StatusEventToJSONTyped, StreamCategory, StreamCategoryFromJSON, StreamCategoryFromJSONTyped, StreamCategoryToJSON, StreamCategoryToJSONTyped, type StreamDoneEvent, StreamDoneEventFromJSON, StreamDoneEventFromJSONTyped, StreamDoneEventKindEnum, StreamDoneEventToJSON, StreamDoneEventToJSONTyped, type StreamResetEvent, StreamResetEventFromJSON, StreamResetEventFromJSONTyped, StreamResetEventKindEnum, StreamResetEventToJSON, StreamResetEventToJSONTyped, type SubagentEvent, SubagentEventEventEnum, SubagentEventFromJSON, SubagentEventFromJSONTyped, SubagentEventKindEnum, SubagentEventToJSON, SubagentEventToJSONTyped, Tako, TakoApi, type TakoApiInterface, type TakoCard, TakoCardFromJSON, TakoCardFromJSONTyped, type TakoCardSource, TakoCardSourceFromJSON, TakoCardSourceFromJSONTyped, TakoCardSourceToJSON, TakoCardSourceToJSONTyped, TakoCardToJSON, TakoCardToJSONTyped, type TakoOptions, TakoSourceIndex, TakoSourceIndexFromJSON, TakoSourceIndexFromJSONTyped, TakoSourceIndexToJSON, TakoSourceIndexToJSONTyped, TextApiResponse, type TextEvent, TextEventFromJSON, TextEventFromJSONTyped, TextEventKindEnum, TextEventToJSON, TextEventToJSONTyped, type ThinVizCard, ThinVizCardEmbedModeEnum, ThinVizCardFromJSON, ThinVizCardFromJSONTyped, ThinVizCardToJSON, ThinVizCardToJSONTyped, type ToolCallEvent, ToolCallEventFromJSON, ToolCallEventFromJSONTyped, ToolCallEventKindEnum, ToolCallEventToJSON, ToolCallEventToJSONTyped, type ToolErrorEvent, ToolErrorEventFromJSON, ToolErrorEventFromJSONTyped, ToolErrorEventKindEnum, ToolErrorEventToJSON, ToolErrorEventToJSONTyped, type ToolResultEvent, ToolResultEventFromJSON, ToolResultEventFromJSONTyped, ToolResultEventKindEnum, ToolResultEventToJSON, ToolResultEventToJSONTyped, type ToolRetryEvent, ToolRetryEventFromJSON, ToolRetryEventFromJSONTyped, ToolRetryEventKindEnum, ToolRetryEventToJSON, ToolRetryEventToJSONTyped, VoidApiResponse, type WebResult, WebResultFromJSON, WebResultFromJSONTyped, WebResultToJSON, WebResultToJSONTyped, canConsumeForm, exists, instanceOfAPIErrorType, instanceOfAgentEffortLevel, instanceOfAgentOutputSettings, instanceOfAgentResult, instanceOfAgentResultEvent, instanceOfAgentRun, instanceOfAgentRunRequest, instanceOfAgentRunStatus, instanceOfAgentStreamEnvelope, instanceOfAgentUsage, instanceOfAnswerResponse, instanceOfBaseAPIError, instanceOfComponentConfig, instanceOfComponentTypeEnum, instanceOfContentFormat, instanceOfContentItem, instanceOfContentsDeliveryMode, instanceOfContentsRequest, instanceOfContentsResponse, instanceOfCreateCard400Response, instanceOfCreateCardRequest, instanceOfDataPipelineAnswerEvent, instanceOfEntityClassName, instanceOfErrorObject, instanceOfGraphNode, instanceOfGraphNodeType, instanceOfGraphRelatedResponse, instanceOfGraphRelationPage, instanceOfGraphSearchResponse, instanceOfHeartbeatEvent, instanceOfKnowledgeCardMethodology, instanceOfKnowledgeCardRelevance, instanceOfOutputSettings, instanceOfReasoningEvent, instanceOfRelatedGroups, instanceOfRelationGroup, instanceOfResultContent, instanceOfSearchEffortLevel, instanceOfSearchRequest, instanceOfSearchResponse, instanceOfSourceSettings, instanceOfSources, instanceOfStatusEvent, instanceOfStreamCategory, instanceOfStreamDoneEvent, instanceOfStreamResetEvent, instanceOfSubagentEvent, instanceOfTakoCard, instanceOfTakoCardSource, instanceOfTakoSourceIndex, instanceOfTextEvent, instanceOfThinVizCard, instanceOfToolCallEvent, instanceOfToolErrorEvent, instanceOfToolResultEvent, instanceOfToolRetryEvent, instanceOfWebResult, mapValues, querystring };
|
|
4023
|
+
export { APIErrorType, APIErrorTypeFromJSON, APIErrorTypeFromJSONTyped, APIErrorTypeToJSON, APIErrorTypeToJSONTyped, type AgentAnswerAssumption, AgentAnswerAssumptionFromJSON, AgentAnswerAssumptionFromJSONTyped, AgentAnswerAssumptionToJSON, AgentAnswerAssumptionToJSONTyped, type AgentAnswerCitation, AgentAnswerCitationFromJSON, AgentAnswerCitationFromJSONTyped, AgentAnswerCitationToJSON, AgentAnswerCitationToJSONTyped, type AgentAnswerDefinition, AgentAnswerDefinitionFromJSON, AgentAnswerDefinitionFromJSONTyped, AgentAnswerDefinitionToJSON, AgentAnswerDefinitionToJSONTyped, type AgentAnswerMetadata, AgentAnswerMetadataFromJSON, AgentAnswerMetadataFromJSONTyped, AgentAnswerMetadataToJSON, AgentAnswerMetadataToJSONTyped, type AgentAnswerMethodologyNote, AgentAnswerMethodologyNoteFromJSON, AgentAnswerMethodologyNoteFromJSONTyped, AgentAnswerMethodologyNoteToJSON, AgentAnswerMethodologyNoteToJSONTyped, AgentApi, type AgentApiInterface, AgentEffortLevel, AgentEffortLevelFromJSON, AgentEffortLevelFromJSONTyped, AgentEffortLevelToJSON, AgentEffortLevelToJSONTyped, type AgentOutputSettings, AgentOutputSettingsFromJSON, AgentOutputSettingsFromJSONTyped, AgentOutputSettingsToJSON, AgentOutputSettingsToJSONTyped, AgentResource, type AgentResult, type AgentResultEvent, AgentResultEventFromJSON, AgentResultEventFromJSONTyped, AgentResultEventKindEnum, AgentResultEventToJSON, AgentResultEventToJSONTyped, AgentResultFromJSON, AgentResultFromJSONTyped, AgentResultToJSON, AgentResultToJSONTyped, type AgentRun, AgentRunFromJSON, AgentRunFromJSONTyped, AgentRunObjectEnum, type AgentRunRequest, AgentRunRequestFromJSON, AgentRunRequestFromJSONTyped, AgentRunRequestSourceIndexesEnum, AgentRunRequestToJSON, AgentRunRequestToJSONTyped, AgentRunStatus, AgentRunStatusFromJSON, AgentRunStatusFromJSONTyped, AgentRunStatusToJSON, AgentRunStatusToJSONTyped, AgentRunToJSON, AgentRunToJSONTyped, AgentStream, type AgentStreamEnvelope, AgentStreamEnvelopeFromJSON, AgentStreamEnvelopeFromJSONTyped, AgentStreamEnvelopeToJSON, AgentStreamEnvelopeToJSONTyped, type AgentStreamOptions, type AgentUsage, AgentUsageFromJSON, AgentUsageFromJSONTyped, AgentUsageToJSON, AgentUsageToJSONTyped, type AnswerRequest, type AnswerResponse, AnswerResponseFromJSON, AnswerResponseFromJSONTyped, AnswerResponseToJSON, AnswerResponseToJSONTyped, type ApiResponse, BASE_PATH, BaseAPI, type BaseAPIError, BaseAPIErrorFromJSON, BaseAPIErrorFromJSONTyped, BaseAPIErrorToJSON, BaseAPIErrorToJSONTyped, BlobApiResponse, type Block, BlockFromJSON, BlockFromJSONTyped, BlockToJSON, BlockToJSONTyped, COLLECTION_FORMATS, type ComponentConfig, ComponentConfigFromJSON, ComponentConfigFromJSONTyped, ComponentConfigToJSON, ComponentConfigToJSONTyped, ComponentTypeEnum, ComponentTypeEnumFromJSON, ComponentTypeEnumFromJSONTyped, ComponentTypeEnumToJSON, ComponentTypeEnumToJSONTyped, Configuration, type ConfigurationParameters, type Consume, ContentFormat, ContentFormatFromJSON, ContentFormatFromJSONTyped, ContentFormatToJSON, ContentFormatToJSONTyped, type ContentItem, ContentItemFromJSON, ContentItemFromJSONTyped, ContentItemToJSON, ContentItemToJSONTyped, ContentsDeliveryMode, ContentsDeliveryModeFromJSON, ContentsDeliveryModeFromJSONTyped, ContentsDeliveryModeToJSON, ContentsDeliveryModeToJSONTyped, type ContentsOperationRequest, type ContentsRequest, ContentsRequestFromJSON, ContentsRequestFromJSONTyped, ContentsRequestToJSON, ContentsRequestToJSONTyped, type ContentsResponse, ContentsResponseFromJSON, ContentsResponseFromJSONTyped, ContentsResponseToJSON, ContentsResponseToJSONTyped, type CreateAgentRunRequest, type CreateCard400Response, CreateCard400ResponseFromJSON, CreateCard400ResponseFromJSONTyped, CreateCard400ResponseToJSON, CreateCard400ResponseToJSONTyped, type CreateCardOperationRequest, type CreateCardRequest, CreateCardRequestFromJSON, CreateCardRequestFromJSONTyped, CreateCardRequestToJSON, CreateCardRequestToJSONTyped, type DataPipelineAnswerEvent, DataPipelineAnswerEventFromJSON, DataPipelineAnswerEventFromJSONTyped, DataPipelineAnswerEventKindEnum, DataPipelineAnswerEventToJSON, DataPipelineAnswerEventToJSONTyped, DefaultConfig, EntityClassName, EntityClassNameFromJSON, EntityClassNameFromJSONTyped, EntityClassNameToJSON, EntityClassNameToJSONTyped, type ErrorContext, type ErrorObject, ErrorObjectFromJSON, ErrorObjectFromJSONTyped, ErrorObjectToJSON, ErrorObjectToJSONTyped, type FetchAPI, FetchError, type FetchParams, type GetAgentRunRequest, type GraphNode, GraphNodeFromJSON, GraphNodeFromJSONTyped, GraphNodeToJSON, GraphNodeToJSONTyped, GraphNodeType, GraphNodeTypeFromJSON, GraphNodeTypeFromJSONTyped, GraphNodeTypeToJSON, GraphNodeTypeToJSONTyped, type GraphRelatedRequest, type GraphRelatedResponse, GraphRelatedResponseFromJSON, GraphRelatedResponseFromJSONTyped, GraphRelatedResponseToJSON, GraphRelatedResponseToJSONTyped, type GraphRelationPage, GraphRelationPageFromJSON, GraphRelationPageFromJSONTyped, GraphRelationPageToJSON, GraphRelationPageToJSONTyped, type GraphSearchRequest, type GraphSearchResponse, GraphSearchResponseFromJSON, GraphSearchResponseFromJSONTyped, GraphSearchResponseToJSON, GraphSearchResponseToJSONTyped, GraphSearchSubtypeEnum, type HTTPBody, type HTTPHeaders, type HTTPMethod, type HTTPQuery, type HTTPRequestInit, type HeartbeatEvent, HeartbeatEventFromJSON, HeartbeatEventFromJSONTyped, HeartbeatEventKindEnum, HeartbeatEventToJSON, HeartbeatEventToJSONTyped, type InitOverrideFunction, JSONApiResponse, type Json, type KnowledgeCardMethodology, KnowledgeCardMethodologyFromJSON, KnowledgeCardMethodologyFromJSONTyped, KnowledgeCardMethodologyToJSON, KnowledgeCardMethodologyToJSONTyped, KnowledgeCardRelevance, KnowledgeCardRelevanceFromJSON, KnowledgeCardRelevanceFromJSONTyped, KnowledgeCardRelevanceToJSON, KnowledgeCardRelevanceToJSONTyped, type Middleware, type ModelPropertyNaming, type OutputSettings, OutputSettingsFromJSON, OutputSettingsFromJSONTyped, OutputSettingsToJSON, OutputSettingsToJSONTyped, type ReasoningEvent, ReasoningEventFromJSON, ReasoningEventFromJSONTyped, ReasoningEventKindEnum, ReasoningEventToJSON, ReasoningEventToJSONTyped, type RelatedGroups, RelatedGroupsFromJSON, RelatedGroupsFromJSONTyped, RelatedGroupsToJSON, RelatedGroupsToJSONTyped, type RelationGroup, RelationGroupFromJSON, RelationGroupFromJSONTyped, RelationGroupToJSON, RelationGroupToJSONTyped, type RequestContext, type RequestOpts, RequiredError, type ResponseContext, ResponseError, type ResponseTransformer, type ResultContent, ResultContentFromJSON, ResultContentFromJSONTyped, ResultContentToJSON, ResultContentToJSONTyped, SearchEffortLevel, SearchEffortLevelFromJSON, SearchEffortLevelFromJSONTyped, SearchEffortLevelToJSON, SearchEffortLevelToJSONTyped, type SearchOperationRequest, type SearchRequest, SearchRequestFromJSON, SearchRequestFromJSONTyped, SearchRequestToJSON, SearchRequestToJSONTyped, type SearchResponse, SearchResponseFromJSON, SearchResponseFromJSONTyped, SearchResponseToJSON, SearchResponseToJSONTyped, type SourceSettings, SourceSettingsFromJSON, SourceSettingsFromJSONTyped, SourceSettingsToJSON, SourceSettingsToJSONTyped, type Sources, SourcesFromJSON, SourcesFromJSONTyped, SourcesToJSON, SourcesToJSONTyped, type StatusEvent, StatusEventFromJSON, StatusEventFromJSONTyped, StatusEventKindEnum, StatusEventToJSON, StatusEventToJSONTyped, StreamCategory, StreamCategoryFromJSON, StreamCategoryFromJSONTyped, StreamCategoryToJSON, StreamCategoryToJSONTyped, type StreamDoneEvent, StreamDoneEventFromJSON, StreamDoneEventFromJSONTyped, StreamDoneEventKindEnum, StreamDoneEventToJSON, StreamDoneEventToJSONTyped, type StreamResetEvent, StreamResetEventFromJSON, StreamResetEventFromJSONTyped, StreamResetEventKindEnum, StreamResetEventToJSON, StreamResetEventToJSONTyped, type SubagentEvent, SubagentEventEventEnum, SubagentEventFromJSON, SubagentEventFromJSONTyped, SubagentEventKindEnum, SubagentEventToJSON, SubagentEventToJSONTyped, Tako, TakoApi, type TakoApiInterface, type TakoCard, TakoCardFromJSON, TakoCardFromJSONTyped, type TakoCardSource, TakoCardSourceFromJSON, TakoCardSourceFromJSONTyped, TakoCardSourceToJSON, TakoCardSourceToJSONTyped, TakoCardToJSON, TakoCardToJSONTyped, type TakoOptions, TakoSourceIndex, TakoSourceIndexFromJSON, TakoSourceIndexFromJSONTyped, TakoSourceIndexToJSON, TakoSourceIndexToJSONTyped, TextApiResponse, type TextEvent, TextEventFromJSON, TextEventFromJSONTyped, TextEventKindEnum, TextEventToJSON, TextEventToJSONTyped, type ThinVizCard, ThinVizCardEmbedModeEnum, ThinVizCardFromJSON, ThinVizCardFromJSONTyped, ThinVizCardToJSON, ThinVizCardToJSONTyped, type ToolCallEvent, ToolCallEventFromJSON, ToolCallEventFromJSONTyped, ToolCallEventKindEnum, ToolCallEventToJSON, ToolCallEventToJSONTyped, type ToolErrorEvent, ToolErrorEventFromJSON, ToolErrorEventFromJSONTyped, ToolErrorEventKindEnum, ToolErrorEventToJSON, ToolErrorEventToJSONTyped, type ToolResultEvent, ToolResultEventFromJSON, ToolResultEventFromJSONTyped, ToolResultEventKindEnum, ToolResultEventToJSON, ToolResultEventToJSONTyped, type ToolRetryEvent, ToolRetryEventFromJSON, ToolRetryEventFromJSONTyped, ToolRetryEventKindEnum, ToolRetryEventToJSON, ToolRetryEventToJSONTyped, VoidApiResponse, type WebResult, WebResultFromJSON, WebResultFromJSONTyped, WebResultToJSON, WebResultToJSONTyped, canConsumeForm, exists, instanceOfAPIErrorType, instanceOfAgentAnswerAssumption, instanceOfAgentAnswerCitation, instanceOfAgentAnswerDefinition, instanceOfAgentAnswerMetadata, instanceOfAgentAnswerMethodologyNote, instanceOfAgentEffortLevel, instanceOfAgentOutputSettings, instanceOfAgentResult, instanceOfAgentResultEvent, instanceOfAgentRun, instanceOfAgentRunRequest, instanceOfAgentRunStatus, instanceOfAgentStreamEnvelope, instanceOfAgentUsage, instanceOfAnswerResponse, instanceOfBaseAPIError, instanceOfComponentConfig, instanceOfComponentTypeEnum, instanceOfContentFormat, instanceOfContentItem, instanceOfContentsDeliveryMode, instanceOfContentsRequest, instanceOfContentsResponse, instanceOfCreateCard400Response, instanceOfCreateCardRequest, instanceOfDataPipelineAnswerEvent, instanceOfEntityClassName, instanceOfErrorObject, instanceOfGraphNode, instanceOfGraphNodeType, instanceOfGraphRelatedResponse, instanceOfGraphRelationPage, instanceOfGraphSearchResponse, instanceOfHeartbeatEvent, instanceOfKnowledgeCardMethodology, instanceOfKnowledgeCardRelevance, instanceOfOutputSettings, instanceOfReasoningEvent, instanceOfRelatedGroups, instanceOfRelationGroup, instanceOfResultContent, instanceOfSearchEffortLevel, instanceOfSearchRequest, instanceOfSearchResponse, instanceOfSourceSettings, instanceOfSources, instanceOfStatusEvent, instanceOfStreamCategory, instanceOfStreamDoneEvent, instanceOfStreamResetEvent, instanceOfSubagentEvent, instanceOfTakoCard, instanceOfTakoCardSource, instanceOfTakoSourceIndex, instanceOfTextEvent, instanceOfThinVizCard, instanceOfToolCallEvent, instanceOfToolErrorEvent, instanceOfToolResultEvent, instanceOfToolRetryEvent, instanceOfWebResult, mapValues, querystring };
|