@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.
- package/dist/auth/auth-schema.d.ts +104 -104
- package/dist/auth/auth-validation-schemas.d.ts +129 -129
- package/dist/client-exports.d.ts +0 -1
- package/dist/data-access/manage/functionTools.d.ts +2 -2
- package/dist/data-access/runtime/conversations.d.ts +7 -7
- package/dist/data-access/runtime/tasks.d.ts +3 -3
- package/dist/db/manage/manage-schema.d.ts +417 -397
- package/dist/db/manage/manage-schema.js +10 -10
- package/dist/db/runtime/runtime-schema.d.ts +181 -181
- package/dist/validation/dolt-schemas.d.ts +1 -1
- package/dist/validation/schemas.d.ts +139 -99
- package/drizzle/manage/0005_silent_shatterstar.sql +53 -0
- package/drizzle/manage/meta/0005_snapshot.json +3141 -0
- package/drizzle/manage/meta/_journal.json +7 -0
- package/package.json +1 -1
|
@@ -677,7 +677,7 @@ const dataset = pgTable("dataset", {
|
|
|
677
677
|
*/
|
|
678
678
|
const datasetItem = pgTable("dataset_item", {
|
|
679
679
|
...projectScoped,
|
|
680
|
-
datasetId:
|
|
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:
|
|
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:
|
|
788
|
-
evaluatorId:
|
|
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:
|
|
836
|
-
evaluationSuiteConfigId:
|
|
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:
|
|
938
|
-
evaluatorId:
|
|
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:
|
|
1226
|
-
agentId:
|
|
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: [
|