@promptbook/browser
Advanced tools
Comparing version 0.66.0-4 to 0.66.0-5
@@ -8,3 +8,3 @@ import { spaceTrim } from 'spacetrim'; | ||
*/ | ||
var PROMPTBOOK_VERSION = '0.66.0-3'; | ||
var PROMPTBOOK_VERSION = '0.66.0-4'; | ||
// TODO: !!!! List here all the versions and annotate + put into script | ||
@@ -11,0 +11,0 @@ |
@@ -50,3 +50,3 @@ import { PROMPTBOOK_VERSION } from '../version'; | ||
import { prepareKnowledgeFromMarkdown } from '../knowledge/prepare-knowledge/markdown/prepareKnowledgeFromMarkdown'; | ||
import { $llmToolsConfigurationBoilerplatesRegister } from '../llm-providers/_common/$llmToolsConfigurationBoilerplatesRegister'; | ||
import { $llmToolsMetadataRegister } from '../llm-providers/_common/$llmToolsMetadataRegister'; | ||
import { $llmToolsRegister } from '../llm-providers/_common/$llmToolsRegister'; | ||
@@ -57,5 +57,5 @@ import { createLlmToolsFromConfiguration } from '../llm-providers/_common/createLlmToolsFromConfiguration'; | ||
import { limitTotalUsage } from '../llm-providers/_common/utils/count-total-usage/limitTotalUsage'; | ||
import { _AnthropicClaudeConfigurationRegistration } from '../llm-providers/anthropic-claude/register-configuration'; | ||
import { _AnthropicClaudeMetadataRegistration } from '../llm-providers/anthropic-claude/register-configuration'; | ||
import { joinLlmExecutionTools } from '../llm-providers/multiple/joinLlmExecutionTools'; | ||
import { _OpenAiConfigurationRegistration } from '../llm-providers/openai/register-configuration'; | ||
import { _OpenAiMetadataRegistration } from '../llm-providers/openai/register-configuration'; | ||
import { preparePersona } from '../personas/preparePersona'; | ||
@@ -122,3 +122,3 @@ import { isPipelinePrepared } from '../prepare/isPipelinePrepared'; | ||
export { prepareKnowledgeFromMarkdown }; | ||
export { $llmToolsConfigurationBoilerplatesRegister }; | ||
export { $llmToolsMetadataRegister }; | ||
export { $llmToolsRegister }; | ||
@@ -129,5 +129,5 @@ export { createLlmToolsFromConfiguration }; | ||
export { limitTotalUsage }; | ||
export { _AnthropicClaudeConfigurationRegistration }; | ||
export { _AnthropicClaudeMetadataRegistration }; | ||
export { joinLlmExecutionTools }; | ||
export { _OpenAiConfigurationRegistration }; | ||
export { _OpenAiMetadataRegistration }; | ||
export { preparePersona }; | ||
@@ -134,0 +134,0 @@ export { isPipelinePrepared }; |
@@ -35,2 +35,4 @@ import type { PipelineCollection } from '../collection/PipelineCollection'; | ||
import type { LlmToolsConfiguration } from '../llm-providers/_common/LlmToolsConfiguration'; | ||
import type { LlmToolsMetadata } from '../llm-providers/_common/LlmToolsMetadata'; | ||
import type { LlmToolsOptions } from '../llm-providers/_common/LlmToolsOptions'; | ||
import type { CacheItem } from '../llm-providers/_common/utils/cache/CacheItem'; | ||
@@ -253,2 +255,4 @@ import type { CacheLlmToolsOptions } from '../llm-providers/_common/utils/cache/CacheLlmToolsOptions'; | ||
export type { LlmToolsConfiguration }; | ||
export type { LlmToolsMetadata }; | ||
export type { LlmToolsOptions }; | ||
export type { CacheItem }; | ||
@@ -255,0 +259,0 @@ export type { CacheLlmToolsOptions }; |
@@ -9,3 +9,3 @@ import type { Command as Program } from 'commander'; | ||
/** | ||
* TODO: [π₯] !!! Allow `ptbk make` without llm tools | ||
* TODO: [π₯] !!! Allow `ptbk make` without configuring any llm tools | ||
* TODO: Maybe remove this command - "about" command should be enough? | ||
@@ -12,0 +12,0 @@ * TODO: [0] DRY Javascript and typescript - Maybe make ONLY typescript and for javascript just remove types |
@@ -1,1 +0,1 @@ | ||
export {}; | ||
import '../../../_packages/core.index'; |
@@ -1,4 +0,4 @@ | ||
export {}; | ||
import '../../../_packages/core.index'; | ||
/** | ||
* TODO: [π] Maybe test all file in samples (not just 10-simple.md) | ||
*/ |
@@ -1,1 +0,1 @@ | ||
export {}; | ||
import '../../../_packages/core.index'; |
@@ -6,3 +6,3 @@ import type { LlmExecutionTools } from '../../execution/LlmExecutionTools'; | ||
* | ||
* TODO: !!!!!! Not centralized - register each provider to each package | ||
* TODO: !!!!!! Remove EXECUTION_TOOLS_CLASSES and use $llmToolsRegister instead | ||
* | ||
@@ -9,0 +9,0 @@ * @private internal type for `createLlmToolsFromConfiguration` |
import type { string_title } from '../../types/typeAliases'; | ||
import type { TODO_object } from '../../utils/organization/TODO_object'; | ||
import type { Registered } from '../../utils/Register'; | ||
import type { LlmToolsOptions } from './LlmToolsOptions'; | ||
/** | ||
* @@@ | ||
* | ||
* @@@ `LlmToolsMetadata` vs `LlmToolsConfiguration` vs `LlmToolsOptions` (vs `Registered`) | ||
*/ | ||
@@ -15,7 +17,7 @@ export type LlmToolsConfiguration = Array<Registered & { | ||
*/ | ||
options: TODO_object; | ||
options: LlmToolsOptions; | ||
}>; | ||
/** | ||
* TODO: [π§ ][π°] `title` is redundant BUT maybe allow each provider pass it's own title for tracking purposes | ||
* TODO: [π§ ] Maybe add option for `constructorName` instead of `className` | ||
* TODO: Maybe instead of `LlmToolsConfiguration[number]` make `LlmToolsConfigurationItem` | ||
*/ |
@@ -8,2 +8,2 @@ /** | ||
*/ | ||
export declare const _AnthropicClaudeConfigurationRegistration: void; | ||
export declare const _AnthropicClaudeMetadataRegistration: void; |
@@ -11,2 +11,2 @@ /** | ||
* TODO: [πΆ] Naming "constructor" vs "creator" vs "factory" | ||
*/ | ||
*/ |
@@ -8,2 +8,2 @@ /** | ||
*/ | ||
export declare const _OpenAiConfigurationRegistration: void; | ||
export declare const _OpenAiMetadataRegistration: void; |
@@ -11,2 +11,2 @@ /** | ||
* TODO: [πΆ] Naming "constructor" vs "creator" vs "factory" | ||
*/ | ||
*/ |
@@ -1,1 +0,1 @@ | ||
export {}; | ||
import '../../src/_packages/core.index'; |
{ | ||
"name": "@promptbook/browser", | ||
"version": "0.66.0-4", | ||
"version": "0.66.0-5", | ||
"description": "Supercharge your use of large language models", | ||
@@ -50,3 +50,3 @@ "private": false, | ||
"peerDependencies": { | ||
"@promptbook/core": "0.66.0-4" | ||
"@promptbook/core": "0.66.0-5" | ||
}, | ||
@@ -53,0 +53,0 @@ "dependencies": { |
@@ -11,3 +11,3 @@ (function (global, factory) { | ||
*/ | ||
var PROMPTBOOK_VERSION = '0.66.0-3'; | ||
var PROMPTBOOK_VERSION = '0.66.0-4'; | ||
// TODO: !!!! List here all the versions and annotate + put into script | ||
@@ -14,0 +14,0 @@ |
440668
459
8466