feat: LLM-based schedule generation

This commit is contained in:
2026-05-17 15:40:13 +09:00
parent 864f118a9b
commit 90214cec5c
6 changed files with 433 additions and 120 deletions

View File

@@ -15,6 +15,16 @@ describe('Conversation API', () => {
return { messages: ['카페에 있었어.', '너는 뭐해?'] };
},
},
schedule: {
async generateDailySchedule() {
return [
{ startTime: '09:00', endTime: '18:00', activity: 'work', title: 'Work', availabilityMode: 'do-not-disturb' as const },
];
},
async generateMonthlySchedule() {
return [];
},
},
},
});
const space = await persona.ready();