@kortexya/reasoninglayer 0.2.4 → 0.2.5
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +489 -459
- package/dist/index.d.ts +489 -459
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ type JsonValue$1 = string | number | boolean | null | JsonValue$1[] | object;
|
|
|
109
109
|
* This is the single source of truth for the version constant.
|
|
110
110
|
* The `scripts/release.sh` script updates this value alongside `package.json`.
|
|
111
111
|
*/
|
|
112
|
-
declare const SDK_VERSION = "0.2.
|
|
112
|
+
declare const SDK_VERSION = "0.2.5";
|
|
113
113
|
/**
|
|
114
114
|
* Configuration for the Reasoning Layer client.
|
|
115
115
|
*
|
|
@@ -5555,7 +5555,7 @@ interface FinalizeSessionRequest {
|
|
|
5555
5555
|
* # Tenant Context
|
|
5556
5556
|
* The tenant is determined from the `X-Tenant-Id` header.
|
|
5557
5557
|
*/
|
|
5558
|
-
interface FindBySortRequest {
|
|
5558
|
+
interface FindBySortRequest$1 {
|
|
5559
5559
|
/**
|
|
5560
5560
|
* Optional feature-level filter. Each entry maps a feature name to the
|
|
5561
5561
|
* expected string value. Only terms whose features match ALL entries are
|
|
@@ -16657,6 +16657,22 @@ interface BySortQueryRequest {
|
|
|
16657
16657
|
/** Maximum number of results to return. */
|
|
16658
16658
|
max_results?: number;
|
|
16659
16659
|
}
|
|
16660
|
+
/**
|
|
16661
|
+
* Request to find terms by sort ID or sort name, with optional filter.
|
|
16662
|
+
*
|
|
16663
|
+
* @remarks
|
|
16664
|
+
* Used by `POST /api/v1/terms/find-by-sort`. Accepts either `sort_id` (UUID)
|
|
16665
|
+
* or `sort_name` (human-readable name), plus an optional filter object for
|
|
16666
|
+
* feature-based filtering.
|
|
16667
|
+
*/
|
|
16668
|
+
interface FindBySortRequest {
|
|
16669
|
+
/** Sort UUID to search for. */
|
|
16670
|
+
sort_id?: string | null;
|
|
16671
|
+
/** Sort name to search for (alternative to sort_id). */
|
|
16672
|
+
sort_name?: string | null;
|
|
16673
|
+
/** Optional filter for feature-based filtering. */
|
|
16674
|
+
filter?: Record<string, string> | null;
|
|
16675
|
+
}
|
|
16660
16676
|
/**
|
|
16661
16677
|
* Request to validate a term against its sort's type witnesses.
|
|
16662
16678
|
*
|
|
@@ -18052,7 +18068,7 @@ declare class Query<SecurityDataType = unknown> {
|
|
|
18052
18068
|
* @request POST:/api/v1/query/by-sort
|
|
18053
18069
|
* @secure
|
|
18054
18070
|
*/
|
|
18055
|
-
findBySort: (data: FindBySortRequest, params?: RequestParams) => Promise<HttpResponse<TermListResponse$1, any>>;
|
|
18071
|
+
findBySort: (data: FindBySortRequest$1, params?: RequestParams) => Promise<HttpResponse<TermListResponse$1, any>>;
|
|
18056
18072
|
/**
|
|
18057
18073
|
* No description
|
|
18058
18074
|
*
|
|
@@ -20923,6 +20939,449 @@ interface StepVerificationResponse {
|
|
|
20923
20939
|
total_steps: number;
|
|
20924
20940
|
}
|
|
20925
20941
|
|
|
20942
|
+
/**
|
|
20943
|
+
* Layout algorithm hint for graph rendering.
|
|
20944
|
+
*
|
|
20945
|
+
* @remarks
|
|
20946
|
+
* Can be a predefined algorithm or a custom algorithm name.
|
|
20947
|
+
*/
|
|
20948
|
+
type LayoutAlgorithmDto = 'force_directed' | 'sugiyama' | 'circular' | 'grid' | 'radial' | {
|
|
20949
|
+
custom: string;
|
|
20950
|
+
};
|
|
20951
|
+
/**
|
|
20952
|
+
* Layout direction hint for hierarchical graph layouts.
|
|
20953
|
+
*/
|
|
20954
|
+
type LayoutDirectionDto = 'top_bottom' | 'bottom_top' | 'left_right' | 'right_left';
|
|
20955
|
+
/**
|
|
20956
|
+
* GLB/LUB operation type.
|
|
20957
|
+
*/
|
|
20958
|
+
type GlbLubOperation = 'glb' | 'lub';
|
|
20959
|
+
/**
|
|
20960
|
+
* Kind of residuation to visualize.
|
|
20961
|
+
*/
|
|
20962
|
+
type ResiduationKind = 'inference' | 'fuzzy' | 'extraction' | 'all';
|
|
20963
|
+
/**
|
|
20964
|
+
* State filter for residuation visualization.
|
|
20965
|
+
*/
|
|
20966
|
+
type ResiduationStateFilter = 'pending' | 'suspended' | 'ready' | 'completed' | 'all';
|
|
20967
|
+
/**
|
|
20968
|
+
* Node type in the visualization graph.
|
|
20969
|
+
*
|
|
20970
|
+
* @remarks
|
|
20971
|
+
* Can be a predefined node type or a custom type name.
|
|
20972
|
+
*/
|
|
20973
|
+
type NodeTypeDto = 'sort' | 'synthetic_sort' | 'root_sort' | 'bottom_sort' | 'constraint' | 'fd_variable' | 'term' | 'feature' | 'reference' | 'residuated_term' | 'trigger' | 'relation' | {
|
|
20974
|
+
custom: string;
|
|
20975
|
+
};
|
|
20976
|
+
/**
|
|
20977
|
+
* Edge type in the visualization graph.
|
|
20978
|
+
*
|
|
20979
|
+
* @remarks
|
|
20980
|
+
* Can be a predefined edge type or a custom type name.
|
|
20981
|
+
*/
|
|
20982
|
+
type EdgeTypeDto = 'subtype' | 'multiple_inheritance' | 'glb_path' | 'lub_path' | 'constraint_dependency' | 'propagation' | 'feature' | 'coreference' | 'trigger_dependency' | 'relation_source' | 'relation_target' | {
|
|
20983
|
+
custom: string;
|
|
20984
|
+
};
|
|
20985
|
+
/**
|
|
20986
|
+
* Hyperedge type in the visualization graph.
|
|
20987
|
+
*
|
|
20988
|
+
* @remarks
|
|
20989
|
+
* Can be a predefined hyperedge type or a custom type name.
|
|
20990
|
+
*/
|
|
20991
|
+
type HyperedgeTypeDto = 'term_features' | 'constraint_variables' | 'unification_result' | {
|
|
20992
|
+
custom: string;
|
|
20993
|
+
};
|
|
20994
|
+
/**
|
|
20995
|
+
* Type of waiting condition for a residuation.
|
|
20996
|
+
*/
|
|
20997
|
+
type WaitingConditionType = 'feature_binding' | 'sort_narrowing' | 'term_creation' | 'external_input' | 'constraint_satisfaction';
|
|
20998
|
+
/**
|
|
20999
|
+
* State of a residuation.
|
|
21000
|
+
*/
|
|
21001
|
+
type ResiduationStateDto = 'pending' | 'suspended' | 'ready' | 'completed' | 'failed';
|
|
21002
|
+
/**
|
|
21003
|
+
* A node in the visualization graph.
|
|
21004
|
+
*/
|
|
21005
|
+
interface GraphNodeDto {
|
|
21006
|
+
/** Color of the node (hex string). */
|
|
21007
|
+
color?: string | null;
|
|
21008
|
+
/** Optional entity ID this node represents (UUID). */
|
|
21009
|
+
entity_id?: string | null;
|
|
21010
|
+
/** Unique identifier for this node. */
|
|
21011
|
+
id: string;
|
|
21012
|
+
/** Display label for the node. */
|
|
21013
|
+
label: string;
|
|
21014
|
+
/** Level in hierarchy (for lattice visualization). */
|
|
21015
|
+
level?: number | null;
|
|
21016
|
+
/** Type of node. */
|
|
21017
|
+
node_type: NodeTypeDto;
|
|
21018
|
+
/** Additional properties. */
|
|
21019
|
+
properties?: Record<string, string>;
|
|
21020
|
+
/** Size of the node (for rendering). */
|
|
21021
|
+
size?: number | null;
|
|
21022
|
+
}
|
|
21023
|
+
/**
|
|
21024
|
+
* An edge connecting two nodes in the visualization graph.
|
|
21025
|
+
*/
|
|
21026
|
+
interface GraphEdgeDto {
|
|
21027
|
+
/** Color of the edge (hex string). */
|
|
21028
|
+
color?: string | null;
|
|
21029
|
+
/** Curvature for curved edges (0.0 = straight, 1.0 = max curve). */
|
|
21030
|
+
curvature?: number | null;
|
|
21031
|
+
/** Type of edge. */
|
|
21032
|
+
edge_type: EdgeTypeDto;
|
|
21033
|
+
/** Unique identifier for this edge. */
|
|
21034
|
+
id: string;
|
|
21035
|
+
/** Optional edge label. */
|
|
21036
|
+
label?: string | null;
|
|
21037
|
+
/** Additional properties. */
|
|
21038
|
+
properties?: Record<string, string>;
|
|
21039
|
+
/** Source node ID. */
|
|
21040
|
+
source: string;
|
|
21041
|
+
/** Target node ID. */
|
|
21042
|
+
target: string;
|
|
21043
|
+
/** Weight of the edge (for weighted graphs). */
|
|
21044
|
+
weight?: number | null;
|
|
21045
|
+
}
|
|
21046
|
+
/**
|
|
21047
|
+
* A hyperedge connecting multiple nodes in the visualization graph.
|
|
21048
|
+
*/
|
|
21049
|
+
interface HyperedgeDto {
|
|
21050
|
+
/** Color of the hyperedge (hex string). */
|
|
21051
|
+
color?: string | null;
|
|
21052
|
+
/** Type of hyperedge. */
|
|
21053
|
+
hyperedge_type: HyperedgeTypeDto;
|
|
21054
|
+
/** Unique identifier for this hyperedge. */
|
|
21055
|
+
id: string;
|
|
21056
|
+
/** Display label for the hyperedge. */
|
|
21057
|
+
label?: string | null;
|
|
21058
|
+
/** IDs of all nodes connected by this hyperedge. */
|
|
21059
|
+
nodes: string[];
|
|
21060
|
+
/** Whether the nodes are ordered. */
|
|
21061
|
+
ordered: boolean;
|
|
21062
|
+
/** Additional properties. */
|
|
21063
|
+
properties?: Record<string, string>;
|
|
21064
|
+
/** Optional source term ID (UUID). */
|
|
21065
|
+
source_term_id?: string | null;
|
|
21066
|
+
}
|
|
21067
|
+
/**
|
|
21068
|
+
* Metadata about a visualization graph.
|
|
21069
|
+
*/
|
|
21070
|
+
interface GraphMetadataDto {
|
|
21071
|
+
/** Description of what this graph represents. */
|
|
21072
|
+
description?: string | null;
|
|
21073
|
+
/** Total number of edges. */
|
|
21074
|
+
edge_count: number;
|
|
21075
|
+
/** Additional metadata. */
|
|
21076
|
+
extra?: Record<string, string>;
|
|
21077
|
+
/** Total number of hyperedges. */
|
|
21078
|
+
hyperedge_count: number;
|
|
21079
|
+
/** Whether the graph is directed. */
|
|
21080
|
+
is_directed: boolean;
|
|
21081
|
+
/** Total number of nodes. */
|
|
21082
|
+
node_count: number;
|
|
21083
|
+
/** Title of the graph. */
|
|
21084
|
+
title?: string | null;
|
|
21085
|
+
}
|
|
21086
|
+
/**
|
|
21087
|
+
* Layout hints for rendering a visualization graph.
|
|
21088
|
+
*/
|
|
21089
|
+
interface LayoutHintsDto {
|
|
21090
|
+
/** Preferred layout algorithm. */
|
|
21091
|
+
algorithm: LayoutAlgorithmDto;
|
|
21092
|
+
/** Cluster definitions. */
|
|
21093
|
+
clusters?: Record<string, string[]>;
|
|
21094
|
+
/** Direction for hierarchical layouts. */
|
|
21095
|
+
direction?: LayoutDirectionDto | null;
|
|
21096
|
+
/** Level spacing for hierarchical layouts (pixels). */
|
|
21097
|
+
level_spacing?: number | null;
|
|
21098
|
+
/** Node spacing (pixels). */
|
|
21099
|
+
node_spacing?: number | null;
|
|
21100
|
+
}
|
|
21101
|
+
/**
|
|
21102
|
+
* Unified graph response for all visualization types.
|
|
21103
|
+
*
|
|
21104
|
+
* @remarks
|
|
21105
|
+
* Contains nodes, edges, optional hyperedges, layout hints, and metadata.
|
|
21106
|
+
*/
|
|
21107
|
+
interface VisualizationGraphDto {
|
|
21108
|
+
/** DOT format output (if requested). */
|
|
21109
|
+
dot_output?: string | null;
|
|
21110
|
+
/** All edges in the graph. */
|
|
21111
|
+
edges: GraphEdgeDto[];
|
|
21112
|
+
/** Unique identifier for this graph (UUID). */
|
|
21113
|
+
graph_id: string;
|
|
21114
|
+
/** All hyperedges in the graph. */
|
|
21115
|
+
hyperedges?: HyperedgeDto[];
|
|
21116
|
+
/** Layout hints for rendering. */
|
|
21117
|
+
layout?: LayoutHintsDto | null;
|
|
21118
|
+
/** Metadata about the graph. */
|
|
21119
|
+
metadata: GraphMetadataDto;
|
|
21120
|
+
/** All nodes in the graph. */
|
|
21121
|
+
nodes: GraphNodeDto[];
|
|
21122
|
+
}
|
|
21123
|
+
/**
|
|
21124
|
+
* Summary of a sort for trace responses.
|
|
21125
|
+
*/
|
|
21126
|
+
interface SortSummaryDto {
|
|
21127
|
+
/** Sort ID (UUID). */
|
|
21128
|
+
id: string;
|
|
21129
|
+
/** Whether this is a synthetic sort. */
|
|
21130
|
+
is_synthetic: boolean;
|
|
21131
|
+
/** Sort name. */
|
|
21132
|
+
name: string;
|
|
21133
|
+
}
|
|
21134
|
+
/**
|
|
21135
|
+
* Request for OSF term hypergraph visualization.
|
|
21136
|
+
*/
|
|
21137
|
+
interface HypergraphRequest {
|
|
21138
|
+
/** Whether to generate DOT output. */
|
|
21139
|
+
generate_dot?: boolean;
|
|
21140
|
+
/** Whether to include hyperedges. */
|
|
21141
|
+
include_hyperedges?: boolean;
|
|
21142
|
+
/** Maximum depth to traverse. */
|
|
21143
|
+
max_depth?: number;
|
|
21144
|
+
/** Root term ID to start from (UUID). */
|
|
21145
|
+
root_term_id: string;
|
|
21146
|
+
/** S-threshold for s-connected components (0.0 = no filtering). */
|
|
21147
|
+
s_threshold?: number;
|
|
21148
|
+
}
|
|
21149
|
+
/**
|
|
21150
|
+
* An s-connected component in the hypergraph.
|
|
21151
|
+
*/
|
|
21152
|
+
interface ComponentDto {
|
|
21153
|
+
/** Component ID. */
|
|
21154
|
+
id: string;
|
|
21155
|
+
/** Node IDs in the component. */
|
|
21156
|
+
nodes: string[];
|
|
21157
|
+
/** S-value (connectivity threshold). */
|
|
21158
|
+
s_value: number;
|
|
21159
|
+
}
|
|
21160
|
+
/**
|
|
21161
|
+
* Degree distribution for the hypergraph.
|
|
21162
|
+
*/
|
|
21163
|
+
interface DegreeDistributionDto {
|
|
21164
|
+
/** Average node degree. */
|
|
21165
|
+
avg_node_degree: number;
|
|
21166
|
+
/** Hyperedge size histogram (size -> count). */
|
|
21167
|
+
hyperedge_sizes: Record<number, number>;
|
|
21168
|
+
/** Maximum node degree. */
|
|
21169
|
+
max_node_degree: number;
|
|
21170
|
+
/** Node degree histogram (degree -> count). */
|
|
21171
|
+
node_degrees: Record<number, number>;
|
|
21172
|
+
}
|
|
21173
|
+
/**
|
|
21174
|
+
* Statistics about the hypergraph.
|
|
21175
|
+
*/
|
|
21176
|
+
interface HypergraphStats {
|
|
21177
|
+
/** Number of connected components. */
|
|
21178
|
+
component_count: number;
|
|
21179
|
+
/** Total number of coreferences. */
|
|
21180
|
+
total_coreferences: number;
|
|
21181
|
+
/** Total number of features. */
|
|
21182
|
+
total_features: number;
|
|
21183
|
+
/** Total number of terms. */
|
|
21184
|
+
total_terms: number;
|
|
21185
|
+
}
|
|
21186
|
+
/**
|
|
21187
|
+
* Response for hypergraph visualization.
|
|
21188
|
+
*/
|
|
21189
|
+
interface HypergraphResponse {
|
|
21190
|
+
/** S-connected components (if s_threshold > 0). */
|
|
21191
|
+
components?: ComponentDto[];
|
|
21192
|
+
/** Degree distribution. */
|
|
21193
|
+
degree_distribution: DegreeDistributionDto;
|
|
21194
|
+
/** The visualization graph. */
|
|
21195
|
+
graph: VisualizationGraphDto;
|
|
21196
|
+
/** Statistics. */
|
|
21197
|
+
stats: HypergraphStats;
|
|
21198
|
+
}
|
|
21199
|
+
/**
|
|
21200
|
+
* Request for lattice (sort hierarchy) visualization.
|
|
21201
|
+
*/
|
|
21202
|
+
interface LatticeVisualizationRequest {
|
|
21203
|
+
/** Whether to generate DOT output. */
|
|
21204
|
+
generate_dot?: boolean;
|
|
21205
|
+
/** Whether to include synthetic sorts (GLB/LUB created). */
|
|
21206
|
+
include_synthetic?: boolean;
|
|
21207
|
+
/** Layout algorithm preference. */
|
|
21208
|
+
layout_algorithm?: LayoutAlgorithmDto;
|
|
21209
|
+
/** Layout direction preference. */
|
|
21210
|
+
layout_direction?: LayoutDirectionDto;
|
|
21211
|
+
/** Maximum depth to traverse (default: unlimited). */
|
|
21212
|
+
max_depth?: number | null;
|
|
21213
|
+
/** Optional root sort ID to start from (UUID). */
|
|
21214
|
+
root_sort_id?: string | null;
|
|
21215
|
+
}
|
|
21216
|
+
/**
|
|
21217
|
+
* Statistics about the lattice.
|
|
21218
|
+
*/
|
|
21219
|
+
interface LatticeStats {
|
|
21220
|
+
/** Number of leaf sorts (no children). */
|
|
21221
|
+
leaf_sorts: number;
|
|
21222
|
+
/** Maximum depth of the hierarchy. */
|
|
21223
|
+
max_depth: number;
|
|
21224
|
+
/** Number of sorts with multiple parents (multiple inheritance). */
|
|
21225
|
+
multiple_inheritance_count: number;
|
|
21226
|
+
/** Number of root sorts (no parents). */
|
|
21227
|
+
root_sorts: number;
|
|
21228
|
+
/** Number of synthetic sorts. */
|
|
21229
|
+
synthetic_sorts: number;
|
|
21230
|
+
/** Total number of sorts. */
|
|
21231
|
+
total_sorts: number;
|
|
21232
|
+
}
|
|
21233
|
+
/**
|
|
21234
|
+
* Response for lattice visualization.
|
|
21235
|
+
*/
|
|
21236
|
+
interface LatticeVisualizationResponse {
|
|
21237
|
+
/** The visualization graph. */
|
|
21238
|
+
graph: VisualizationGraphDto;
|
|
21239
|
+
/** Statistics about the lattice. */
|
|
21240
|
+
stats: LatticeStats;
|
|
21241
|
+
}
|
|
21242
|
+
/**
|
|
21243
|
+
* Request for GLB/LUB computation trace.
|
|
21244
|
+
*/
|
|
21245
|
+
interface GlbLubTraceRequest {
|
|
21246
|
+
/** Whether to generate DOT output with trace highlighted. */
|
|
21247
|
+
generate_dot?: boolean;
|
|
21248
|
+
/** Operation type (GLB or LUB). */
|
|
21249
|
+
operation: GlbLubOperation;
|
|
21250
|
+
/** First sort ID (UUID). */
|
|
21251
|
+
sort1_id: string;
|
|
21252
|
+
/** Second sort ID (UUID). */
|
|
21253
|
+
sort2_id: string;
|
|
21254
|
+
}
|
|
21255
|
+
/**
|
|
21256
|
+
* A step in the GLB/LUB computation trace.
|
|
21257
|
+
*/
|
|
21258
|
+
interface GlbLubTraceStep {
|
|
21259
|
+
/** Whether this step created a synthetic sort. */
|
|
21260
|
+
created_synthetic: boolean;
|
|
21261
|
+
/** Description of the step. */
|
|
21262
|
+
description: string;
|
|
21263
|
+
/** Sort IDs involved in this step. */
|
|
21264
|
+
involved_sorts: string[];
|
|
21265
|
+
/** Step number. */
|
|
21266
|
+
step: number;
|
|
21267
|
+
}
|
|
21268
|
+
/**
|
|
21269
|
+
* Response for GLB/LUB computation trace.
|
|
21270
|
+
*/
|
|
21271
|
+
interface GlbLubComputationTrace {
|
|
21272
|
+
/** Whether the result was from cache. */
|
|
21273
|
+
cache_hit: boolean;
|
|
21274
|
+
/** Visualization graph with highlighted path. */
|
|
21275
|
+
graph?: VisualizationGraphDto | null;
|
|
21276
|
+
/** The requested operation. */
|
|
21277
|
+
operation: GlbLubOperation;
|
|
21278
|
+
/** Result sort (if found). */
|
|
21279
|
+
result?: SortSummaryDto | null;
|
|
21280
|
+
/** First input sort. */
|
|
21281
|
+
sort1: SortSummaryDto;
|
|
21282
|
+
/** Second input sort. */
|
|
21283
|
+
sort2: SortSummaryDto;
|
|
21284
|
+
/** Computation steps. */
|
|
21285
|
+
steps: GlbLubTraceStep[];
|
|
21286
|
+
/** Whether a synthetic sort was created. */
|
|
21287
|
+
synthetic_created: boolean;
|
|
21288
|
+
}
|
|
21289
|
+
/**
|
|
21290
|
+
* What a residuation is waiting for.
|
|
21291
|
+
*/
|
|
21292
|
+
interface WaitingConditionDto {
|
|
21293
|
+
/** Condition type. */
|
|
21294
|
+
condition_type: WaitingConditionType;
|
|
21295
|
+
/** Description. */
|
|
21296
|
+
description: string;
|
|
21297
|
+
/** Feature name (if waiting on feature). */
|
|
21298
|
+
feature_name?: string | null;
|
|
21299
|
+
/** Target term/variable ID (UUID). */
|
|
21300
|
+
target_id?: string | null;
|
|
21301
|
+
}
|
|
21302
|
+
/**
|
|
21303
|
+
* A residuated term in the visualization.
|
|
21304
|
+
*/
|
|
21305
|
+
interface ResiduatedTermDto {
|
|
21306
|
+
/** Creation timestamp (ms since epoch). */
|
|
21307
|
+
created_at: number;
|
|
21308
|
+
/** Optional description. */
|
|
21309
|
+
description?: string | null;
|
|
21310
|
+
/** Residuation ID. */
|
|
21311
|
+
id: string;
|
|
21312
|
+
/** Kind of residuation. */
|
|
21313
|
+
kind: ResiduationKind;
|
|
21314
|
+
/** Current state. */
|
|
21315
|
+
state: ResiduationStateDto;
|
|
21316
|
+
/** Term ID being waited on (UUID). */
|
|
21317
|
+
term_id: string;
|
|
21318
|
+
/** What this residuation is waiting for. */
|
|
21319
|
+
waiting_for: WaitingConditionDto[];
|
|
21320
|
+
}
|
|
21321
|
+
/**
|
|
21322
|
+
* Statistics about residuation state.
|
|
21323
|
+
*/
|
|
21324
|
+
interface ResiduationStats {
|
|
21325
|
+
/** Completed count. */
|
|
21326
|
+
completed: number;
|
|
21327
|
+
/** Failed count. */
|
|
21328
|
+
failed: number;
|
|
21329
|
+
/** Pending count. */
|
|
21330
|
+
pending: number;
|
|
21331
|
+
/** Ready count. */
|
|
21332
|
+
ready: number;
|
|
21333
|
+
/** Suspended count. */
|
|
21334
|
+
suspended: number;
|
|
21335
|
+
/** Total residuations. */
|
|
21336
|
+
total: number;
|
|
21337
|
+
}
|
|
21338
|
+
/**
|
|
21339
|
+
* Request for residuation state diagram.
|
|
21340
|
+
*/
|
|
21341
|
+
interface ResiduationStateRequest {
|
|
21342
|
+
/** Whether to generate DOT output. */
|
|
21343
|
+
generate_dot?: boolean;
|
|
21344
|
+
/** Whether to include trigger dependencies. */
|
|
21345
|
+
include_dependencies?: boolean;
|
|
21346
|
+
/** Kind of residuation to visualize. */
|
|
21347
|
+
kind?: ResiduationKind;
|
|
21348
|
+
/** State filter. */
|
|
21349
|
+
state?: ResiduationStateFilter;
|
|
21350
|
+
}
|
|
21351
|
+
/**
|
|
21352
|
+
* Response for residuation state diagram.
|
|
21353
|
+
*/
|
|
21354
|
+
interface ResiduationStateResponse {
|
|
21355
|
+
/** Dependency edges (for graph visualization). */
|
|
21356
|
+
dependency_edges: GraphEdgeDto[];
|
|
21357
|
+
/** Dependency nodes (for graph visualization). */
|
|
21358
|
+
dependency_nodes: GraphNodeDto[];
|
|
21359
|
+
/** The visualization graph. */
|
|
21360
|
+
graph?: VisualizationGraphDto | null;
|
|
21361
|
+
/** Residuated terms. */
|
|
21362
|
+
residuated_terms: ResiduatedTermDto[];
|
|
21363
|
+
/** Statistics. */
|
|
21364
|
+
stats: ResiduationStats;
|
|
21365
|
+
}
|
|
21366
|
+
/**
|
|
21367
|
+
* Request for trigger dependency graph.
|
|
21368
|
+
*/
|
|
21369
|
+
interface TriggerDependencyRequest {
|
|
21370
|
+
/** Whether to generate DOT output. */
|
|
21371
|
+
generate_dot?: boolean;
|
|
21372
|
+
/** Focus on specific residuation ID. */
|
|
21373
|
+
residuation_id?: string | null;
|
|
21374
|
+
}
|
|
21375
|
+
/**
|
|
21376
|
+
* Response for trigger dependency graph.
|
|
21377
|
+
*/
|
|
21378
|
+
interface TriggerDependencyResponse {
|
|
21379
|
+
/** Critical paths (longest dependency chains). */
|
|
21380
|
+
critical_paths: string[][];
|
|
21381
|
+
/** The visualization graph. */
|
|
21382
|
+
graph: VisualizationGraphDto;
|
|
21383
|
+
}
|
|
21384
|
+
|
|
20926
21385
|
/**
|
|
20927
21386
|
* Relational operators for arithmetic constraints.
|
|
20928
21387
|
*/
|
|
@@ -21053,15 +21512,10 @@ interface FdDomainStateDto {
|
|
|
21053
21512
|
}
|
|
21054
21513
|
/**
|
|
21055
21514
|
* Response for constraint graph visualization.
|
|
21056
|
-
*
|
|
21057
|
-
* @remarks
|
|
21058
|
-
* The `graph` field contains the full visualization graph data structure.
|
|
21059
|
-
* The detailed graph types (nodes, edges, metadata) are left as `unknown`
|
|
21060
|
-
* since they are complex visualization structures rarely consumed directly.
|
|
21061
21515
|
*/
|
|
21062
21516
|
interface ConstraintGraphResponse {
|
|
21063
21517
|
/** The visualization graph. */
|
|
21064
|
-
graph:
|
|
21518
|
+
graph: VisualizationGraphDto;
|
|
21065
21519
|
/** Statistics. */
|
|
21066
21520
|
stats: ConstraintGraphStats;
|
|
21067
21521
|
/** Detected cycles (if requested). */
|
|
@@ -21069,13 +21523,32 @@ interface ConstraintGraphResponse {
|
|
|
21069
21523
|
/** FD domain states (if requested). */
|
|
21070
21524
|
fd_domains?: FdDomainStateDto[];
|
|
21071
21525
|
}
|
|
21072
|
-
/**
|
|
21073
|
-
|
|
21074
|
-
|
|
21526
|
+
/**
|
|
21527
|
+
* General constraint DTO (recursive tagged union).
|
|
21528
|
+
*
|
|
21529
|
+
* @remarks
|
|
21530
|
+
* Discriminated by the `type` field. Matches Rust
|
|
21531
|
+
* `#[serde(tag = "type", rename_all = "snake_case")]`.
|
|
21532
|
+
*
|
|
21533
|
+
* The `arithmetic` variant flattens `ArithmeticConstraintDto` which adds
|
|
21534
|
+
* its own `constraint_type` discriminator (`"relation"` or `"domain"`).
|
|
21535
|
+
*
|
|
21536
|
+
* OpenAPI generates this as opaque `object` due to recursion —
|
|
21537
|
+
* the proper tagged union is defined here.
|
|
21538
|
+
*/
|
|
21539
|
+
type GeneralConstraintDto = ({
|
|
21540
|
+
type: 'arithmetic';
|
|
21541
|
+
} & ArithmeticConstraintDto) | {
|
|
21542
|
+
type: 'basic';
|
|
21075
21543
|
constraint_type: string;
|
|
21076
|
-
|
|
21077
|
-
|
|
21078
|
-
|
|
21544
|
+
value?: unknown | null;
|
|
21545
|
+
} | {
|
|
21546
|
+
type: 'conjunction';
|
|
21547
|
+
constraints: GeneralConstraintDto[];
|
|
21548
|
+
} | {
|
|
21549
|
+
type: 'disjunction';
|
|
21550
|
+
constraints: GeneralConstraintDto[];
|
|
21551
|
+
};
|
|
21079
21552
|
/**
|
|
21080
21553
|
* Request to create a constraint session.
|
|
21081
21554
|
*
|
|
@@ -22712,449 +23185,6 @@ interface PushGoalResponse {
|
|
|
22712
23185
|
stack_size: number;
|
|
22713
23186
|
}
|
|
22714
23187
|
|
|
22715
|
-
/**
|
|
22716
|
-
* Layout algorithm hint for graph rendering.
|
|
22717
|
-
*
|
|
22718
|
-
* @remarks
|
|
22719
|
-
* Can be a predefined algorithm or a custom algorithm name.
|
|
22720
|
-
*/
|
|
22721
|
-
type LayoutAlgorithmDto = 'force_directed' | 'sugiyama' | 'circular' | 'grid' | 'radial' | {
|
|
22722
|
-
custom: string;
|
|
22723
|
-
};
|
|
22724
|
-
/**
|
|
22725
|
-
* Layout direction hint for hierarchical graph layouts.
|
|
22726
|
-
*/
|
|
22727
|
-
type LayoutDirectionDto = 'top_bottom' | 'bottom_top' | 'left_right' | 'right_left';
|
|
22728
|
-
/**
|
|
22729
|
-
* GLB/LUB operation type.
|
|
22730
|
-
*/
|
|
22731
|
-
type GlbLubOperation = 'glb' | 'lub';
|
|
22732
|
-
/**
|
|
22733
|
-
* Kind of residuation to visualize.
|
|
22734
|
-
*/
|
|
22735
|
-
type ResiduationKind = 'inference' | 'fuzzy' | 'extraction' | 'all';
|
|
22736
|
-
/**
|
|
22737
|
-
* State filter for residuation visualization.
|
|
22738
|
-
*/
|
|
22739
|
-
type ResiduationStateFilter = 'pending' | 'suspended' | 'ready' | 'completed' | 'all';
|
|
22740
|
-
/**
|
|
22741
|
-
* Node type in the visualization graph.
|
|
22742
|
-
*
|
|
22743
|
-
* @remarks
|
|
22744
|
-
* Can be a predefined node type or a custom type name.
|
|
22745
|
-
*/
|
|
22746
|
-
type NodeTypeDto = 'sort' | 'synthetic_sort' | 'root_sort' | 'bottom_sort' | 'constraint' | 'fd_variable' | 'term' | 'feature' | 'reference' | 'residuated_term' | 'trigger' | 'relation' | {
|
|
22747
|
-
custom: string;
|
|
22748
|
-
};
|
|
22749
|
-
/**
|
|
22750
|
-
* Edge type in the visualization graph.
|
|
22751
|
-
*
|
|
22752
|
-
* @remarks
|
|
22753
|
-
* Can be a predefined edge type or a custom type name.
|
|
22754
|
-
*/
|
|
22755
|
-
type EdgeTypeDto = 'subtype' | 'multiple_inheritance' | 'glb_path' | 'lub_path' | 'constraint_dependency' | 'propagation' | 'feature' | 'coreference' | 'trigger_dependency' | 'relation_source' | 'relation_target' | {
|
|
22756
|
-
custom: string;
|
|
22757
|
-
};
|
|
22758
|
-
/**
|
|
22759
|
-
* Hyperedge type in the visualization graph.
|
|
22760
|
-
*
|
|
22761
|
-
* @remarks
|
|
22762
|
-
* Can be a predefined hyperedge type or a custom type name.
|
|
22763
|
-
*/
|
|
22764
|
-
type HyperedgeTypeDto = 'term_features' | 'constraint_variables' | 'unification_result' | {
|
|
22765
|
-
custom: string;
|
|
22766
|
-
};
|
|
22767
|
-
/**
|
|
22768
|
-
* Type of waiting condition for a residuation.
|
|
22769
|
-
*/
|
|
22770
|
-
type WaitingConditionType = 'feature_binding' | 'sort_narrowing' | 'term_creation' | 'external_input' | 'constraint_satisfaction';
|
|
22771
|
-
/**
|
|
22772
|
-
* State of a residuation.
|
|
22773
|
-
*/
|
|
22774
|
-
type ResiduationStateDto = 'pending' | 'suspended' | 'ready' | 'completed' | 'failed';
|
|
22775
|
-
/**
|
|
22776
|
-
* A node in the visualization graph.
|
|
22777
|
-
*/
|
|
22778
|
-
interface GraphNodeDto {
|
|
22779
|
-
/** Color of the node (hex string). */
|
|
22780
|
-
color?: string | null;
|
|
22781
|
-
/** Optional entity ID this node represents (UUID). */
|
|
22782
|
-
entity_id?: string | null;
|
|
22783
|
-
/** Unique identifier for this node. */
|
|
22784
|
-
id: string;
|
|
22785
|
-
/** Display label for the node. */
|
|
22786
|
-
label: string;
|
|
22787
|
-
/** Level in hierarchy (for lattice visualization). */
|
|
22788
|
-
level?: number | null;
|
|
22789
|
-
/** Type of node. */
|
|
22790
|
-
node_type: NodeTypeDto;
|
|
22791
|
-
/** Additional properties. */
|
|
22792
|
-
properties?: Record<string, string>;
|
|
22793
|
-
/** Size of the node (for rendering). */
|
|
22794
|
-
size?: number | null;
|
|
22795
|
-
}
|
|
22796
|
-
/**
|
|
22797
|
-
* An edge connecting two nodes in the visualization graph.
|
|
22798
|
-
*/
|
|
22799
|
-
interface GraphEdgeDto {
|
|
22800
|
-
/** Color of the edge (hex string). */
|
|
22801
|
-
color?: string | null;
|
|
22802
|
-
/** Curvature for curved edges (0.0 = straight, 1.0 = max curve). */
|
|
22803
|
-
curvature?: number | null;
|
|
22804
|
-
/** Type of edge. */
|
|
22805
|
-
edge_type: EdgeTypeDto;
|
|
22806
|
-
/** Unique identifier for this edge. */
|
|
22807
|
-
id: string;
|
|
22808
|
-
/** Optional edge label. */
|
|
22809
|
-
label?: string | null;
|
|
22810
|
-
/** Additional properties. */
|
|
22811
|
-
properties?: Record<string, string>;
|
|
22812
|
-
/** Source node ID. */
|
|
22813
|
-
source: string;
|
|
22814
|
-
/** Target node ID. */
|
|
22815
|
-
target: string;
|
|
22816
|
-
/** Weight of the edge (for weighted graphs). */
|
|
22817
|
-
weight?: number | null;
|
|
22818
|
-
}
|
|
22819
|
-
/**
|
|
22820
|
-
* A hyperedge connecting multiple nodes in the visualization graph.
|
|
22821
|
-
*/
|
|
22822
|
-
interface HyperedgeDto {
|
|
22823
|
-
/** Color of the hyperedge (hex string). */
|
|
22824
|
-
color?: string | null;
|
|
22825
|
-
/** Type of hyperedge. */
|
|
22826
|
-
hyperedge_type: HyperedgeTypeDto;
|
|
22827
|
-
/** Unique identifier for this hyperedge. */
|
|
22828
|
-
id: string;
|
|
22829
|
-
/** Display label for the hyperedge. */
|
|
22830
|
-
label?: string | null;
|
|
22831
|
-
/** IDs of all nodes connected by this hyperedge. */
|
|
22832
|
-
nodes: string[];
|
|
22833
|
-
/** Whether the nodes are ordered. */
|
|
22834
|
-
ordered: boolean;
|
|
22835
|
-
/** Additional properties. */
|
|
22836
|
-
properties?: Record<string, string>;
|
|
22837
|
-
/** Optional source term ID (UUID). */
|
|
22838
|
-
source_term_id?: string | null;
|
|
22839
|
-
}
|
|
22840
|
-
/**
|
|
22841
|
-
* Metadata about a visualization graph.
|
|
22842
|
-
*/
|
|
22843
|
-
interface GraphMetadataDto {
|
|
22844
|
-
/** Description of what this graph represents. */
|
|
22845
|
-
description?: string | null;
|
|
22846
|
-
/** Total number of edges. */
|
|
22847
|
-
edge_count: number;
|
|
22848
|
-
/** Additional metadata. */
|
|
22849
|
-
extra?: Record<string, string>;
|
|
22850
|
-
/** Total number of hyperedges. */
|
|
22851
|
-
hyperedge_count: number;
|
|
22852
|
-
/** Whether the graph is directed. */
|
|
22853
|
-
is_directed: boolean;
|
|
22854
|
-
/** Total number of nodes. */
|
|
22855
|
-
node_count: number;
|
|
22856
|
-
/** Title of the graph. */
|
|
22857
|
-
title?: string | null;
|
|
22858
|
-
}
|
|
22859
|
-
/**
|
|
22860
|
-
* Layout hints for rendering a visualization graph.
|
|
22861
|
-
*/
|
|
22862
|
-
interface LayoutHintsDto {
|
|
22863
|
-
/** Preferred layout algorithm. */
|
|
22864
|
-
algorithm: LayoutAlgorithmDto;
|
|
22865
|
-
/** Cluster definitions. */
|
|
22866
|
-
clusters?: Record<string, string[]>;
|
|
22867
|
-
/** Direction for hierarchical layouts. */
|
|
22868
|
-
direction?: LayoutDirectionDto | null;
|
|
22869
|
-
/** Level spacing for hierarchical layouts (pixels). */
|
|
22870
|
-
level_spacing?: number | null;
|
|
22871
|
-
/** Node spacing (pixels). */
|
|
22872
|
-
node_spacing?: number | null;
|
|
22873
|
-
}
|
|
22874
|
-
/**
|
|
22875
|
-
* Unified graph response for all visualization types.
|
|
22876
|
-
*
|
|
22877
|
-
* @remarks
|
|
22878
|
-
* Contains nodes, edges, optional hyperedges, layout hints, and metadata.
|
|
22879
|
-
*/
|
|
22880
|
-
interface VisualizationGraphDto {
|
|
22881
|
-
/** DOT format output (if requested). */
|
|
22882
|
-
dot_output?: string | null;
|
|
22883
|
-
/** All edges in the graph. */
|
|
22884
|
-
edges: GraphEdgeDto[];
|
|
22885
|
-
/** Unique identifier for this graph (UUID). */
|
|
22886
|
-
graph_id: string;
|
|
22887
|
-
/** All hyperedges in the graph. */
|
|
22888
|
-
hyperedges?: HyperedgeDto[];
|
|
22889
|
-
/** Layout hints for rendering. */
|
|
22890
|
-
layout?: LayoutHintsDto | null;
|
|
22891
|
-
/** Metadata about the graph. */
|
|
22892
|
-
metadata: GraphMetadataDto;
|
|
22893
|
-
/** All nodes in the graph. */
|
|
22894
|
-
nodes: GraphNodeDto[];
|
|
22895
|
-
}
|
|
22896
|
-
/**
|
|
22897
|
-
* Summary of a sort for trace responses.
|
|
22898
|
-
*/
|
|
22899
|
-
interface SortSummaryDto {
|
|
22900
|
-
/** Sort ID (UUID). */
|
|
22901
|
-
id: string;
|
|
22902
|
-
/** Whether this is a synthetic sort. */
|
|
22903
|
-
is_synthetic: boolean;
|
|
22904
|
-
/** Sort name. */
|
|
22905
|
-
name: string;
|
|
22906
|
-
}
|
|
22907
|
-
/**
|
|
22908
|
-
* Request for OSF term hypergraph visualization.
|
|
22909
|
-
*/
|
|
22910
|
-
interface HypergraphRequest {
|
|
22911
|
-
/** Whether to generate DOT output. */
|
|
22912
|
-
generate_dot?: boolean;
|
|
22913
|
-
/** Whether to include hyperedges. */
|
|
22914
|
-
include_hyperedges?: boolean;
|
|
22915
|
-
/** Maximum depth to traverse. */
|
|
22916
|
-
max_depth?: number;
|
|
22917
|
-
/** Root term ID to start from (UUID). */
|
|
22918
|
-
root_term_id: string;
|
|
22919
|
-
/** S-threshold for s-connected components (0.0 = no filtering). */
|
|
22920
|
-
s_threshold?: number;
|
|
22921
|
-
}
|
|
22922
|
-
/**
|
|
22923
|
-
* An s-connected component in the hypergraph.
|
|
22924
|
-
*/
|
|
22925
|
-
interface ComponentDto {
|
|
22926
|
-
/** Component ID. */
|
|
22927
|
-
id: string;
|
|
22928
|
-
/** Node IDs in the component. */
|
|
22929
|
-
nodes: string[];
|
|
22930
|
-
/** S-value (connectivity threshold). */
|
|
22931
|
-
s_value: number;
|
|
22932
|
-
}
|
|
22933
|
-
/**
|
|
22934
|
-
* Degree distribution for the hypergraph.
|
|
22935
|
-
*/
|
|
22936
|
-
interface DegreeDistributionDto {
|
|
22937
|
-
/** Average node degree. */
|
|
22938
|
-
avg_node_degree: number;
|
|
22939
|
-
/** Hyperedge size histogram (size -> count). */
|
|
22940
|
-
hyperedge_sizes: Record<number, number>;
|
|
22941
|
-
/** Maximum node degree. */
|
|
22942
|
-
max_node_degree: number;
|
|
22943
|
-
/** Node degree histogram (degree -> count). */
|
|
22944
|
-
node_degrees: Record<number, number>;
|
|
22945
|
-
}
|
|
22946
|
-
/**
|
|
22947
|
-
* Statistics about the hypergraph.
|
|
22948
|
-
*/
|
|
22949
|
-
interface HypergraphStats {
|
|
22950
|
-
/** Number of connected components. */
|
|
22951
|
-
component_count: number;
|
|
22952
|
-
/** Total number of coreferences. */
|
|
22953
|
-
total_coreferences: number;
|
|
22954
|
-
/** Total number of features. */
|
|
22955
|
-
total_features: number;
|
|
22956
|
-
/** Total number of terms. */
|
|
22957
|
-
total_terms: number;
|
|
22958
|
-
}
|
|
22959
|
-
/**
|
|
22960
|
-
* Response for hypergraph visualization.
|
|
22961
|
-
*/
|
|
22962
|
-
interface HypergraphResponse {
|
|
22963
|
-
/** S-connected components (if s_threshold > 0). */
|
|
22964
|
-
components?: ComponentDto[];
|
|
22965
|
-
/** Degree distribution. */
|
|
22966
|
-
degree_distribution: DegreeDistributionDto;
|
|
22967
|
-
/** The visualization graph. */
|
|
22968
|
-
graph: VisualizationGraphDto;
|
|
22969
|
-
/** Statistics. */
|
|
22970
|
-
stats: HypergraphStats;
|
|
22971
|
-
}
|
|
22972
|
-
/**
|
|
22973
|
-
* Request for lattice (sort hierarchy) visualization.
|
|
22974
|
-
*/
|
|
22975
|
-
interface LatticeVisualizationRequest {
|
|
22976
|
-
/** Whether to generate DOT output. */
|
|
22977
|
-
generate_dot?: boolean;
|
|
22978
|
-
/** Whether to include synthetic sorts (GLB/LUB created). */
|
|
22979
|
-
include_synthetic?: boolean;
|
|
22980
|
-
/** Layout algorithm preference. */
|
|
22981
|
-
layout_algorithm?: LayoutAlgorithmDto;
|
|
22982
|
-
/** Layout direction preference. */
|
|
22983
|
-
layout_direction?: LayoutDirectionDto;
|
|
22984
|
-
/** Maximum depth to traverse (default: unlimited). */
|
|
22985
|
-
max_depth?: number | null;
|
|
22986
|
-
/** Optional root sort ID to start from (UUID). */
|
|
22987
|
-
root_sort_id?: string | null;
|
|
22988
|
-
}
|
|
22989
|
-
/**
|
|
22990
|
-
* Statistics about the lattice.
|
|
22991
|
-
*/
|
|
22992
|
-
interface LatticeStats {
|
|
22993
|
-
/** Number of leaf sorts (no children). */
|
|
22994
|
-
leaf_sorts: number;
|
|
22995
|
-
/** Maximum depth of the hierarchy. */
|
|
22996
|
-
max_depth: number;
|
|
22997
|
-
/** Number of sorts with multiple parents (multiple inheritance). */
|
|
22998
|
-
multiple_inheritance_count: number;
|
|
22999
|
-
/** Number of root sorts (no parents). */
|
|
23000
|
-
root_sorts: number;
|
|
23001
|
-
/** Number of synthetic sorts. */
|
|
23002
|
-
synthetic_sorts: number;
|
|
23003
|
-
/** Total number of sorts. */
|
|
23004
|
-
total_sorts: number;
|
|
23005
|
-
}
|
|
23006
|
-
/**
|
|
23007
|
-
* Response for lattice visualization.
|
|
23008
|
-
*/
|
|
23009
|
-
interface LatticeVisualizationResponse {
|
|
23010
|
-
/** The visualization graph. */
|
|
23011
|
-
graph: VisualizationGraphDto;
|
|
23012
|
-
/** Statistics about the lattice. */
|
|
23013
|
-
stats: LatticeStats;
|
|
23014
|
-
}
|
|
23015
|
-
/**
|
|
23016
|
-
* Request for GLB/LUB computation trace.
|
|
23017
|
-
*/
|
|
23018
|
-
interface GlbLubTraceRequest {
|
|
23019
|
-
/** Whether to generate DOT output with trace highlighted. */
|
|
23020
|
-
generate_dot?: boolean;
|
|
23021
|
-
/** Operation type (GLB or LUB). */
|
|
23022
|
-
operation: GlbLubOperation;
|
|
23023
|
-
/** First sort ID (UUID). */
|
|
23024
|
-
sort1_id: string;
|
|
23025
|
-
/** Second sort ID (UUID). */
|
|
23026
|
-
sort2_id: string;
|
|
23027
|
-
}
|
|
23028
|
-
/**
|
|
23029
|
-
* A step in the GLB/LUB computation trace.
|
|
23030
|
-
*/
|
|
23031
|
-
interface GlbLubTraceStep {
|
|
23032
|
-
/** Whether this step created a synthetic sort. */
|
|
23033
|
-
created_synthetic: boolean;
|
|
23034
|
-
/** Description of the step. */
|
|
23035
|
-
description: string;
|
|
23036
|
-
/** Sort IDs involved in this step. */
|
|
23037
|
-
involved_sorts: string[];
|
|
23038
|
-
/** Step number. */
|
|
23039
|
-
step: number;
|
|
23040
|
-
}
|
|
23041
|
-
/**
|
|
23042
|
-
* Response for GLB/LUB computation trace.
|
|
23043
|
-
*/
|
|
23044
|
-
interface GlbLubComputationTrace {
|
|
23045
|
-
/** Whether the result was from cache. */
|
|
23046
|
-
cache_hit: boolean;
|
|
23047
|
-
/** Visualization graph with highlighted path. */
|
|
23048
|
-
graph?: VisualizationGraphDto | null;
|
|
23049
|
-
/** The requested operation. */
|
|
23050
|
-
operation: GlbLubOperation;
|
|
23051
|
-
/** Result sort (if found). */
|
|
23052
|
-
result?: SortSummaryDto | null;
|
|
23053
|
-
/** First input sort. */
|
|
23054
|
-
sort1: SortSummaryDto;
|
|
23055
|
-
/** Second input sort. */
|
|
23056
|
-
sort2: SortSummaryDto;
|
|
23057
|
-
/** Computation steps. */
|
|
23058
|
-
steps: GlbLubTraceStep[];
|
|
23059
|
-
/** Whether a synthetic sort was created. */
|
|
23060
|
-
synthetic_created: boolean;
|
|
23061
|
-
}
|
|
23062
|
-
/**
|
|
23063
|
-
* What a residuation is waiting for.
|
|
23064
|
-
*/
|
|
23065
|
-
interface WaitingConditionDto {
|
|
23066
|
-
/** Condition type. */
|
|
23067
|
-
condition_type: WaitingConditionType;
|
|
23068
|
-
/** Description. */
|
|
23069
|
-
description: string;
|
|
23070
|
-
/** Feature name (if waiting on feature). */
|
|
23071
|
-
feature_name?: string | null;
|
|
23072
|
-
/** Target term/variable ID (UUID). */
|
|
23073
|
-
target_id?: string | null;
|
|
23074
|
-
}
|
|
23075
|
-
/**
|
|
23076
|
-
* A residuated term in the visualization.
|
|
23077
|
-
*/
|
|
23078
|
-
interface ResiduatedTermDto {
|
|
23079
|
-
/** Creation timestamp (ms since epoch). */
|
|
23080
|
-
created_at: number;
|
|
23081
|
-
/** Optional description. */
|
|
23082
|
-
description?: string | null;
|
|
23083
|
-
/** Residuation ID. */
|
|
23084
|
-
id: string;
|
|
23085
|
-
/** Kind of residuation. */
|
|
23086
|
-
kind: ResiduationKind;
|
|
23087
|
-
/** Current state. */
|
|
23088
|
-
state: ResiduationStateDto;
|
|
23089
|
-
/** Term ID being waited on (UUID). */
|
|
23090
|
-
term_id: string;
|
|
23091
|
-
/** What this residuation is waiting for. */
|
|
23092
|
-
waiting_for: WaitingConditionDto[];
|
|
23093
|
-
}
|
|
23094
|
-
/**
|
|
23095
|
-
* Statistics about residuation state.
|
|
23096
|
-
*/
|
|
23097
|
-
interface ResiduationStats {
|
|
23098
|
-
/** Completed count. */
|
|
23099
|
-
completed: number;
|
|
23100
|
-
/** Failed count. */
|
|
23101
|
-
failed: number;
|
|
23102
|
-
/** Pending count. */
|
|
23103
|
-
pending: number;
|
|
23104
|
-
/** Ready count. */
|
|
23105
|
-
ready: number;
|
|
23106
|
-
/** Suspended count. */
|
|
23107
|
-
suspended: number;
|
|
23108
|
-
/** Total residuations. */
|
|
23109
|
-
total: number;
|
|
23110
|
-
}
|
|
23111
|
-
/**
|
|
23112
|
-
* Request for residuation state diagram.
|
|
23113
|
-
*/
|
|
23114
|
-
interface ResiduationStateRequest {
|
|
23115
|
-
/** Whether to generate DOT output. */
|
|
23116
|
-
generate_dot?: boolean;
|
|
23117
|
-
/** Whether to include trigger dependencies. */
|
|
23118
|
-
include_dependencies?: boolean;
|
|
23119
|
-
/** Kind of residuation to visualize. */
|
|
23120
|
-
kind?: ResiduationKind;
|
|
23121
|
-
/** State filter. */
|
|
23122
|
-
state?: ResiduationStateFilter;
|
|
23123
|
-
}
|
|
23124
|
-
/**
|
|
23125
|
-
* Response for residuation state diagram.
|
|
23126
|
-
*/
|
|
23127
|
-
interface ResiduationStateResponse {
|
|
23128
|
-
/** Dependency edges (for graph visualization). */
|
|
23129
|
-
dependency_edges: GraphEdgeDto[];
|
|
23130
|
-
/** Dependency nodes (for graph visualization). */
|
|
23131
|
-
dependency_nodes: GraphNodeDto[];
|
|
23132
|
-
/** The visualization graph. */
|
|
23133
|
-
graph?: VisualizationGraphDto | null;
|
|
23134
|
-
/** Residuated terms. */
|
|
23135
|
-
residuated_terms: ResiduatedTermDto[];
|
|
23136
|
-
/** Statistics. */
|
|
23137
|
-
stats: ResiduationStats;
|
|
23138
|
-
}
|
|
23139
|
-
/**
|
|
23140
|
-
* Request for trigger dependency graph.
|
|
23141
|
-
*/
|
|
23142
|
-
interface TriggerDependencyRequest {
|
|
23143
|
-
/** Whether to generate DOT output. */
|
|
23144
|
-
generate_dot?: boolean;
|
|
23145
|
-
/** Focus on specific residuation ID. */
|
|
23146
|
-
residuation_id?: string | null;
|
|
23147
|
-
}
|
|
23148
|
-
/**
|
|
23149
|
-
* Response for trigger dependency graph.
|
|
23150
|
-
*/
|
|
23151
|
-
interface TriggerDependencyResponse {
|
|
23152
|
-
/** Critical paths (longest dependency chains). */
|
|
23153
|
-
critical_paths: string[][];
|
|
23154
|
-
/** The visualization graph. */
|
|
23155
|
-
graph: VisualizationGraphDto;
|
|
23156
|
-
}
|
|
23157
|
-
|
|
23158
23188
|
/**
|
|
23159
23189
|
* Resource client for execution session operations.
|
|
23160
23190
|
*
|
|
@@ -36416,4 +36446,4 @@ declare function isUuid(s: string): boolean;
|
|
|
36416
36446
|
*/
|
|
36417
36447
|
declare function discriminateFeatureValue(value: unknown): FeatureValueDto;
|
|
36418
36448
|
|
|
36419
|
-
export { type ActionReviewReasonDto, type ActionReviewResponse, type ActionReviewStatusDto, type ActionReviewSummaryDto, type ActivationDto, type AdaptiveModifyRequest, type AdaptiveModifyResponse, type AddBeliefRequest, type AddBeliefResponse, type AddCausalRelationRequest, type AddCausalRelationResponse, type AddCognitiveRuleRequest, type AddCognitiveRuleResponse, type AddConstraintsRequest, type AddConstraintsResponse, type AddExportRequest, type AddFactRequest, type AddFactResponse, type AddGoalRequest, type AddGoalResponse, type AddHtnMethodRequest, type AddHtnMethodResponse, type AddImportRequest, type AddPendingReviewRequest, type AddRuleRequest, type AddRuleResponse, type AddSymbolRequest, type AddSymbolResponse, type AgentBeliefDto, type AgentConfigDto, type AgentEvent, type AgentEventHandlers, type AgentGoalDto, type AgentStateDto, type AgentSubVerdictDto, type AgentSubscription, type AllenRelation, ApiError, type ApiResponse, type AppendResiduationsRequest, type AppendResiduationsResponse, type ApplyCurriedRequest, type ApplyCurriedResponse, type ApproveActionRequest, type ApproveEntityRequest, type ApproveLearnedSimilarityRequest, type ApproveLearnedSimilarityResponse, type ArchitectureInfoDto, type ArithOpDto, type ArithValueDto, type ArithmeticConstraintDto, type ArithmeticExprDto, type ArithmeticRecursionOp, type ArtifactDto, type AscRequest, type AssertRuleRequest, type AssertRuleResponse, type AssignValueDto, type AttentionTargetDto, type AttestationDto, type AugmentationTargetDto, type BacktrackResponse, type BacktrackTermStoreRequest, type BacktrackTermStoreResponse, type BacktrackableAssignRequest, type BacktrackableAssignResponse, type BackwardChainRequest, type BackwardChainResponse, BadRequestError, type BatchCopyRequest, type BatchStringCompareRequest, type BayesianEffectDto, type BayesianPredictRequest, type BayesianPredictResponse, type BeliefDto, type BinaryOperatorDto, type BindTermRequest, type BindTermResponse, type BindVariableRequest, type BindVariableResponse, type BindVariablesRequest, type BindVariablesResponse, type BindingDto, type BindingsResponse, type BitwiseOperationType, type BitwiseRequest, type BooleanValue, type BoundConstraintDto, type BroadcastMessageRequest, type BroadcastMessageResponse, type BuildInfoDto, type BulkActionReviewResponse, type BulkAddFactsRequest, type BulkAddFactsResponse, type BulkAddRulesRequest, type BulkAddRulesResponse, type BulkAddTermsRequest, type BulkAddTermsResponse, type BulkApproveActionsRequest, type BulkApproveRequest, type BulkCreateSortsRequest, type BulkCreateSortsResponse, type BulkFuzzyProveRequest, type BulkFuzzyProveResponse, type BulkMergeRequest, type BulkRejectActionsRequest, type BulkRejectRequest, type BulkSetSimilaritiesRequest, type BulkSetSimilaritiesResponse, type BulkSortDefinition, type BulkSortError, type BySortQueryRequest, type CalibrateRequest, type CalibrationReportDto, type CallOnceRequest, type CallOnceResponse, type CandidateMatchDto, type CausalAncestorRequest, type CausalAncestorResponse, type CausalChainDto, type CausalEdgeDto, type CausalProofTreeDto, type CausalRelationshipDto$1 as CausalRelationshipDto, type CausesRequest, type CausesResponse, type CdlComponentStatus, type CdlStatusResponse, type CdlVerificationDto, type CertificateDto, type CheckDiversityRequest, type CheckDiversityResponse, type ChoicePointDto, type ChoicePointMarkerResponse, type ChoiceSelection, type ChrRequest, type ChunkFailureDto, type ClarificationQuestionDto, type ClassifySafetyRequest, type ClassifySafetyResponse, type CleanupResponse, type CleanupSessionsResponse, type CleanupStaleSessionsParams, type ClearFactsResponse, type ClearTermsResponse, type ClientConfig, type CognitiveGoalDto, type CognitiveTermInput, type CollectionDto, type CommitRequest, type CommunityDetectionConfigDto, type CommunityDetectionStatsDto, type CommunityDto, type CommunityMatchDto, type CommunityReportDto, type CommunityReportSummaryDto, type CommunitySearchModeDto, type CommunitySearchStatsDto, type CommunityStatsDto, type ComponentDto, type ComponentHealthDto, type ComputeGlbResponse, type ComputeLubResponse, type ConceptMatchDto, type CondRequest, type CondResponse, type ConditionalIndependenceRequest, type ConditionalIndependenceResponse, type ConfirmResponse, type ConflictResolution, type ConstraintCheckDto, type ConstraintDto, type ConstraintGraphRequest, type ConstraintGraphResponse, type ConstraintGraphStats, type ConstraintInputDto, type ConstraintOperator, type ConstraintSessionStatus, ConstraintViolationError, type ContainmentVerificationDto, type ControlNafRequest, type CoordinatedResourceSet, type CopyModeDto, type CopyTermRequest, type CorrectEntityRequest, type CorrelationRequest, type CorrelationResponse, type CounterfactualRequest, type CounterfactualResponse, type CounterfactualTraceDto, type CreateAgentRequest, type CreateAgentResponse, type CreateChildNamespaceRequest, type CreateCognitiveSortRequest, type CreateCognitiveSortResponse, type CreateCollectionRequest, type CreateConstraintSessionRequest, type CreateConstraintSessionResponse, type CreateCurriedFunctionRequest, type CreateExecutionSessionRequest, type CreateGoalRequest, type CreateGoalResponse, type CreateModuleRequest, type CreateModuleResponse, type CreateRootNamespaceRequest, type CreateRuleStoreRequest, type CreateScenarioRequest, type CreateScenarioResponse, type CreateSortRequest, type CreateSpaceRequest, type CreateStoreTermRequest, type CreateTermRequest, type CreateTermStoreRequest, type CreateVariableRequest, type CuriosityTargetDto, type CurriedFunctionResponse, type CurryingContextResponse, type CutRequest, type CutResponse, type CycleDto, type CycleOutcomeDto, type CycleOutcomeSummaryDto, type CyclicGaussianShape, type DSeparatedRequest, type DSeparatedResponse, type DataMixingStatsDto, type DataPointDto, type DatasetStatisticsDto, type DecodeGlbResponse, type DeepCopyRequest, type DegreeDistributionDto, type DeleteGoalResponse, type DeletePlanRequest, type DeletePlanResponse, type DependentInfoDto, type DereferenceRequest, type DereferenceResponse, type DerivedInferenceRequest, type DerivedInferenceResponse, type DerivedInferenceResultDto, type DetectCommunitiesRequest, type DetectCommunitiesResponse, type DetectMissingAttributesRequest, type DiagnosticDto, type DiagnosticsResponse, type DifferentiableFcRequest, type DifferentiableFcResponse, type DiscoverCausalRequest, type DiscoverCausalResponse, type DiscoverEffectsRequest, type DiscoverEffectsResponse, type DiscoverSchemaRequest, type DiscoverSchemaResponse, type DiscoveredFeatureDto, type DiscoveredRelationDto, type DiscoveredSortDto, type DiscoveredSourceRelationDto, type DiscoveryConfigDto, type DiscoveryProofNodeDto, type DiscoveryProofStatsDto, type DiscoveryProofTreeDto, type DiscoveryStateDto, type DiscoveryStatusResponse, type DiscoveryStrategy, type DisentailmentRequest, type DisentailmentResponse, type DiversityAnalysisDto, type DocumentBatchItem, type DocumentBatchResultDto, type DocumentMetadataDto, type DocumentParseStatsDto, type DocumentParser, type DocumentSource, type DocumentType, type DriveDeficitDto, type DriveDto, type DynamicAddSortRequest, type DynamicAddSortResponse, type DynamicDiscoveryRequest, type DynamicDiscoveryResponse, type DynamicQueryClauseDto, type DynamicQueryGroupDto, type DynamicQueryRequest, type DynamicQueryResponse, type DynamicQueryResultDto, type E2ETrainingRequest, type E2ETrainingResponse, type EdgeTypeDto, type EffectDto, type EffectPredictionDto, type EmbeddingVerificationResponse, type EnrichedHealthResponse, type EntailmentRequest, type EntailmentResponse, type EntityDto, type EntityVerificationDetailDto, type EpisodeDto, type EpisodeOutcomeDto, type EpisodeStatsResponse, type EquivalenceClassDto, type ErrorResponse, type EvalBuiltinRequest, type EvalBuiltinResponse, type EvalFunctionInfoDto, type EvaluateFunctionRequest, type EvaluateFunctionResponse, type EvaluatePatternRequest, type EvaluatePatternResponse, type EvaluatedValueDto, type EvaluationResult, type EvidenceAssessmentRequest, type EvidenceAssessmentResponse, type EvidenceItemDto, type EvidenceSourceDto, type ExecutionGoalDto, type ExecutionSessionResponse, type ExecutionSessionStatsResponse, type ExecutionValueDto, type ExplorationCompleteResponse, type ExplorationProgress, type ExplorationQuestion, type ExplorationStatusResponse, type ExportJsonlResponse, type ExpressionDto, type ExtendedAgentStateDto, type ExternalActionSummaryDto, type ExtractEntitiesRequest, type ExtractEntitiesResponse, type ExtractImageRequest, type ExtractImageResponse, type ExtractedEntityDto, type ExtractionPredictionDto, type ExtractionStatsDto, type FactConfidenceEntry, type FactoryResetResponse, type FailedReviewDto, type FdDomainStateDto, type FeatureBindingDto, type FeatureConfigDto, type FeatureDescriptorDto, FeatureInput, type FeatureInputConstrainedVariable, type FeatureInputInlineTerm, type FeatureInputInlineTermByName, type FeatureInputTermRef, type FeatureInputValueDto, type FeatureInputVariable, type FeatureMismatchDto, type FeaturePair, type FeatureRequirementDto, type FeatureTargetDto, type FeatureTypeDto, type FeatureValueDto, type FindPlansRequest, type FindPlansResponse, type FindRulesRequest, type FindRulesResponse, type FindSimilarRequest, type FindallRequest, type FindallResponse, type FixSuggestionDto, type ForallRequest, type ForallResponse, type FormalJudgeRefinementResponse, type FormalJudgeRequest, type FormalJudgeResponse, type FormalVerdictDto, type ForwardChainRequest, type ForwardChainResponse, type FunctionBodyDto, type FunctionClauseDto, type FunctionGuardDto, type FunctionValueDto, type FuzzyConceptLevel, type FuzzyMergeRequest, type FuzzyMergeResponse, type FuzzyNumberValue, type FuzzyProveRequest, type FuzzyProveResponse, type FuzzyScalarValue, type FuzzySearchResultItem, type FuzzySearchTopKRequest, type FuzzySearchTopKResponse, FuzzyShape, type FuzzyShapeDto, type FuzzySubsumptionRequest, type FuzzySubsumptionResponse, type FuzzyUnifyRequest, type FuzzyUnifyResponse, type GESResultDto, type GFlowNetSampleRequest, type GFlowNetSampleResponse, type GFlowNetTrainResponse, type GaussianShape, type GeneralConstraintDto, type GenerateDocumentRequest, type GenerateDocumentResponse, type GenerateNegativesRequest, type GenerateNegativesResponse, type GenerateOntologyRequest, type GenerateOntologyResponse, type GenerateSyntheticDataRequest, type GenerateSyntheticDataResponse, type GenerationPromptRequest, type GenerationPromptResponse, type GenerationProvenanceDto, type GenerationReportDto, type GenerationVerificationDto, type GetAgentDrivesRequest, type GetAgentStateRequest, type GetAgentStateResponse, type GetBindingsRequest, type GetCausalModelResponse, type GetEpisodeStatsRequest, type GetEquivalenceClassesResponse, type GetExtendedAgentStateRequest, type GetExtendedAgentStateResponse, type GetFactsResponse, type GetMembershipsRequest, type GetMembershipsResponse, type GetPreorderDegreeRequest, type GetPreorderDegreeResponse, type GetResiduationsRequest, type GetResiduationsResponse, type GetScenarioResponse, type GetSortSimilarityRequest, type GetSortSimilarityResponse, type GetStoreTermRequest, type GetStoreTermResponse, type GlbLubComputationTrace, type GlbLubOperation, type GlbLubTraceRequest, type GlbLubTraceStep, type GlbRequest, type GlbResponse, type GlobalAssignRequest, type GlobalAssignResponse, type GlobalGetRequest, type GlobalGetResponse, type GlobalIncrementRequest, type GlobalIncrementResponse, type GoalDto, type GoalEvaluationResultDto, type GoalResiduationRequest, type GoalResiduationResponse, type GoalStackEntryDto, type GoalStackResponse, type GoalSummaryDto, type GraphEdgeDto, type GraphMetadataDto, type GraphNodeDto, type GroundTruthEntry, type GroundingStatsDto, type GuardOp, type HomoiconicSubstitutionDto, type HorizonDto, type HtnMethodDto, type HyperedgeDto, type HyperedgeTypeDto, type HypergraphRequest, type HypergraphResponse, type HypergraphStats, type ImageExtractedEntityDto, type ImageExtractedRelationDto, type ImageExtractionStatsDto, type ImageSuggestedSortDto, type ImpasseDto, type Implication, type ImpliesRequest, type ImpliesResponse, type ImportModuleRequest, type ImportModuleResponse, type IncompleteDocumentDto, type InfeasibleResult, type IngestDocumentBatchRequest, type IngestDocumentBatchResponse, type IngestDocumentRequest, type IngestDocumentResponse, type IngestFromSourceRequest, type IngestFromSourceResponse, type IngestMarkdownBatchRequest, type IngestMarkdownRequest, type IngestMarkdownResponse, type IngestRdfRequest, type IngestRdfResponse, type IngestionConfigDto, type IngestionSessionResponse, type IngestionSessionStatusDto, type IngestionStatsDto, type IntegerValue, type IntegratedCycleOutcomeDto, type IntegratedEngineConfigDto, type IntegrationGroupDto, type IntentionDto, type Interceptor, InternalServerError, type InterventionObservationRequest, type InterventionObservationResponse, type InterventionRecommendationDto, type InterventionRequest, type InterventionResponse, type InvokeActionRequest, type InvokeActionResponse, type IterationMetricDto, type JsonValue$1 as JsonValue, type JudgeConfigDto, type KBOptimizationConfig, type KBOptimizationResult, type KBResourceConstraint, type KBVariableSpec, type KbChangeDto, type KbChangeType, LP, type LatticeStats, type LatticeVisualizationRequest, type LatticeVisualizationResponse, type LayerResultDto, type LayerResultSummaryDto, type LayoutAlgorithmDto, type LayoutDirectionDto, type LayoutHintsDto, type LazyEvalRequest, type LazyEvalResponse, type LearnFromCorrectionRequest, type LearnFromCorrectionResponse, type LearnPatternConfigDto, type LearnPatternRequest, type LearnPatternResponse, type LearnSortSimilaritiesRequest, type LearnSortSimilaritiesResponse, type LearnedPatternDto, type LearnedSimilarityDto, type LearnedSimilarityListResponse, type LearnedSimilarityProvenanceDto, type LearnedSimilarityStatusDto, type LinearConstraint, type LinearExpression, type LinearProgramDefinition, type ListActionReviewsResponse, type ListEvalFunctionsRequest, type ListEvalFunctionsResponse, type ListExternalActionsResponse, type ListGoalsResponse, type ListIncompleteDocumentsResponse, type ListIngestionSessionsResponse, type ListPatternsResponse, type ListPendingInvocationsResponse, type ListScenariosResponse, type ListSourcesResponse, type ListSymbolsRequest, type ListSymbolsResponse, type ListTenantsResponse, type ListValue, type LiteralInputDto, type LubRequest, type LubResponse, type MarkChoicePointRequest, type MarkMessagesReadRequest, type MarkMessagesReadResponse, type MarkPendingRequest, type MarkPendingResponse, type MarkRuleStoreRequest, type MarkRuleStoreResponse, type MarkTermStoreRequest, type MarkTermStoreResponse, type MarkdownDocumentDto, type MatchedEntityDto, type MaterializationSummaryDto, type MathFunctionRequest, type MathFunctionType, type MeetPreservationDto, type MembershipDto, type MergeEntityRequest, type MetaSortsResponse, type MissingInfoDto, type ModifyActionRequest, type ModularArithRequest, type ModularOperationType, type MonadicFactDto, type MonadicFixpointRequest, type MonadicFixpointResponse, type MotivationStateDto, type NafProveRequest, type NafProveResponse, type NafResponse, type NamespaceDto, type NamespaceListResponse, type NamespaceResponse, type NegativeExampleDto, NetworkError, type NeuroSymbolicStatusResponse, type NlQueryMode, type NlQueryRequest, type NlQueryResponse, type NlQueryResultItem, type NodeTypeDto, NotFoundError, type NumberFormatDto, type NumberToStringRequest, type NumberValueDto, type ObjectiveFunction, type ObserveMultiRequest, type ObserveMultiResponse, type ObservePairRequest, type ObservePairResponse, type ObserveSingleRequest, type ObserveSingleResponse, type OcrConfigDto, type OntologyClarificationQuestionDto, type OntologyRagRequest, type OntologyRagResponse, type OntologyRagStatsDto, type OptimalResult, type OptimizationDirection, type OptimizationResult, type OsfSearchRequest, type OsfSearchResponse, type OsfSearchStatsDto, type PaginationParams, type ParsedDocumentMetadataDto, type PartialCorrelationRequest, type PartialCorrelationResponse, type PatternDto, type PatternSummaryDto, type PendingActionReviewDto, type PendingInvocationDto, type PendingReviewDto$1 as PendingReviewDto, type PipelineQualityStatsDto, type PlanMatchDto, type PositionalArgumentDto, type PredictEffectRequest, type PredictEffectResponse, type PredictFromDiscoveryRequest, type PredictFromDiscoveryResponse, type PredictPreferencesRequest, type PredictPreferencesResponse, type PredictionErrorDto, type PreferencePrediction, type PrerequisiteInfoDto, type ProofDto, type ProofEngineCreateTermResponse, type ProofNodeDto, type ProofStatisticsDto, type ProofTraceDto, type ProvenanceTagDto, type ProvideFeedbackRequest, type ProvideFeedbackResponse, type PsiTermDto, type PushGoalRequest, type PushGoalResponse, type QueryResultDto, type QueryTerm, RateLimitError, type RateLimitInfo, type RdfFormatDto, type ReExtractRequest, type RealValue, ReasoningLayerClient, ReasoningLayerError, type RecallEpisodesRequest, type RecallEpisodesResponse, type RecalledEpisodeDto, type RecordEpisodeRequest, type RecordEpisodeResponse, type RecordSelectionRequest, type RecordSelectionResponse, type ReferenceValue, type ReferencedTermSummary, type ReflectionQueryRequest, type ReflectionQueryResponse, type RefuteRequest, type RefuteResponse, type RegisterExternalActionRequest, type RegisterExternalActionResponse, type RegisterFunctionRequest, type RegisterFunctionResponse, type RegisterSourceRequest, type RegisterSourceResponse, type RejectActionRequest, type RejectEntityRequest, type RejectLearnedSimilarityRequest, type RejectLearnedSimilarityResponse, type RelOpDto, type RelatedInfoDto, type RelationTypeDto, type RelationalArithRequest, type ReleaseResiduationsRequest, type ReleaseResiduationsResponse, type RequestOptions, type ResidualWitnessDto, type ResiduateGoalRequest, type ResiduateGoalResponse, type ResiduatedEntryDto, type ResiduatedTermDto, type ResiduationDetailDto, type ResiduationDto, type ResiduationGoalDto, type ResiduationKind, type ResiduationRequest, type ResiduationResponse, type ResiduationStateDto, type ResiduationStateFilter, type ResiduationStateRequest, type ResiduationStateResponse, type ResiduationStats, type ResolveSymbolRequest, type ResolveSymbolResponse, type ResourceCoordinationRequest, type ResourceCoordinationResponse, type ResourceSpec, type ResumeDocumentIngestionRequest, type ResumeDocumentIngestionResponse, type ResumptionOptionDto, type RetractRuleRequest, type RetractRuleResponse, type ReviewCandidateMatchDto, type ReviewReason, type RootCauseAnalysisRequest, type RootCauseAnalysisResponse, type RootCauseDto, type RootCauseWithProofResponse, type RowIntegrateRequest, type RowIntegrateResponse, type RowMatchDto, type RowSearchRequest, type RowSearchResponse, type RowSimilarityRequest, type RowSimilarityResponse, type RowTypeDto, type RowUnifyRequest, type RowUnifyResponse, type RuleClauseDto, type RuleConstraintDto, type RuleDto, type RuleStoreResponse, type RuleUtilityDto, type RunCycleRequest, type RunCycleResponse, type RunIntegratedCycleRequest, type RunIntegratedCycleResponse, SDK_VERSION, type SafetyModelInfoDto, type SampledHypothesisDto, type SaveWeightsResponse, type ScenarioSummaryDto, type SearchCommunitiesRequest, type SearchCommunitiesResponse, type SearchStatsDto, type SearchStrategyDto, type SendMessageRequest, type SendMessageResponse, type SetFeatureRequest, type SetFeatureResponse, type SetSortSimilarityRequest, type SetSortSimilarityResponse, type SetValue, type SimilarityEntryDto, type SingleCopyRequest, type SoftUnifyRequest, type SoftUnifyResponse, type SolutionDto, type SolveConstraintRequest, type SolveConstraintResponse, type SolveOptions, type SortBoxRequest, type SortBoxResponse, SortBuilder, type SortCalibrationDto, type SortCompareOperator, type SortCompareRequest, type SortCompareResponse, type SortDiscoveryRequest, type SortDiscoveryResponse, type SortDto, type SortInfoDto, type SortListResponse, type SortOriginDto, type SortRecommendation, type SortResponse, type SortSimilarityResponse, type SortStatusDto, type SortSuggestionDto, type SortSummaryDto, type SourceDetailResponse, type SourceSummaryDto, type SpaceResponse, type SpaceSearchRequest, type SpaceSearchResponse, type SpaceSolutionDto, type SpaceStatusDto, type SpecificityDto, type StartExplorationRequest, type StartExplorationResponse, type StartIngestionSessionRequest, type StatisticalSuccessResponse, type StorePlanRequest, type StorePlanResponse, type StringCompareOperator, type StringComparePredicateRequest, type StringCompareRequest, type StringConcatRequest, type StringLengthRequest, type StringOpParams, type StringOpRequest, type StringOperationType, type StringValue, type StructuredIngestionStatsDto, type SubscribeToKbRequest, type SubscribeToKbResponse, type SubstringRequest, type SuspendedQueryDto, type SymbolDto, type SymbolKindDto, type SymbolicResultDto, type SynthesizeRequest, type SynthesizeResponse, type TaggedDerivedFact, type TaggedFactDto, type TaggedFcRequest, type TaggedFcResponse, type TaggedFeatureValueDto, type TaggedForwardChainRequest, type TaggedForwardChainResponse, type TemporalPlanRequest, type TemporalPlanResponse, type TenantInfoDto, type TermBindingDto, type TermDto, TermInput, type TermInputDto, type TermInputInline, type TermInputInlineByName, type TermInputRef, type TermListResponse, type TermPatternDto, type TermResponse, type TermState, type TermStoreSessionResponse, TimeoutError, type TokenUsageDto, type ToolCallInfo, type TraceEventDto, type TrailEntryDto, type TrainFromTracesResponse, type TrainingExample, type TrainingExampleDto, type TrainingTriggerResponse, type TrajectoryStepDto, type TrapezoidalShape, type TriangularShape, type TriggerDependencyRequest, type TriggerDependencyResponse, type UncertainEdgeDto, type UndoRequest, type UndoResponse, type UndoRuleStoreRequest, type UndoRuleStoreResponse, type UnifiableQueryRequest, type UnificationQueryResponse, type UnifyTermsRequest, type UnifyTermsResponse, type UninstantiatedValue, type UpdateCollectionRequest, type UpdateMetadataRequest, type UpdatePlanStatsRequest, type UpdatePlanStatsResponse, type UpdateReviewStatusRequest, type UpdateScenarioRequest, type UpdateScenarioResponse, type UpdateTermRequest, type UpdateVisibilityRequest, type ValidateTermRequest, type ValidatedTermResponse, type ValidatedUnifyRequest, type ValidatedUnifyResponse, ValidationError, Value, type ValueDto, type ValuePatternDto, type VariableBounds, type VerbalizationResultDto, type VerbalizeTermRequest, type VerbalizeTermResponse, type VerificationStepDto, type VerifyFaithfulnessRequest, type VerifyFaithfulnessResponse, type VerifyRoundTripRequest, type VerifyRoundTripResponse, type VerifyScenarioRequest, type VerifyScenarioResponse, type ViolationDto, type VisibilityDto, type VisualizationGraphDto, type WaitingConditionDto, type WaitingConditionType, WebSocketClient, WebSocketConnection, type WebhookCallbackRequest, type WebhookCallbackResponse, type WeightedFactDto, type WitnessInstantiationDto, type WitnessProofDto, allen, discriminateFeatureValue, guard, isUuid, psi };
|
|
36449
|
+
export { type ActionReviewReasonDto, type ActionReviewResponse, type ActionReviewStatusDto, type ActionReviewSummaryDto, type ActivationDto, type AdaptiveModifyRequest, type AdaptiveModifyResponse, type AddBeliefRequest, type AddBeliefResponse, type AddCausalRelationRequest, type AddCausalRelationResponse, type AddCognitiveRuleRequest, type AddCognitiveRuleResponse, type AddConstraintsRequest, type AddConstraintsResponse, type AddExportRequest, type AddFactRequest, type AddFactResponse, type AddGoalRequest, type AddGoalResponse, type AddHtnMethodRequest, type AddHtnMethodResponse, type AddImportRequest, type AddPendingReviewRequest, type AddRuleRequest, type AddRuleResponse, type AddSymbolRequest, type AddSymbolResponse, type AgentBeliefDto, type AgentConfigDto, type AgentEvent, type AgentEventHandlers, type AgentGoalDto, type AgentStateDto, type AgentSubVerdictDto, type AgentSubscription, type AllenRelation, ApiError, type ApiResponse, type AppendResiduationsRequest, type AppendResiduationsResponse, type ApplyCurriedRequest, type ApplyCurriedResponse, type ApproveActionRequest, type ApproveEntityRequest, type ApproveLearnedSimilarityRequest, type ApproveLearnedSimilarityResponse, type ArchitectureInfoDto, type ArithOpDto, type ArithValueDto, type ArithmeticConstraintDto, type ArithmeticExprDto, type ArithmeticRecursionOp, type ArtifactDto, type AscRequest, type AssertRuleRequest, type AssertRuleResponse, type AssignValueDto, type AttentionTargetDto, type AttestationDto, type AugmentationTargetDto, type BacktrackResponse, type BacktrackTermStoreRequest, type BacktrackTermStoreResponse, type BacktrackableAssignRequest, type BacktrackableAssignResponse, type BackwardChainRequest, type BackwardChainResponse, BadRequestError, type BatchCopyRequest, type BatchStringCompareRequest, type BayesianEffectDto, type BayesianPredictRequest, type BayesianPredictResponse, type BeliefDto, type BinaryOperatorDto, type BindTermRequest, type BindTermResponse, type BindVariableRequest, type BindVariableResponse, type BindVariablesRequest, type BindVariablesResponse, type BindingDto, type BindingsResponse, type BitwiseOperationType, type BitwiseRequest, type BooleanValue, type BoundConstraintDto, type BroadcastMessageRequest, type BroadcastMessageResponse, type BuildInfoDto, type BulkActionReviewResponse, type BulkAddFactsRequest, type BulkAddFactsResponse, type BulkAddRulesRequest, type BulkAddRulesResponse, type BulkAddTermsRequest, type BulkAddTermsResponse, type BulkApproveActionsRequest, type BulkApproveRequest, type BulkCreateSortsRequest, type BulkCreateSortsResponse, type BulkFuzzyProveRequest, type BulkFuzzyProveResponse, type BulkMergeRequest, type BulkRejectActionsRequest, type BulkRejectRequest, type BulkSetSimilaritiesRequest, type BulkSetSimilaritiesResponse, type BulkSortDefinition, type BulkSortError, type BySortQueryRequest, type CalibrateRequest, type CalibrationReportDto, type CallOnceRequest, type CallOnceResponse, type CandidateMatchDto, type CausalAncestorRequest, type CausalAncestorResponse, type CausalChainDto, type CausalEdgeDto, type CausalProofTreeDto, type CausalRelationshipDto$1 as CausalRelationshipDto, type CausesRequest, type CausesResponse, type CdlComponentStatus, type CdlStatusResponse, type CdlVerificationDto, type CertificateDto, type CheckDiversityRequest, type CheckDiversityResponse, type ChoicePointDto, type ChoicePointMarkerResponse, type ChoiceSelection, type ChrRequest, type ChunkFailureDto, type ClarificationQuestionDto, type ClassifySafetyRequest, type ClassifySafetyResponse, type CleanupResponse, type CleanupSessionsResponse, type CleanupStaleSessionsParams, type ClearFactsResponse, type ClearTermsResponse, type ClientConfig, type CognitiveGoalDto, type CognitiveTermInput, type CollectionDto, type CommitRequest, type CommunityDetectionConfigDto, type CommunityDetectionStatsDto, type CommunityDto, type CommunityMatchDto, type CommunityReportDto, type CommunityReportSummaryDto, type CommunitySearchModeDto, type CommunitySearchStatsDto, type CommunityStatsDto, type ComponentDto, type ComponentHealthDto, type ComputeGlbResponse, type ComputeLubResponse, type ConceptMatchDto, type CondRequest, type CondResponse, type ConditionalIndependenceRequest, type ConditionalIndependenceResponse, type ConfirmResponse, type ConflictResolution, type ConstraintCheckDto, type ConstraintDto, type ConstraintGraphRequest, type ConstraintGraphResponse, type ConstraintGraphStats, type ConstraintInputDto, type ConstraintOperator, type ConstraintSessionStatus, ConstraintViolationError, type ContainmentVerificationDto, type ControlNafRequest, type CoordinatedResourceSet, type CopyModeDto, type CopyTermRequest, type CorrectEntityRequest, type CorrelationRequest, type CorrelationResponse, type CounterfactualRequest, type CounterfactualResponse, type CounterfactualTraceDto, type CreateAgentRequest, type CreateAgentResponse, type CreateChildNamespaceRequest, type CreateCognitiveSortRequest, type CreateCognitiveSortResponse, type CreateCollectionRequest, type CreateConstraintSessionRequest, type CreateConstraintSessionResponse, type CreateCurriedFunctionRequest, type CreateExecutionSessionRequest, type CreateGoalRequest, type CreateGoalResponse, type CreateModuleRequest, type CreateModuleResponse, type CreateRootNamespaceRequest, type CreateRuleStoreRequest, type CreateScenarioRequest, type CreateScenarioResponse, type CreateSortRequest, type CreateSpaceRequest, type CreateStoreTermRequest, type CreateTermRequest, type CreateTermStoreRequest, type CreateVariableRequest, type CuriosityTargetDto, type CurriedFunctionResponse, type CurryingContextResponse, type CutRequest, type CutResponse, type CycleDto, type CycleOutcomeDto, type CycleOutcomeSummaryDto, type CyclicGaussianShape, type DSeparatedRequest, type DSeparatedResponse, type DataMixingStatsDto, type DataPointDto, type DatasetStatisticsDto, type DecodeGlbResponse, type DeepCopyRequest, type DegreeDistributionDto, type DeleteGoalResponse, type DeletePlanRequest, type DeletePlanResponse, type DependentInfoDto, type DereferenceRequest, type DereferenceResponse, type DerivedInferenceRequest, type DerivedInferenceResponse, type DerivedInferenceResultDto, type DetectCommunitiesRequest, type DetectCommunitiesResponse, type DetectMissingAttributesRequest, type DiagnosticDto, type DiagnosticsResponse, type DifferentiableFcRequest, type DifferentiableFcResponse, type DiscoverCausalRequest, type DiscoverCausalResponse, type DiscoverEffectsRequest, type DiscoverEffectsResponse, type DiscoverSchemaRequest, type DiscoverSchemaResponse, type DiscoveredFeatureDto, type DiscoveredRelationDto, type DiscoveredSortDto, type DiscoveredSourceRelationDto, type DiscoveryConfigDto, type DiscoveryProofNodeDto, type DiscoveryProofStatsDto, type DiscoveryProofTreeDto, type DiscoveryStateDto, type DiscoveryStatusResponse, type DiscoveryStrategy, type DisentailmentRequest, type DisentailmentResponse, type DiversityAnalysisDto, type DocumentBatchItem, type DocumentBatchResultDto, type DocumentMetadataDto, type DocumentParseStatsDto, type DocumentParser, type DocumentSource, type DocumentType, type DriveDeficitDto, type DriveDto, type DynamicAddSortRequest, type DynamicAddSortResponse, type DynamicDiscoveryRequest, type DynamicDiscoveryResponse, type DynamicQueryClauseDto, type DynamicQueryGroupDto, type DynamicQueryRequest, type DynamicQueryResponse, type DynamicQueryResultDto, type E2ETrainingRequest, type E2ETrainingResponse, type EdgeTypeDto, type EffectDto, type EffectPredictionDto, type EmbeddingVerificationResponse, type EnrichedHealthResponse, type EntailmentRequest, type EntailmentResponse, type EntityDto, type EntityVerificationDetailDto, type EpisodeDto, type EpisodeOutcomeDto, type EpisodeStatsResponse, type EquivalenceClassDto, type ErrorResponse, type EvalBuiltinRequest, type EvalBuiltinResponse, type EvalFunctionInfoDto, type EvaluateFunctionRequest, type EvaluateFunctionResponse, type EvaluatePatternRequest, type EvaluatePatternResponse, type EvaluatedValueDto, type EvaluationResult, type EvidenceAssessmentRequest, type EvidenceAssessmentResponse, type EvidenceItemDto, type EvidenceSourceDto, type ExecutionGoalDto, type ExecutionSessionResponse, type ExecutionSessionStatsResponse, type ExecutionValueDto, type ExplorationCompleteResponse, type ExplorationProgress, type ExplorationQuestion, type ExplorationStatusResponse, type ExportJsonlResponse, type ExpressionDto, type ExtendedAgentStateDto, type ExternalActionSummaryDto, type ExtractEntitiesRequest, type ExtractEntitiesResponse, type ExtractImageRequest, type ExtractImageResponse, type ExtractedEntityDto, type ExtractionPredictionDto, type ExtractionStatsDto, type FactConfidenceEntry, type FactoryResetResponse, type FailedReviewDto, type FdDomainStateDto, type FeatureBindingDto, type FeatureConfigDto, type FeatureDescriptorDto, FeatureInput, type FeatureInputConstrainedVariable, type FeatureInputInlineTerm, type FeatureInputInlineTermByName, type FeatureInputTermRef, type FeatureInputValueDto, type FeatureInputVariable, type FeatureMismatchDto, type FeaturePair, type FeatureRequirementDto, type FeatureTargetDto, type FeatureTypeDto, type FeatureValueDto, type FindBySortRequest, type FindPlansRequest, type FindPlansResponse, type FindRulesRequest, type FindRulesResponse, type FindSimilarRequest, type FindallRequest, type FindallResponse, type FixSuggestionDto, type ForallRequest, type ForallResponse, type FormalJudgeRefinementResponse, type FormalJudgeRequest, type FormalJudgeResponse, type FormalVerdictDto, type ForwardChainRequest, type ForwardChainResponse, type FunctionBodyDto, type FunctionClauseDto, type FunctionGuardDto, type FunctionValueDto, type FuzzyConceptLevel, type FuzzyMergeRequest, type FuzzyMergeResponse, type FuzzyNumberValue, type FuzzyProveRequest, type FuzzyProveResponse, type FuzzyScalarValue, type FuzzySearchResultItem, type FuzzySearchTopKRequest, type FuzzySearchTopKResponse, FuzzyShape, type FuzzyShapeDto, type FuzzySubsumptionRequest, type FuzzySubsumptionResponse, type FuzzyUnifyRequest, type FuzzyUnifyResponse, type GESResultDto, type GFlowNetSampleRequest, type GFlowNetSampleResponse, type GFlowNetTrainResponse, type GaussianShape, type GeneralConstraintDto, type GenerateDocumentRequest, type GenerateDocumentResponse, type GenerateNegativesRequest, type GenerateNegativesResponse, type GenerateOntologyRequest, type GenerateOntologyResponse, type GenerateSyntheticDataRequest, type GenerateSyntheticDataResponse, type GenerationPromptRequest, type GenerationPromptResponse, type GenerationProvenanceDto, type GenerationReportDto, type GenerationVerificationDto, type GetAgentDrivesRequest, type GetAgentStateRequest, type GetAgentStateResponse, type GetBindingsRequest, type GetCausalModelResponse, type GetEpisodeStatsRequest, type GetEquivalenceClassesResponse, type GetExtendedAgentStateRequest, type GetExtendedAgentStateResponse, type GetFactsResponse, type GetMembershipsRequest, type GetMembershipsResponse, type GetPreorderDegreeRequest, type GetPreorderDegreeResponse, type GetResiduationsRequest, type GetResiduationsResponse, type GetScenarioResponse, type GetSortSimilarityRequest, type GetSortSimilarityResponse, type GetStoreTermRequest, type GetStoreTermResponse, type GlbLubComputationTrace, type GlbLubOperation, type GlbLubTraceRequest, type GlbLubTraceStep, type GlbRequest, type GlbResponse, type GlobalAssignRequest, type GlobalAssignResponse, type GlobalGetRequest, type GlobalGetResponse, type GlobalIncrementRequest, type GlobalIncrementResponse, type GoalDto, type GoalEvaluationResultDto, type GoalResiduationRequest, type GoalResiduationResponse, type GoalStackEntryDto, type GoalStackResponse, type GoalSummaryDto, type GraphEdgeDto, type GraphMetadataDto, type GraphNodeDto, type GroundTruthEntry, type GroundingStatsDto, type GuardOp, type HomoiconicSubstitutionDto, type HorizonDto, type HtnMethodDto, type HyperedgeDto, type HyperedgeTypeDto, type HypergraphRequest, type HypergraphResponse, type HypergraphStats, type ImageExtractedEntityDto, type ImageExtractedRelationDto, type ImageExtractionStatsDto, type ImageSuggestedSortDto, type ImpasseDto, type Implication, type ImpliesRequest, type ImpliesResponse, type ImportModuleRequest, type ImportModuleResponse, type IncompleteDocumentDto, type InfeasibleResult, type IngestDocumentBatchRequest, type IngestDocumentBatchResponse, type IngestDocumentRequest, type IngestDocumentResponse, type IngestFromSourceRequest, type IngestFromSourceResponse, type IngestMarkdownBatchRequest, type IngestMarkdownRequest, type IngestMarkdownResponse, type IngestRdfRequest, type IngestRdfResponse, type IngestionConfigDto, type IngestionSessionResponse, type IngestionSessionStatusDto, type IngestionStatsDto, type IntegerValue, type IntegratedCycleOutcomeDto, type IntegratedEngineConfigDto, type IntegrationGroupDto, type IntentionDto, type Interceptor, InternalServerError, type InterventionObservationRequest, type InterventionObservationResponse, type InterventionRecommendationDto, type InterventionRequest, type InterventionResponse, type InvokeActionRequest, type InvokeActionResponse, type IterationMetricDto, type JsonValue$1 as JsonValue, type JudgeConfigDto, type KBOptimizationConfig, type KBOptimizationResult, type KBResourceConstraint, type KBVariableSpec, type KbChangeDto, type KbChangeType, LP, type LatticeStats, type LatticeVisualizationRequest, type LatticeVisualizationResponse, type LayerResultDto, type LayerResultSummaryDto, type LayoutAlgorithmDto, type LayoutDirectionDto, type LayoutHintsDto, type LazyEvalRequest, type LazyEvalResponse, type LearnFromCorrectionRequest, type LearnFromCorrectionResponse, type LearnPatternConfigDto, type LearnPatternRequest, type LearnPatternResponse, type LearnSortSimilaritiesRequest, type LearnSortSimilaritiesResponse, type LearnedPatternDto, type LearnedSimilarityDto, type LearnedSimilarityListResponse, type LearnedSimilarityProvenanceDto, type LearnedSimilarityStatusDto, type LinearConstraint, type LinearExpression, type LinearProgramDefinition, type ListActionReviewsResponse, type ListEvalFunctionsRequest, type ListEvalFunctionsResponse, type ListExternalActionsResponse, type ListGoalsResponse, type ListIncompleteDocumentsResponse, type ListIngestionSessionsResponse, type ListPatternsResponse, type ListPendingInvocationsResponse, type ListScenariosResponse, type ListSourcesResponse, type ListSymbolsRequest, type ListSymbolsResponse, type ListTenantsResponse, type ListValue, type LiteralInputDto, type LubRequest, type LubResponse, type MarkChoicePointRequest, type MarkMessagesReadRequest, type MarkMessagesReadResponse, type MarkPendingRequest, type MarkPendingResponse, type MarkRuleStoreRequest, type MarkRuleStoreResponse, type MarkTermStoreRequest, type MarkTermStoreResponse, type MarkdownDocumentDto, type MatchedEntityDto, type MaterializationSummaryDto, type MathFunctionRequest, type MathFunctionType, type MeetPreservationDto, type MembershipDto, type MergeEntityRequest, type MetaSortsResponse, type MissingInfoDto, type ModifyActionRequest, type ModularArithRequest, type ModularOperationType, type MonadicFactDto, type MonadicFixpointRequest, type MonadicFixpointResponse, type MotivationStateDto, type NafProveRequest, type NafProveResponse, type NafResponse, type NamespaceDto, type NamespaceListResponse, type NamespaceResponse, type NegativeExampleDto, NetworkError, type NeuroSymbolicStatusResponse, type NlQueryMode, type NlQueryRequest, type NlQueryResponse, type NlQueryResultItem, type NodeTypeDto, NotFoundError, type NumberFormatDto, type NumberToStringRequest, type NumberValueDto, type ObjectiveFunction, type ObserveMultiRequest, type ObserveMultiResponse, type ObservePairRequest, type ObservePairResponse, type ObserveSingleRequest, type ObserveSingleResponse, type OcrConfigDto, type OntologyClarificationQuestionDto, type OntologyRagRequest, type OntologyRagResponse, type OntologyRagStatsDto, type OptimalResult, type OptimizationDirection, type OptimizationResult, type OsfSearchRequest, type OsfSearchResponse, type OsfSearchStatsDto, type PaginationParams, type ParsedDocumentMetadataDto, type PartialCorrelationRequest, type PartialCorrelationResponse, type PatternDto, type PatternSummaryDto, type PendingActionReviewDto, type PendingInvocationDto, type PendingReviewDto$1 as PendingReviewDto, type PipelineQualityStatsDto, type PlanMatchDto, type PositionalArgumentDto, type PredictEffectRequest, type PredictEffectResponse, type PredictFromDiscoveryRequest, type PredictFromDiscoveryResponse, type PredictPreferencesRequest, type PredictPreferencesResponse, type PredictionErrorDto, type PreferencePrediction, type PrerequisiteInfoDto, type ProofDto, type ProofEngineCreateTermResponse, type ProofNodeDto, type ProofStatisticsDto, type ProofTraceDto, type ProvenanceTagDto, type ProvideFeedbackRequest, type ProvideFeedbackResponse, type PsiTermDto, type PushGoalRequest, type PushGoalResponse, type QueryResultDto, type QueryTerm, RateLimitError, type RateLimitInfo, type RdfFormatDto, type ReExtractRequest, type RealValue, ReasoningLayerClient, ReasoningLayerError, type RecallEpisodesRequest, type RecallEpisodesResponse, type RecalledEpisodeDto, type RecordEpisodeRequest, type RecordEpisodeResponse, type RecordSelectionRequest, type RecordSelectionResponse, type ReferenceValue, type ReferencedTermSummary, type ReflectionQueryRequest, type ReflectionQueryResponse, type RefuteRequest, type RefuteResponse, type RegisterExternalActionRequest, type RegisterExternalActionResponse, type RegisterFunctionRequest, type RegisterFunctionResponse, type RegisterSourceRequest, type RegisterSourceResponse, type RejectActionRequest, type RejectEntityRequest, type RejectLearnedSimilarityRequest, type RejectLearnedSimilarityResponse, type RelOpDto, type RelatedInfoDto, type RelationTypeDto, type RelationalArithRequest, type ReleaseResiduationsRequest, type ReleaseResiduationsResponse, type RequestOptions, type ResidualWitnessDto, type ResiduateGoalRequest, type ResiduateGoalResponse, type ResiduatedEntryDto, type ResiduatedTermDto, type ResiduationDetailDto, type ResiduationDto, type ResiduationGoalDto, type ResiduationKind, type ResiduationRequest, type ResiduationResponse, type ResiduationStateDto, type ResiduationStateFilter, type ResiduationStateRequest, type ResiduationStateResponse, type ResiduationStats, type ResolveSymbolRequest, type ResolveSymbolResponse, type ResourceCoordinationRequest, type ResourceCoordinationResponse, type ResourceSpec, type ResumeDocumentIngestionRequest, type ResumeDocumentIngestionResponse, type ResumptionOptionDto, type RetractRuleRequest, type RetractRuleResponse, type ReviewCandidateMatchDto, type ReviewReason, type RootCauseAnalysisRequest, type RootCauseAnalysisResponse, type RootCauseDto, type RootCauseWithProofResponse, type RowIntegrateRequest, type RowIntegrateResponse, type RowMatchDto, type RowSearchRequest, type RowSearchResponse, type RowSimilarityRequest, type RowSimilarityResponse, type RowTypeDto, type RowUnifyRequest, type RowUnifyResponse, type RuleClauseDto, type RuleConstraintDto, type RuleDto, type RuleStoreResponse, type RuleUtilityDto, type RunCycleRequest, type RunCycleResponse, type RunIntegratedCycleRequest, type RunIntegratedCycleResponse, SDK_VERSION, type SafetyModelInfoDto, type SampledHypothesisDto, type SaveWeightsResponse, type ScenarioSummaryDto, type SearchCommunitiesRequest, type SearchCommunitiesResponse, type SearchStatsDto, type SearchStrategyDto, type SendMessageRequest, type SendMessageResponse, type SetFeatureRequest, type SetFeatureResponse, type SetSortSimilarityRequest, type SetSortSimilarityResponse, type SetValue, type SimilarityEntryDto, type SingleCopyRequest, type SoftUnifyRequest, type SoftUnifyResponse, type SolutionDto, type SolveConstraintRequest, type SolveConstraintResponse, type SolveOptions, type SortBoxRequest, type SortBoxResponse, SortBuilder, type SortCalibrationDto, type SortCompareOperator, type SortCompareRequest, type SortCompareResponse, type SortDiscoveryRequest, type SortDiscoveryResponse, type SortDto, type SortInfoDto, type SortListResponse, type SortOriginDto, type SortRecommendation, type SortResponse, type SortSimilarityResponse, type SortStatusDto, type SortSuggestionDto, type SortSummaryDto, type SourceDetailResponse, type SourceSummaryDto, type SpaceResponse, type SpaceSearchRequest, type SpaceSearchResponse, type SpaceSolutionDto, type SpaceStatusDto, type SpecificityDto, type StartExplorationRequest, type StartExplorationResponse, type StartIngestionSessionRequest, type StatisticalSuccessResponse, type StorePlanRequest, type StorePlanResponse, type StringCompareOperator, type StringComparePredicateRequest, type StringCompareRequest, type StringConcatRequest, type StringLengthRequest, type StringOpParams, type StringOpRequest, type StringOperationType, type StringValue, type StructuredIngestionStatsDto, type SubscribeToKbRequest, type SubscribeToKbResponse, type SubstringRequest, type SuspendedQueryDto, type SymbolDto, type SymbolKindDto, type SymbolicResultDto, type SynthesizeRequest, type SynthesizeResponse, type TaggedDerivedFact, type TaggedFactDto, type TaggedFcRequest, type TaggedFcResponse, type TaggedFeatureValueDto, type TaggedForwardChainRequest, type TaggedForwardChainResponse, type TemporalPlanRequest, type TemporalPlanResponse, type TenantInfoDto, type TermBindingDto, type TermDto, TermInput, type TermInputDto, type TermInputInline, type TermInputInlineByName, type TermInputRef, type TermListResponse, type TermPatternDto, type TermResponse, type TermState, type TermStoreSessionResponse, TimeoutError, type TokenUsageDto, type ToolCallInfo, type TraceEventDto, type TrailEntryDto, type TrainFromTracesResponse, type TrainingExample, type TrainingExampleDto, type TrainingTriggerResponse, type TrajectoryStepDto, type TrapezoidalShape, type TriangularShape, type TriggerDependencyRequest, type TriggerDependencyResponse, type UncertainEdgeDto, type UndoRequest, type UndoResponse, type UndoRuleStoreRequest, type UndoRuleStoreResponse, type UnifiableQueryRequest, type UnificationQueryResponse, type UnifyTermsRequest, type UnifyTermsResponse, type UninstantiatedValue, type UpdateCollectionRequest, type UpdateMetadataRequest, type UpdatePlanStatsRequest, type UpdatePlanStatsResponse, type UpdateReviewStatusRequest, type UpdateScenarioRequest, type UpdateScenarioResponse, type UpdateTermRequest, type UpdateVisibilityRequest, type ValidateTermRequest, type ValidatedTermResponse, type ValidatedUnifyRequest, type ValidatedUnifyResponse, ValidationError, Value, type ValueDto, type ValuePatternDto, type VariableBounds, type VerbalizationResultDto, type VerbalizeTermRequest, type VerbalizeTermResponse, type VerificationStepDto, type VerifyFaithfulnessRequest, type VerifyFaithfulnessResponse, type VerifyRoundTripRequest, type VerifyRoundTripResponse, type VerifyScenarioRequest, type VerifyScenarioResponse, type ViolationDto, type VisibilityDto, type VisualizationGraphDto, type WaitingConditionDto, type WaitingConditionType, WebSocketClient, WebSocketConnection, type WebhookCallbackRequest, type WebhookCallbackResponse, type WeightedFactDto, type WitnessInstantiationDto, type WitnessProofDto, allen, discriminateFeatureValue, guard, isUuid, psi };
|