feat: auto-detecting base variant with LLM

This commit is contained in:
John Yeo
2025-06-26 12:33:17 +01:00
parent 29ab4b23a2
commit ecb1f5fbbf
56 changed files with 1018 additions and 489 deletions

View File

@@ -1,4 +1,5 @@
import { z } from "zod";
import { Feature } from "../../featureModels/featureModels.js";
export const EntitySchema = z.object({
id: z.string(),
@@ -25,5 +26,8 @@ export const EntityDataSchema = z.object({
});
export type Entity = z.infer<typeof EntitySchema>;
export type EntityWithFeature = Entity & {
feature: Feature;
};
export type CreateEntity = z.infer<typeof CreateEntitySchema>;
export type EntityData = z.infer<typeof EntityDataSchema>;