@promptbook/node 0.65.0-6 â 0.65.0
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 +5 -6
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +0 -1
- package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts +0 -2
- package/esm/typings/src/llm-providers/anthropic-claude/createAnthropicClaudeExecutionTools.d.ts +3 -2
- package/esm/typings/src/llm-providers/anthropic-claude/playground/playground.d.ts +1 -1
- package/esm/typings/src/llm-providers/remote/RemoteLlmExecutionTools.d.ts +0 -1
- package/esm/typings/src/llm-providers/remote/interfaces/RemoteLlmExecutionToolsOptions.d.ts +0 -3
- package/esm/typings/src/llm-providers/remote/startRemoteServer.d.ts +0 -1
- package/package.json +2 -2
- package/umd/index.umd.js +5 -6
- package/umd/index.umd.js.map +1 -1
|
@@ -49,7 +49,6 @@ export declare class AnthropicClaudeExecutionTools implements LlmExecutionTools
|
|
|
49
49
|
* TODO: Maybe Create some common util for callChatModel and callCompletionModel
|
|
50
50
|
* TODO: Maybe make custom OpenaiError
|
|
51
51
|
* TODO: [ð§ ][ð] Maybe use `isDeterministic` from options
|
|
52
|
-
* TODO: [ð] !!!!!! Auto use anonymous server in browser
|
|
53
52
|
* TODO: [ð§ ][ð°] Allow to pass `title` for tracking purposes
|
|
54
53
|
* TODO: [ð
] Maybe instead of `RemoteLlmExecutionToolsOptions` use `proxyWithAnonymousRemoteServer` (if implemented)
|
|
55
54
|
*/
|
package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionToolsOptions.d.ts
CHANGED
|
@@ -27,7 +27,5 @@ export type AnthropicClaudeExecutionToolsProxiedOptions = CommonExecutionToolsOp
|
|
|
27
27
|
isProxied: true;
|
|
28
28
|
} & Pick<RemoteLlmExecutionToolsOptions, 'remoteUrl' | 'path'>;
|
|
29
29
|
/**
|
|
30
|
-
* TODO: [ð] Default remote remoteUrl and path for anonymous server
|
|
31
|
-
* TODO: [ð] !!!!!! Auto add WebGPT / Promptbook.studio anonymous server in browser
|
|
32
30
|
* TODO: [ð§ ][ðĪš] Detecting `user`
|
|
33
31
|
*/
|
package/esm/typings/src/llm-providers/anthropic-claude/createAnthropicClaudeExecutionTools.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import type { AnthropicClaudeExecutionToolsOptions } from './AnthropicClaudeExec
|
|
|
8
8
|
*/
|
|
9
9
|
export declare function createAnthropicClaudeExecutionTools(options: AnthropicClaudeExecutionToolsOptions): AnthropicClaudeExecutionTools | RemoteLlmExecutionTools;
|
|
10
10
|
/**
|
|
11
|
-
* TODO:
|
|
12
|
-
* TODO:
|
|
11
|
+
* TODO: [ð§ ] !!!! Make anonymous this with all LLM providers
|
|
12
|
+
* TODO: [ð§ ] !!!! Maybe change all `new AnthropicClaudeExecutionTools` -> `createAnthropicClaudeExecutionTools` in manual
|
|
13
|
+
* TODO: [ð§ ] Maybe auto-detect usage in browser and determine default value of `isProxied`
|
|
13
14
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ts-node
|
|
2
2
|
export {};
|
|
3
3
|
/**
|
|
4
|
-
* TODO:
|
|
4
|
+
* TODO: !!! Playground with WebGPT / Promptbook.studio anonymous server
|
|
5
5
|
* TODO: !!! Test here that `systemMessage`, `temperature` and `seed` are working correctly
|
|
6
6
|
*/
|
|
@@ -50,7 +50,6 @@ export declare class RemoteLlmExecutionTools implements LlmExecutionTools {
|
|
|
50
50
|
listModels(): Promise<Array<AvailableModel>>;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
|
-
* TODO: [ð] !!!!!! Default remote remoteUrl and path for anonymous server
|
|
54
53
|
* TODO: [ð] Allow to list compatible models with each variant
|
|
55
54
|
* TODO: [ðŊ] RemoteLlmExecutionTools should extend Destroyable and implement IDestroyable
|
|
56
55
|
* TODO: [ð§ ][ð°] Allow to pass `title` for tracking purposes
|
|
@@ -11,7 +11,6 @@ import type { RemoteServerOptions } from './interfaces/RemoteServerOptions';
|
|
|
11
11
|
*/
|
|
12
12
|
export declare function startRemoteServer(options: RemoteServerOptions): IDestroyable;
|
|
13
13
|
/**
|
|
14
|
-
* TODO: [ð] !!!!!! Add anonymous option
|
|
15
14
|
* TODO: [â] Expose the collection to be able to connect to same collection via createCollectionFromUrl
|
|
16
15
|
* TODO: Handle progress - support streaming
|
|
17
16
|
* TODO: [ðŊ] Do not hang up immediately but wait until client closes OR timeout
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/node",
|
|
3
|
-
"version": "0.65.0
|
|
3
|
+
"version": "0.65.0",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./esm/index.es.js",
|
|
48
48
|
"typings": "./esm/typings/src/_packages/node.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.65.0
|
|
50
|
+
"@promptbook/core": "0.65.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@anthropic-ai/sdk": "0.21.1",
|
package/umd/index.umd.js
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
/**
|
|
38
38
|
* The version of the Promptbook library
|
|
39
39
|
*/
|
|
40
|
-
var PROMPTBOOK_VERSION = '0.65.0-
|
|
40
|
+
var PROMPTBOOK_VERSION = '0.65.0-7';
|
|
41
41
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
42
42
|
|
|
43
43
|
/*! *****************************************************************************
|
|
@@ -712,7 +712,7 @@
|
|
|
712
712
|
});
|
|
713
713
|
}
|
|
714
714
|
|
|
715
|
-
var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.65.0-
|
|
715
|
+
var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.65.0-7",parameters:[{name:"knowledgeContent",description:"Markdown document content",isInput:true,isOutput:false},{name:"knowledgePieces",description:"The knowledge JSON object",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},content:"You are experienced data researcher, extract the important knowledge from the document.\n\n# Rules\n\n- Make pieces of information concise, clear, and easy to understand\n- One piece of information should be approximately 1 paragraph\n- Divide the paragraphs by markdown horizontal lines ---\n- Omit irrelevant information\n- Group redundant information\n- Write just extracted information, nothing else\n\n# The document\n\nTake information from this document:\n\n> {knowledgeContent}",dependentParameterNames:["knowledgeContent"],resultingParameterName:"knowledgePieces"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-knowledge-from-markdown.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-keywords.ptbk.md",promptbookVersion:"0.65.0-7",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"keywords",description:"Keywords separated by comma",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},content:"You are experienced data researcher, detect the important keywords in the document.\n\n# Rules\n\n- Write just keywords separated by comma\n\n# The document\n\nTake information from this document:\n\n> {knowledgePieceContent}",dependentParameterNames:["knowledgePieceContent"],resultingParameterName:"keywords"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-knowledge-keywords.ptbk.md"},{title:"Prepare Title",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-title.ptbk.md",promptbookVersion:"0.65.0-7",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"title",description:"The title of the document",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},content:"You are experienced content creator, write best title for the document.\n\n# Rules\n\n- Write just title, nothing else\n- Title should be concise and clear\n- Write maximum 5 words for the title\n\n# The document\n\n> {knowledgePieceContent}",expectations:{words:{min:1,max:8}},dependentParameterNames:["knowledgePieceContent"],resultingParameterName:"title"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-knowledge-title.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-persona.ptbk.md",promptbookVersion:"0.65.0-7",parameters:[{name:"availableModelNames",description:"List of available model names separated by comma (,)",isInput:true,isOutput:false},{name:"personaDescription",description:"Description of the persona",isInput:true,isOutput:false},{name:"modelRequirements",description:"Specific requirements for the model",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"make-model-requirements",title:"Make modelRequirements",modelRequirements:{modelVariant:"CHAT",modelName:"gpt-4-turbo"},content:"You are experienced AI engineer, you need to create virtual assistant.\nWrite\n\n## Sample\n\n```json\n{\n\"modelName\": \"gpt-4o\",\n\"systemMessage\": \"You are experienced AI engineer and helpfull assistant.\",\n\"temperature\": 0.7\n}\n```\n\n## Instructions\n\n### Option `modelName`\n\nPick from the following models:\n\n- {availableModelNames}\n\n### Option `systemMessage`\n\nThe system message is used to communicate instructions or provide context to the model at the beginning of a conversation. It is displayed in a different format compared to user messages, helping the model understand its role in the conversation. The system message typically guides the model's behavior, sets the tone, or specifies desired output from the model. By utilizing the system message effectively, users can steer the model towards generating more accurate and relevant responses.\n\nFor example:\n\n> You are an experienced AI engineer and helpful assistant.\n\n> You are a friendly and knowledgeable chatbot.\n\n### Option `temperature`\n\nThe sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use log probability to automatically increase the temperature until certain thresholds are hit.\n\nYou can pick a value between 0 and 2. For example:\n\n- `0.1`: Low temperature, extremely conservative and deterministic\n- `0.5`: Medium temperature, balanced between conservative and creative\n- `1.0`: High temperature, creative and bit random\n- `1.5`: Very high temperature, extremely creative and often chaotic and unpredictable\n- `2.0`: Maximum temperature, completely random and unpredictable, for some extreme creative use cases\n\n# The assistant\n\nTake this description of the persona:\n\n> {personaDescription}",expectFormat:"JSON",dependentParameterNames:["availableModelNames","personaDescription"],resultingParameterName:"modelRequirements"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-persona.ptbk.md"}];
|
|
716
716
|
|
|
717
717
|
/**
|
|
718
718
|
* This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
|
|
@@ -6489,7 +6489,6 @@
|
|
|
6489
6489
|
return RemoteLlmExecutionTools;
|
|
6490
6490
|
}());
|
|
6491
6491
|
/**
|
|
6492
|
-
* TODO: [ð] !!!!!! Default remote remoteUrl and path for anonymous server
|
|
6493
6492
|
* TODO: [ð] Allow to list compatible models with each variant
|
|
6494
6493
|
* TODO: [ðŊ] RemoteLlmExecutionTools should extend Destroyable and implement IDestroyable
|
|
6495
6494
|
* TODO: [ð§ ][ð°] Allow to pass `title` for tracking purposes
|
|
@@ -6842,7 +6841,6 @@
|
|
|
6842
6841
|
* TODO: Maybe Create some common util for callChatModel and callCompletionModel
|
|
6843
6842
|
* TODO: Maybe make custom OpenaiError
|
|
6844
6843
|
* TODO: [ð§ ][ð] Maybe use `isDeterministic` from options
|
|
6845
|
-
* TODO: [ð] !!!!!! Auto use anonymous server in browser
|
|
6846
6844
|
* TODO: [ð§ ][ð°] Allow to pass `title` for tracking purposes
|
|
6847
6845
|
* TODO: [ð
] Maybe instead of `RemoteLlmExecutionToolsOptions` use `proxyWithAnonymousRemoteServer` (if implemented)
|
|
6848
6846
|
*/
|
|
@@ -6866,8 +6864,9 @@
|
|
|
6866
6864
|
return new AnthropicClaudeExecutionTools(options);
|
|
6867
6865
|
}
|
|
6868
6866
|
/**
|
|
6869
|
-
* TODO:
|
|
6870
|
-
* TODO:
|
|
6867
|
+
* TODO: [ð§ ] !!!! Make anonymous this with all LLM providers
|
|
6868
|
+
* TODO: [ð§ ] !!!! Maybe change all `new AnthropicClaudeExecutionTools` -> `createAnthropicClaudeExecutionTools` in manual
|
|
6869
|
+
* TODO: [ð§ ] Maybe auto-detect usage in browser and determine default value of `isProxied`
|
|
6871
6870
|
*/
|
|
6872
6871
|
|
|
6873
6872
|
/**
|