* add mcp for web * update /jan/v1 endpoint to /v1 * update mise and makefile * update yarn lock * use mcp oauth properly
26 lines
530 B
TypeScript
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'
|