adding the first version of the presentation and the initial attempt at the .meetings script
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
// ==========================================
|
||||
// TYPE DEFINITIONS
|
||||
// ==========================================
|
||||
|
||||
export interface Slide {
|
||||
id: number;
|
||||
title: string;
|
||||
subtitle?: string;
|
||||
points?: string[];
|
||||
content?: string;
|
||||
category: string;
|
||||
}
|
||||
|
||||
export interface ProcurementSpec {
|
||||
machineType: string;
|
||||
ramType: string;
|
||||
bandWidth: string;
|
||||
modelGoal: string;
|
||||
verdict: string;
|
||||
setupTools: string;
|
||||
purchaseTip: string;
|
||||
}
|
||||
|
||||
export type BudgetType = 'existing' | 'budget' | 'pro' | 'enterprise';
|
||||
export type GoalType = 'writing' | 'rag' | 'agents';
|
||||
export type QuantLevel = 'FP16' | 'Q8_0' | 'Q4_K_M' | 'Q2_K';
|
||||
export type Slide6Tab = 'hardware' | 'tasks';
|
||||
|
||||
export interface ParsedData {
|
||||
id: string;
|
||||
name: string;
|
||||
age: string;
|
||||
region: string;
|
||||
status: string;
|
||||
}
|
||||
|
||||
export interface LogSequence {
|
||||
text: string;
|
||||
delay: number;
|
||||
}
|
||||
Reference in New Issue
Block a user