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
32 lines • 863 B
JavaScript
;
/**
* 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
*/
function createCompletionHandlers(context) {
return {
'completion/complete': {
context,
async handle(params) {
// Return empty completion for now
return {
completion: {
values: [],
total: 0,
hasMore: false
}
};
}
}
};
}
module.exports = {
createCompletionHandlers
};
//# sourceMappingURL=completion-handlers.cjs.map