@flutchai/flutch-sdk 0.6.0 → 0.6.2
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.cjs +3566 -3256
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3569 -3259
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -328,6 +328,7 @@ interface IGraphResponsePayload {
|
|
|
328
328
|
text: string;
|
|
329
329
|
attachments?: IAttachment[];
|
|
330
330
|
reasoningChains?: IReasoningChain[];
|
|
331
|
+
contentChains?: IContentChain[];
|
|
331
332
|
metadata: {
|
|
332
333
|
usageMetrics: IUsageMetrics;
|
|
333
334
|
[key: string]: any;
|
|
@@ -1474,6 +1475,7 @@ declare class UniversalGraphService implements IGraphService {
|
|
|
1474
1475
|
attachments: any;
|
|
1475
1476
|
metadata: any;
|
|
1476
1477
|
reasoningChains: any;
|
|
1478
|
+
contentChains: any;
|
|
1477
1479
|
}>;
|
|
1478
1480
|
healthCheck(): Promise<boolean>;
|
|
1479
1481
|
cancelGeneration(requestId: string): Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -328,6 +328,7 @@ interface IGraphResponsePayload {
|
|
|
328
328
|
text: string;
|
|
329
329
|
attachments?: IAttachment[];
|
|
330
330
|
reasoningChains?: IReasoningChain[];
|
|
331
|
+
contentChains?: IContentChain[];
|
|
331
332
|
metadata: {
|
|
332
333
|
usageMetrics: IUsageMetrics;
|
|
333
334
|
[key: string]: any;
|
|
@@ -1474,6 +1475,7 @@ declare class UniversalGraphService implements IGraphService {
|
|
|
1474
1475
|
attachments: any;
|
|
1475
1476
|
metadata: any;
|
|
1476
1477
|
reasoningChains: any;
|
|
1478
|
+
contentChains: any;
|
|
1477
1479
|
}>;
|
|
1478
1480
|
healthCheck(): Promise<boolean>;
|
|
1479
1481
|
cancelGeneration(requestId: string): Promise<void>;
|