feat(app): add new session manager

This commit is contained in:
ItzCrazyKns
2025-11-20 14:51:17 +05:30
parent f44ad973aa
commit c3830795cb
2 changed files with 51 additions and 0 deletions

View File

@@ -7,3 +7,9 @@ type Chunk = {
content: string;
metadata: Record<string, any>;
};
type Artifact = {
id: string;
type: string;
data: any;
};