(llm-first): context budget, validation, and eval harness, orchestration general-prompt
This commit is contained in:
15
client/src/resources/part/PartCreate.tsx
Normal file
15
client/src/resources/part/PartCreate.tsx
Normal 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>
|
||||
);
|
||||
Reference in New Issue
Block a user