openai-assistants-mcp
Version:
OpenAI Assistants MCP Server - A Model Context Protocol server providing OpenAI Assistants API tools and resources. Features comprehensive assistant management, thread operations, message handling, and run execution with seamless stdio transport for Claud
23 lines • 669 B
text/typescript
/**
* CommonJS version of Completion Handlers for NPM package compatibility
*
* This file provides CommonJS-compatible versions of the completion handlers
* that can be used by the NPM package while maintaining the same functionality
* as the TypeScript version.
*/
/**
* Create completion handlers
*/
export function createCompletionHandlers(context: any): {
'completion/complete': {
context: any;
handle(params: any): Promise<{
completion: {
values: never[];
total: number;
hasMore: boolean;
};
}>;
};
};
//# sourceMappingURL=completion-handlers.d.cts.map