@axiom-lattice/core 2.1.28 → 2.1.29

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.d.mts CHANGED
@@ -396,7 +396,7 @@ declare const createListTablesSqlTool: ({ databaseKeys, databaseDescriptions }:
396
396
  databaseKey: string;
397
397
  }, {
398
398
  databaseKey: string;
399
- }, string>;
399
+ }, string, "list_tables_sql">;
400
400
 
401
401
  interface CreateSqlToolParams$2 {
402
402
  databaseKeys: string[];
@@ -417,7 +417,7 @@ declare const createInfoSqlTool: ({ databaseKeys, databaseDescriptions }: Create
417
417
  }, {
418
418
  databaseKey: string;
419
419
  tables: string;
420
- }, string>;
420
+ }, string, "info_sql">;
421
421
 
422
422
  interface CreateSqlToolParams$1 {
423
423
  databaseKeys: string[];
@@ -438,7 +438,7 @@ declare const createQueryCheckerSqlTool: ({ databaseKeys, databaseDescriptions }
438
438
  }, {
439
439
  query: string;
440
440
  databaseKey: string;
441
- }, string>;
441
+ }, string, "query_checker_sql">;
442
442
 
443
443
  interface CreateSqlToolParams {
444
444
  databaseKeys: string[];
@@ -459,7 +459,7 @@ declare const createQuerySqlTool: ({ databaseKeys, databaseDescriptions }: Creat
459
459
  }, {
460
460
  query: string;
461
461
  databaseKey: string;
462
- }, string>;
462
+ }, string, "query_sql">;
463
463
 
