UNPKG

@n8n/n8n-nodes-langchain

Version:

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

15 lines (12 loc) 413 B
/** * OpenAI - Text Resource * Re-exports all operation types for this resource. */ import type { LcOpenAiV21TextClassifyNode } from './operation_classify'; import type { LcOpenAiV21TextResponseNode } from './operation_response'; export * from './operation_classify'; export * from './operation_response'; export type LcOpenAiV21TextNode = | LcOpenAiV21TextClassifyNode | LcOpenAiV21TextResponseNode ;