refactor: use conversations (#475)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-01-13 16:40:59 -08:00
committed by GitHub
parent 3615247d14
commit ef7d8c98df
26 changed files with 1572 additions and 168 deletions

View File

@@ -49,7 +49,7 @@ export function isProjectBlock(label: string): boolean {
/**
* Parse frontmatter and content from an .mdx file
*/
function parseMdxFrontmatter(content: string): {
export function parseMdxFrontmatter(content: string): {
frontmatter: Record<string, string>;
body: string;
} {