13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
export interface SkillInvocation {
|
|
timestamp: string;
|
|
session_id: string;
|
|
skill: string;
|
|
source: string;
|
|
}
|
|
|
|
export interface SkillsMetrics {
|
|
totalInvocations: number;
|
|
uniqueSkills: string[];
|
|
lastSkill: string | null;
|
|
}
|