@hermespilot/link 0.3.5 → 0.3.6
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/{chunk-ZQO7TU7G.js → chunk-773L37RF.js} +1375 -1074
- package/dist/cli/index.js +1 -1
- package/dist/http/app.d.ts +2 -1
- package/dist/http/app.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
package/dist/http/app.d.ts
CHANGED
|
@@ -118,7 +118,7 @@ interface ConversationRuntimeMetadata {
|
|
|
118
118
|
used_tokens?: number;
|
|
119
119
|
window_tokens?: number;
|
|
120
120
|
usage_percent?: number;
|
|
121
|
-
source: 'explicit' | 'unknown';
|
|
121
|
+
source: 'explicit' | 'estimated' | 'unknown';
|
|
122
122
|
updated_at?: string;
|
|
123
123
|
};
|
|
124
124
|
}
|
|
@@ -279,6 +279,7 @@ interface LinkRun {
|
|
|
279
279
|
context_tokens?: number;
|
|
280
280
|
context_window?: number;
|
|
281
281
|
usage_percent?: number;
|
|
282
|
+
context_source?: 'explicit' | 'estimated';
|
|
282
283
|
};
|
|
283
284
|
}
|
|
284
285
|
interface SendMessageInput {
|
package/dist/http/app.js
CHANGED