@ifzai/connect2dify
Version:
A comprehensive TypeScript client for the Dify API, providing a clean and modular interface for chat, workflow, file management, and application interactions.
13 lines (12 loc) • 474 B
TypeScript
/**
* Dify API Client
* A comprehensive TypeScript client for the Dify API
*/
export { DifyClient, Client } from './client.js';
export { ChatAPI } from './chat.js';
export { ConversationAPI } from './conversation.js';
export { WorkflowAPI } from './workflow.js';
export { FileAPI } from './file.js';
export { AppAPI } from './app.js';
export * from './types.js';
export { createHeaders, handleResponse, handleStreamResponse, parseSSEChunk, buildURL, } from './utils.js';