UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

18 lines (15 loc) 593 B
/** * Anthropic - Prompt Resource * Re-exports all operation types for this resource. */ import type { LcAnthropicV1PromptGenerateNode } from './operation_generate'; import type { LcAnthropicV1PromptImproveNode } from './operation_improve'; import type { LcAnthropicV1PromptTemplatizeNode } from './operation_templatize'; export * from './operation_generate'; export * from './operation_improve'; export * from './operation_templatize'; export type LcAnthropicV1PromptNode = | LcAnthropicV1PromptGenerateNode | LcAnthropicV1PromptImproveNode | LcAnthropicV1PromptTemplatizeNode ;