Fixed timestamp breaking api calls
All checks were successful
Publish Library / Build NPM Project (push) Successful in 34s
Publish Library / Tag Version (push) Successful in 8s

This commit is contained in:
2025-12-16 12:56:56 -05:00
parent 1a0351aeef
commit 0730f5f3f9
5 changed files with 26 additions and 28 deletions

View File

@@ -12,7 +12,7 @@ export type LLMMessage = {
/** Message content */
content: string | any;
/** Timestamp */
timestamp: number;
timestamp?: number;
} | {
/** Tool call */
role: 'tool';
@@ -27,7 +27,7 @@ export type LLMMessage = {
/** Tool error */
error: undefined | string;
/** Timestamp */
timestamp: number;
timestamp?: number;
}
export type LLMOptions = {