@inkeep/agents-core 0.0.0-dev-20260127214229 → 0.0.0-dev-20260128035734

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.
@@ -677,7 +677,7 @@ const dataset = pgTable("dataset", {
677
677
  */
678
678
  const datasetItem = pgTable("dataset_item", {
679
679
  ...projectScoped,
680
- datasetId: text("dataset_id").notNull(),
680
+ datasetId: varchar("dataset_id", { length: 256 }).notNull(),
681
681
  input: jsonb("input").$type().notNull(),
682
682
  expectedOutput: jsonb("expected_output").$type(),
683
683
  simulationAgent: jsonb("simulation_agent").$type(),
@@ -719,7 +719,7 @@ const evaluator = pgTable("evaluator", {
719
719
  const datasetRunConfig = pgTable("dataset_run_config", {
720
720
  ...projectScoped,
721
721
  ...uiProperties,
722
- datasetId: text("dataset_id").notNull(),
722
+ datasetId: varchar("dataset_id", { length: 256 }).notNull(),
723
723
  ...timestamps
724
724
  }, (table) => [
725
725
  primaryKey({ columns: [
@@ -784,8 +784,8 @@ const evaluationSuiteConfig = pgTable("evaluation_suite_config", {
784
784
  */
785
785
  const evaluationSuiteConfigEvaluatorRelations = pgTable("evaluation_suite_config_evaluator_relations", {
786
786
  ...projectScoped,
787
- evaluationSuiteConfigId: text("evaluation_suite_config_id").notNull(),
788
- evaluatorId: text("evaluator_id").notNull(),
787
+ evaluationSuiteConfigId: varchar("evaluation_suite_config_id", { length: 256 }).notNull(),
788
+ evaluatorId: varchar("evaluator_id", { length: 256 }).notNull(),
789
789
  ...timestamps
790
790
  }, (table) => [
791
791
  primaryKey({
@@ -832,8 +832,8 @@ const evaluationSuiteConfigEvaluatorRelations = pgTable("evaluation_suite_config
832
832
  */
833
833
  const evaluationRunConfigEvaluationSuiteConfigRelations = pgTable("evaluation_run_config_evaluation_suite_config_relations", {
834
834
  ...projectScoped,
835
- evaluationRunConfigId: text("evaluation_run_config_id").notNull(),
836
- evaluationSuiteConfigId: text("evaluation_suite_config_id").notNull(),
835
+ evaluationRunConfigId: varchar("evaluation_run_config_id", { length: 256 }).notNull(),
836
+ evaluationSuiteConfigId: varchar("evaluation_suite_config_id", { length: 256 }).notNull(),
837
837
  ...timestamps
838
838
  }, (table) => [
839
839
  primaryKey({
@@ -934,8 +934,8 @@ const evaluationJobConfig = pgTable("evaluation_job_config", {
934
934
  */
935
935
  const evaluationJobConfigEvaluatorRelations = pgTable("evaluation_job_config_evaluator_relations", {
936
936
  ...projectScoped,
937
- evaluationJobConfigId: text("evaluation_job_config_id").notNull(),
938
- evaluatorId: text("evaluator_id").notNull(),
937
+ evaluationJobConfigId: varchar("evaluation_job_config_id", { length: 256 }).notNull(),
938
+ evaluatorId: varchar("evaluator_id", { length: 256 }).notNull(),
939
939
  ...timestamps
940
940
  }, (table) => [
941
941
  primaryKey({
@@ -1222,8 +1222,8 @@ const subAgentTeamAgentRelationsRelations = relations(subAgentTeamAgentRelations
1222
1222
  */
1223
1223
  const datasetRunConfigAgentRelations = pgTable("dataset_run_config_agent_relations", {
1224
1224
  ...projectScoped,
1225
- datasetRunConfigId: text("dataset_run_config_id").notNull(),
1226
- agentId: text("agent_id").notNull(),
1225
+ datasetRunConfigId: varchar("dataset_run_config_id", { length: 256 }).notNull(),
1226
+ agentId: varchar("agent_id", { length: 256 }).notNull(),
1227
1227
  ...timestamps
1228
1228
  }, (table) => [
1229
1229
  primaryKey({ columns: [