@cline/shared 0.0.43 → 0.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.d.ts +1 -1
- package/dist/index.browser.js +14 -14
- package/dist/index.d.ts +1 -1
- package/dist/index.js +29 -29
- package/dist/llms/ai-sdk-format.d.ts +1 -0
- package/package.json +1 -1
|
@@ -44,6 +44,7 @@ export interface AiSdkFormatterMessage {
|
|
|
44
44
|
role: AiSdkFormatterMessageRole;
|
|
45
45
|
content: string | AiSdkFormatterPart[];
|
|
46
46
|
}
|
|
47
|
+
export declare const EMPTY_CONTENT_TEXT = "ERROR: EMPTY CONTENT";
|
|
47
48
|
export type AiSdkMessagePart = Record<string, unknown>;
|
|
48
49
|
export type AiSdkMessage = {
|
|
49
50
|
role: "system" | "user" | "assistant" | "tool";
|