Three practical examples showing core SDK capabilities: - **bug-fixer**: Find and fix bugs, remembers codebase patterns - **release-notes**: Generate release notes from git commits - **file-organizer**: Organize directories, learns preferences Each example uses agent persistence (getOrCreateAgent pattern) so the agent remembers context across sessions - the key Letta differentiator. 🤖 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta <noreply@letta.com>
17 lines
269 B
TypeScript
17 lines
269 B
TypeScript
/**
|
|
* Release Notes Generator Types
|
|
*/
|
|
|
|
export interface ReleaseNotesState {
|
|
agentId: string | null;
|
|
releasesGenerated: number;
|
|
}
|
|
|
|
export interface ReleaseNotesConfig {
|
|
model: string;
|
|
}
|
|
|
|
export const DEFAULT_CONFIG: ReleaseNotesConfig = {
|
|
model: 'sonnet',
|
|
};
|