@opencow-ai/opencow-agent-sdk 0.4.0 → 0.4.1
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/README.md +72 -0
- package/dist/cli.mjs +1259 -1325
- package/dist/client.d.ts +2 -0
- package/dist/client.js +738 -1054
- package/dist/entrypoints/sdk/controlSchemas.d.ts +36 -9
- package/dist/entrypoints/sdk/coreSchemas.d.ts +13 -4
- package/dist/entrypoints/sdk/coreTypes.d.ts +1 -1
- package/dist/entrypoints/sdk/runtimeTypes.d.ts +17 -2
- package/dist/sdk.js +738 -1054
- package/dist/session/sessionStorage.d.ts +29 -4
- package/package.json +9 -7
package/dist/client.d.ts
CHANGED
|
@@ -144,6 +144,8 @@ export declare function unstable_v2_prompt(message: string, options: SDKSessionO
|
|
|
144
144
|
* resources (MCP connections, tool pool, …) are released.
|
|
145
145
|
*/
|
|
146
146
|
export declare function createSession(options: SDKSessionOptions): SDKSession;
|
|
147
|
+
/** @stable */
|
|
148
|
+
export { clearProjectForSession } from 'src/session/sessionStorage.js';
|
|
147
149
|
/**
|
|
148
150
|
* Resume a previously-opened session by id. Not implemented in ε.1 —
|
|
149
151
|
* waits on the SDK session registry (ε.1b). Callers that need resume
|