| 12345678910111213141516171819202122232425262728293031323334353637 |
- export interface FFBProduction {
- _id?: string;
- productionDate: Date;
- site: {
- id: string;
- name: string;
- };
- phase: {
- id: string;
- name: string;
- };
- block: {
- id: string;
- name: string;
- };
- weight: number;
- weightUom: string;
- quantity: number;
- quantityUom: string;
- remarks: string;
- }
- export interface ThoughtPayload {
- node: string;
- status: 'processing' | 'completed' | 'error';
- message?: string; // Human-readable status (e.g., "Analyzing intent...")
- context?: any;
- query?: any;
- filter?: any;
- pipeline?: any;
- results?: any;
- resultsCount?: number;
- dataContextLength?: number;
- input?: any; // The raw data going IN
- output?: any; // The data coming OUT (replacing 'result', 'results', 'pipeline')
- metadata?: Record<string, any>; // For extra stuff like resultsCount or contextLength
- }
|