Dinh Long Nguyen b5b6e1dc19
add mcp for web (#6411)
* add mcp for web

* update /jan/v1 endpoint to /v1

* update mise and makefile

* update yarn lock

* use mcp oauth properly
2025-09-12 12:14:10 +07:00

26 lines
530 B
TypeScript

/**
* Conversational extension. Persists and retrieves conversations.
* @module
*/
export { ConversationalExtension } from './conversational'
/**
* Inference extension. Start, stop and inference models.
*/
export { InferenceExtension } from './inference'
/**
* Assistant extension for managing assistants.
*/
export { AssistantExtension } from './assistant'
/**
* MCP extension for managing tools and server communication.
*/
export { MCPExtension } from './mcp'
/**
* Base AI Engines.
*/
export * from './engines'