adding the first version of the presentation and the initial attempt at the .meetings script

This commit is contained in:
itsamejms
2026-06-07 16:13:10 +01:00
parent 41f99557cc
commit 05c7d6aef3
34 changed files with 7623 additions and 1 deletions
+40
View File
@@ -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;
}