n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 532 B
text/typescript
/**
* Perplexity - Embedding Resource
* Re-exports all operation types for this resource.
*/
import type { PerplexityV2EmbeddingCreateContextualizedNode } from './operation_create_contextualized';
import type { PerplexityV2EmbeddingCreateEmbeddingNode } from './operation_create_embedding';
export * from './operation_create_contextualized';
export * from './operation_create_embedding';
export type PerplexityV2EmbeddingNode =
| PerplexityV2EmbeddingCreateContextualizedNode
| PerplexityV2EmbeddingCreateEmbeddingNode
;