@mindstudio-ai/remy 0.1.177 → 0.1.179
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/headless.d.ts +6 -0
- package/dist/headless.js +307 -80
- package/dist/index.js +327 -83
- package/package.json +1 -1
package/dist/headless.d.ts
CHANGED
|
@@ -131,6 +131,12 @@ declare class HeadlessSession {
|
|
|
131
131
|
*/
|
|
132
132
|
private kickDrain;
|
|
133
133
|
private handleClear;
|
|
134
|
+
/** Archive the current session and seed a fresh one with the given
|
|
135
|
+
* per-agent model overrides. Models are immutable for the life of a
|
|
136
|
+
* session — this is the only way to change them. Omitting `models`
|
|
137
|
+
* (or sending an empty object) resets to "use server defaults for
|
|
138
|
+
* every agent". */
|
|
139
|
+
private handleNewSession;
|
|
134
140
|
/** Cancel the running turn and drain the queue. Returns the drained items. */
|
|
135
141
|
private handleCancel;
|
|
136
142
|
private handleStdinLine;
|