(llm-first): context budget, validation, and eval harness, orchestration general-prompt

This commit is contained in:
MaKarin
2026-04-03 14:17:21 +03:00
parent 79c9589658
commit c42a88dff6
189 changed files with 15538 additions and 9109 deletions

View File

@@ -0,0 +1,15 @@
import { Create, NumberInput, SelectInput, SimpleForm } from "react-admin";
import { categoryPartChoices } from "../shared/enums";
import { PlainInput } from "../shared/inputs";
export const PartCreate = () => (
<Create>
<SimpleForm>
<PlainInput source="name" required />
<SelectInput source="categories" choices={categoryPartChoices} />
<NumberInput source="price" />
<PlainInput source="description" multiline />
<PlainInput source="serialNumber" />
</SimpleForm>
</Create>
);