464
464
  /**
465
465
  * SemanticMetricsClient
@@ -817,13 +817,13 @@ interface CreateMetricsToolParams$5 {
817
817
  serverKeys: string[];
818
818
  serverDescriptions?: Record<string, string>;
819
819
  }
820
- declare const createListMetricsServersTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$5) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string>;
820
+ declare const createListMetricsServersTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$5) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string, "list_metrics_servers">;
821
821
 
822
822
  interface CreateMetricsToolParams$4 {
823
823
  serverKeys: string[];
824
824
  serverDescriptions?: Record<string, string>;
825
825
  }
826
- declare const createListMetricsDataSourcesTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$4) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string>;
826
+ declare const createListMetricsDataSourcesTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$4) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string, "list_metrics_datasources">;
827
827
 
828
828
  interface CreateMetricsToolParams$3 {
829
829
  serverKeys: string[];
@@ -844,7 +844,7 @@ declare const createQueryMetricsListTool: ({ serverKeys, serverDescriptions }: C
844
844
  }, {
845
845
  serverKey?: string | undefined;
846
846
  datasourceIds?: string[] | undefined;
847
- }, string>;
847
+ }, string, "query_metrics_list">;
848
848
 
849
849
  interface CreateMetricsToolParams$2 {
850
850
  serverKeys: string[];
@@ -870,7 +870,7 @@ declare const createQueryMetricDefinitionTool: ({ serverKeys, serverDescriptions
870
870
  metricName: string;
871
871
  serverKey?: string | undefined;
872
872
  datasourceId?: string | undefined;
873
- }, string>;
873
+ }, string, "query_metric_definition">;
874
874
 
875
875
  interface CreateMetricsToolParams$1 {
876
876
  serverKeys: string[];
@@ -939,7 +939,7 @@ declare const createQuerySemanticMetricDataTool: ({ serverKeys, serverDescriptio
939
939
  operator: string;
940
940
  }[] | undefined;
941
941
  limit?: number | undefined;
942
- }, string>;
942
+ }, string, "query_semantic_metric_data">;
943
943
 
944
944
  interface CreateTablesToolParams {
945
945
  serverKeys: string[];
@@ -960,7 +960,7 @@ declare const createQueryTablesListTool: ({ serverKeys, serverDescriptions }: Cr
960
960
  }, {
961
961
  serverKey?: string | undefined;
962
962
  datasourceIds?: string[] | undefined;
963
- }, string>;
963
+ }, string, "query_tables_list">;
964
964
 
965
965
  interface CreateTableToolParams {
966
966
  serverKeys: string[];
@@ -986,7 +986,7 @@ declare const createQueryTableDefinitionTool: ({ serverKeys, serverDescriptions
986
986
  tableName: string;
987
987
  serverKey?: string | undefined;
988
988
  datasourceId?: string | undefined;
989
- }, string>;
989
+ }, string, "query_table_definition">;
990
990
 
991
991
  interface CreateMetricsToolParams {
992
992
  serverKeys: string[];
@@ -1022,7 +1022,7 @@ declare const createExecuteSqlQueryTool: ({ serverKeys, serverDescriptions }: Cr
1022
1022
  serverKey?: string | undefined;
1023
1023
  datasourceId?: string | undefined;
1024
1024
  limit?: number | undefined;
1025
- }, string>;
1025
+ }, string, "execute_sql_query">;
1026
1026
 
1027
1027
  interface SandboxManagerProtocol {
1028
1028
  getBaseURL(): string;
package/dist/index.d.ts CHANGED
@@ -396,7 +396,7 @@ declare const createListTablesSqlTool: ({ databaseKeys, databaseDescriptions }:
396
396
  databaseKey: string;
397
397
  }, {
398
398
  databaseKey: string;
399
- }, string>;
399
+ }, string, "list_tables_sql">;
400
400
 
401
401
  interface CreateSqlToolParams$2 {
402
402
  databaseKeys: string[];
@@ -417,7 +417,7 @@ declare const createInfoSqlTool: ({ databaseKeys, databaseDescriptions }: Create
417
417
  }, {
418
418
  databaseKey: string;
419
419
  tables: string;
420
- }, string>;
420
+ }, string, "info_sql">;
421
421
 
422
422
  interface CreateSqlToolParams$1 {
423
423
  databaseKeys: string[];
@@ -438,7 +438,7 @@ declare const createQueryCheckerSqlTool: ({ databaseKeys, databaseDescriptions }
438
438
  }, {
439
439
  query: string;
440
440
  databaseKey: string;
441
- }, string>;
441
+ }, string, "query_checker_sql">;
442
442
 
443
443
  interface CreateSqlToolParams {
444
444
  databaseKeys: string[];
@@ -459,7 +459,7 @@ declare const createQuerySqlTool: ({ databaseKeys, databaseDescriptions }: Creat
459
459
  }, {
460
460
  query: string;
461
461
  databaseKey: string;
462
- }, string>;
462
+ }, string, "query_sql">;
463
463
 
464
464
  /**
465
465
  * SemanticMetricsClient
@@ -817,13 +817,13 @@ interface CreateMetricsToolParams$5 {
817
817
  serverKeys: string[];
818
818
  serverDescriptions?: Record<string, string>;
819
819
  }
820
- declare const createListMetricsServersTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$5) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string>;
820
+ declare const createListMetricsServersTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$5) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string, "list_metrics_servers">;
821
821
 
822
822
  interface CreateMetricsToolParams$4 {
823
823
  serverKeys: string[];
824
824
  serverDescriptions?: Record<string, string>;
825
825
  }
826
- declare const createListMetricsDataSourcesTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$4) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string>;
826
+ declare const createListMetricsDataSourcesTool: ({ serverKeys, serverDescriptions }: CreateMetricsToolParams$4) => langchain.DynamicStructuredTool<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, {}, {}, string, "list_metrics_datasources">;
827
827
 
828
828
  interface CreateMetricsToolParams$3 {
829
829
  serverKeys: string[];
@@ -844,7 +844,7 @@ declare const createQueryMetricsListTool: ({ serverKeys, serverDescriptions }: C
844
844
  }, {
845
845
  serverKey?: string | undefined;
846
846
  datasourceIds?: string[] | undefined;
847
- }, string>;
847
+ }, string, "query_metrics_list">;
848
848
 
849
849
  interface CreateMetricsToolParams$2 {
850
850
  serverKeys: string[];
@@ -870,7 +870,7 @@ declare const createQueryMetricDefinitionTool: ({ serverKeys, serverDescriptions
870
870
  metricName: string;
871
871
  serverKey?: string | undefined;
872
872
  datasourceId?: string | undefined;
873
- }, string>;
873
+ }, string, "query_metric_definition">;
874
874
 
875
875
  interface CreateMetricsToolParams$1 {
876
876
  serverKeys: string[];
@@ -939,7 +939,7 @@ declare const createQuerySemanticMetricDataTool: ({ serverKeys, serverDescriptio
939
939
  operator: string;
940
940
  }[] | undefined;
941
941
  limit?: number | undefined;
942
- }, string>;
942
+ }, string, "query_semantic_metric_data">;
943
943
 
944
944
  interface CreateTablesToolParams {
945
945
  serverKeys: string[];
@@ -960,7 +960,7 @@ declare const createQueryTablesListTool: ({ serverKeys, serverDescriptions }: Cr
960
960
  }, {
961
961
  serverKey?: string | undefined;
962
962
  datasourceIds?: string[] | undefined;
963
- }, string>;
963
+ }, string, "query_tables_list">;
964
964
 
965
965
  interface CreateTableToolParams {
966
966
  serverKeys: string[];
@@ -986,7 +986,7 @@ declare const createQueryTableDefinitionTool: ({ serverKeys, serverDescriptions
986
986
  tableName: string;
987
987
  serverKey?: string | undefined;
988
988
  datasourceId?: string | undefined;
989
- }, string>;
989
+ }, string, "query_table_definition">;
990
990
 
991
991
  interface CreateMetricsToolParams {
992
992
  serverKeys: string[];
@@ -1022,7 +1022,7 @@ declare const createExecuteSqlQueryTool: ({ serverKeys, serverDescriptions }: Cr
1022
1022
  serverKey?: string | undefined;
1023
1023
  datasourceId?: string | undefined;
1024
1024
  limit?: number | undefined;
1025
- }, string>;
1025
+ }, string, "execute_sql_query">;
1026
1026
 
1027
1027
  interface SandboxManagerProtocol {
1028
1028
  getBaseURL(): string;