(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,34 @@
import {
Datagrid,
List,
NumberField,
SelectArrayInput,
SelectField,
TextField,
TextInput,
} from "react-admin";
import { ResourceListActions } from "../shared/ListActions";
import { categoryPartChoices } from "../shared/enums";
const partFilters = [
<TextInput key="q" source="q" label="Search" alwaysOn />,
<SelectArrayInput
key="categories"
source="categories"
label="Category"
choices={categoryPartChoices}
/>,
<TextInput key="serialNumber" source="serialNumber" label="Serial number" />,
];
export const PartList = () => (
<List
filters={partFilters}
actions={<ResourceListActions filters={partFilters} />}
>
<Datagrid rowClick="show">
<TextField source="name" />
<SelectField source="categories" choices={categoryPartChoices} />
<NumberField source="price" />
<TextField source="serialNumber" />
</Datagrid>
</List>
);