@promptbook/markdown-utils 0.75.5 → 0.75.9
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 +101 -69
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/types.index.d.ts +0 -2
- package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +1 -1
- package/esm/typings/src/execution/createPipelineExecutor/20-executeTask.d.ts +1 -1
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +1 -1
- package/esm/typings/src/prepare/PrepareAndScrapeOptions.d.ts +6 -4
- package/package.json +1 -1
- package/umd/index.umd.js +101 -69
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/_packages/langtail.index.d.ts +0 -6
- package/esm/typings/src/llm-providers/langtail/LangtailExecutionTools.d.ts +0 -17
- package/esm/typings/src/llm-providers/langtail/LangtailExecutionToolsOptions.d.ts +0 -13
- package/esm/typings/src/llm-providers/langtail/playground/playground.d.ts +0 -5
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION } from '../version';
|
|
2
|
-
import { LangtailExecutionTools } from '../llm-providers/langtail/LangtailExecutionTools';
|
|
3
|
-
import type { LangtailExecutionToolsOptions } from '../llm-providers/langtail/LangtailExecutionToolsOptions';
|
|
4
|
-
export { BOOK_LANGUAGE_VERSION, PROMPTBOOK_ENGINE_VERSION };
|
|
5
|
-
export { LangtailExecutionTools };
|
|
6
|
-
export type { LangtailExecutionToolsOptions };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { LlmExecutionTools } from '../../execution/LlmExecutionTools';
|
|
2
|
-
import type { string_markdown } from '../../types/typeAliases';
|
|
3
|
-
import type { string_markdown_text } from '../../types/typeAliases';
|
|
4
|
-
import type { string_title } from '../../types/typeAliases';
|
|
5
|
-
import { OpenAiExecutionTools } from '../openai/OpenAiExecutionTools';
|
|
6
|
-
/**
|
|
7
|
-
* Execution Tools for calling OpenAI API.
|
|
8
|
-
*
|
|
9
|
-
* @public exported from `@promptbook/langtail`
|
|
10
|
-
*/
|
|
11
|
-
export declare class LangtailExecutionTools extends OpenAiExecutionTools implements LlmExecutionTools {
|
|
12
|
-
get title(): string_title & string_markdown_text;
|
|
13
|
-
get description(): string_markdown;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* TODO: [🧠][🈁] Maybe use `isDeterministic` from options
|
|
17
|
-
*/
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { OpenAiExecutionToolsOptions } from '../openai/OpenAiExecutionToolsOptions';
|
|
2
|
-
/**
|
|
3
|
-
* Options for LangtailExecutionTools
|
|
4
|
-
*
|
|
5
|
-
* This extends OpenAI's `ClientOptions` with are directly passed to the OpenAI client.
|
|
6
|
-
* Rest is used by the `OpenAiExecutionTools`.
|
|
7
|
-
*
|
|
8
|
-
* @public exported from `@promptbook/langtail`
|
|
9
|
-
*/
|
|
10
|
-
export type LangtailExecutionToolsOptions = OpenAiExecutionToolsOptions;
|
|
11
|
-
/**
|
|
12
|
-
* TODO: !! Use or remove
|
|
13
|
-
*/
|