feat(sessions): Integrate chat recording into GeminiChat (#6721)

This commit is contained in:
bl-ue
2025-09-02 23:29:07 -06:00
committed by GitHub
parent c9bd3ecf6a
commit b5dd6f9ea6
17 changed files with 515 additions and 72 deletions

View File

@@ -204,7 +204,7 @@ function toContent(content: ContentUnion): Content {
};
}
function toParts(parts: PartUnion[]): Part[] {
export function toParts(parts: PartUnion[]): Part[] {
return parts.map(toPart);
}