@promptbook/node 0.65.0-2 → 0.65.0-4
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/esm/index.es.js +245 -109
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/anthropic-claude.index.d.ts +6 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/node.index.d.ts +0 -2
- package/esm/typings/src/_packages/remote-client.index.d.ts +2 -2
- package/esm/typings/src/_packages/types.index.d.ts +16 -2
- package/esm/typings/src/llm-providers/_common/config.d.ts +3 -3
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +5 -3
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts +23 -2
- package/esm/typings/src/llm-providers/anthropic-claude/createAnthropicClaudeExecutionTools.d.ts +13 -0
- package/esm/typings/src/llm-providers/anthropic-claude/playground/playground.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +3 -2
- package/esm/typings/src/llm-providers/remote/interfaces/Promptbook_Server_Error.d.ts +2 -2
- package/esm/typings/src/llm-providers/remote/interfaces/Promptbook_Server_Progress.d.ts +2 -2
- package/esm/typings/src/llm-providers/remote/interfaces/Promptbook_Server_Request.d.ts +14 -2
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteLlmExecutionToolsOptions.d.ts +49 -0
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteServerOptions.d.ts +23 -2
- package/esm/typings/src/llm-providers/remote/playground/playground.d.ts +2 -0
- package/esm/typings/src/llm-providers/remote/startRemoteServer.d.ts +2 -1
- package/esm/typings/src/types/typeAliases.d.ts +6 -0
- package/package.json +3 -2
- package/umd/index.umd.js +247 -113
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionToolsOptions.d.ts +0 -26
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { CommonExecutionToolsOptions } from '../../execution/CommonExecutionToolsOptions';
|
|
2
|
-
import type { client_id } from '../../types/typeAliases';
|
|
3
|
-
import type { string_uri } from '../../types/typeAliases';
|
|
4
|
-
/**
|
|
5
|
-
* Options for `RemoteLlmExecutionTools`
|
|
6
|
-
*
|
|
7
|
-
* @public exported from `@promptbook/remote-client`
|
|
8
|
-
*/
|
|
9
|
-
export type RemoteLlmExecutionToolsOptions = CommonExecutionToolsOptions & {
|
|
10
|
-
/**
|
|
11
|
-
* URL of the remote PROMPTBOOK server
|
|
12
|
-
* On this server will be connected to the socket.io server
|
|
13
|
-
*/
|
|
14
|
-
readonly remoteUrl: URL;
|
|
15
|
-
/**
|
|
16
|
-
* Path for the Socket.io server to listen
|
|
17
|
-
*
|
|
18
|
-
* @default '/socket.io'
|
|
19
|
-
* @example '/promptbook/socket.io'
|
|
20
|
-
*/
|
|
21
|
-
readonly path: string_uri;
|
|
22
|
-
/**
|
|
23
|
-
* Your client ID
|
|
24
|
-
*/
|
|
25
|
-
readonly clientId: client_id;
|
|
26
|
-
};
|