@promptbook/anthropic-claude
Advanced tools
Comparing version 0.53.0 to 0.54.0
@@ -5,2 +5,11 @@ import { prettifyPromptbookString } from '../conversion/prettify/prettifyPromptbookString'; | ||
import { validatePromptbookJson } from '../conversion/validation/validatePromptbookJson'; | ||
import { ExpectError } from '../errors/_ExpectError'; | ||
import { PromptbookExecutionError } from '../errors/PromptbookExecutionError'; | ||
import { PromptbookLibraryError } from '../errors/PromptbookLibraryError'; | ||
import { PromptbookLogicError } from '../errors/PromptbookLogicError'; | ||
import { PromptbookNotFoundError } from '../errors/PromptbookNotFoundError'; | ||
import { PromptbookReferenceError } from '../errors/PromptbookReferenceError'; | ||
import { PromptbookSyntaxError } from '../errors/PromptbookSyntaxError'; | ||
import { TemplateError } from '../errors/TemplateError'; | ||
import { UnexpectedError } from '../errors/UnexpectedError'; | ||
import { assertsExecutionSuccessful } from '../execution/assertsExecutionSuccessful'; | ||
@@ -31,1 +40,2 @@ import { createPromptbookExecutor } from '../execution/createPromptbookExecutor'; | ||
export { CallbackInterfaceTools, CallbackInterfaceToolsOptions }; | ||
export { ExpectError, PromptbookExecutionError, PromptbookLibraryError, PromptbookLogicError, PromptbookNotFoundError, PromptbookReferenceError, PromptbookSyntaxError, TemplateError, UnexpectedError, }; |
@@ -26,4 +26,3 @@ import type { CommonExecutionToolsOptions } from '../execution/CommonExecutionToolsOptions'; | ||
/** | ||
* TODO: [🧠][🆔] Is this the best package to export custom errors from? | ||
* TODO: Delete type aliases (from ../types/typeAliases) that are not exported here | ||
*/ |
{ | ||
"name": "@promptbook/anthropic-claude", | ||
"version": "0.53.0", | ||
"version": "0.54.0", | ||
"description": "Library to supercharge your use of large language models", | ||
@@ -51,3 +51,3 @@ "private": false, | ||
"peerDependencies": { | ||
"@promptbook/core": "0.53.0" | ||
"@promptbook/core": "0.54.0" | ||
}, | ||
@@ -54,0 +54,0 @@ "main": "./umd/index.umd.js", |
@@ -5,2 +5,11 @@ import { prettifyPromptbookString } from '../conversion/prettify/prettifyPromptbookString'; | ||
import { validatePromptbookJson } from '../conversion/validation/validatePromptbookJson'; | ||
import { ExpectError } from '../errors/_ExpectError'; | ||
import { PromptbookExecutionError } from '../errors/PromptbookExecutionError'; | ||
import { PromptbookLibraryError } from '../errors/PromptbookLibraryError'; | ||
import { PromptbookLogicError } from '../errors/PromptbookLogicError'; | ||
import { PromptbookNotFoundError } from '../errors/PromptbookNotFoundError'; | ||
import { PromptbookReferenceError } from '../errors/PromptbookReferenceError'; | ||
import { PromptbookSyntaxError } from '../errors/PromptbookSyntaxError'; | ||
import { TemplateError } from '../errors/TemplateError'; | ||
import { UnexpectedError } from '../errors/UnexpectedError'; | ||
import { assertsExecutionSuccessful } from '../execution/assertsExecutionSuccessful'; | ||
@@ -31,1 +40,2 @@ import { createPromptbookExecutor } from '../execution/createPromptbookExecutor'; | ||
export { CallbackInterfaceTools, CallbackInterfaceToolsOptions }; | ||
export { ExpectError, PromptbookExecutionError, PromptbookLibraryError, PromptbookLogicError, PromptbookNotFoundError, PromptbookReferenceError, PromptbookSyntaxError, TemplateError, UnexpectedError, }; |
@@ -26,4 +26,3 @@ import type { CommonExecutionToolsOptions } from '../execution/CommonExecutionToolsOptions'; | ||
/** | ||
* TODO: [🧠][🆔] Is this the best package to export custom errors from? | ||
* TODO: Delete type aliases (from ../types/typeAliases) that are not exported here | ||
*/ |
484594
8146