UNPKG

@n8n/n8n-nodes-langchain

Version:

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

24 lines (21 loc) 755 B
/** * Anthropic Node - Version 1 * Re-exports all discriminator combinations. */ import type { LcAnthropicV1DocumentNode } from './resource_document'; import type { LcAnthropicV1FileNode } from './resource_file'; import type { LcAnthropicV1ImageNode } from './resource_image'; import type { LcAnthropicV1PromptNode } from './resource_prompt'; import type { LcAnthropicV1TextNode } from './resource_text'; export * from './resource_document'; export * from './resource_file'; export * from './resource_image'; export * from './resource_prompt'; export * from './resource_text'; export type LcAnthropicV1Node = | LcAnthropicV1DocumentNode | LcAnthropicV1FileNode | LcAnthropicV1ImageNode | LcAnthropicV1PromptNode | LcAnthropicV1TextNode ;