- apps/captain-mobile: Mobile API service - apps/flow-ui: Flow UI application - apps/mindlink: Mindlink application - apps/storage: Storage API and workers - apps/tzzr-cli: TZZR CLI tool - deck-frontend/backups: Historical TypeScript versions - hst-frontend: Standalone HST frontend Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
768 B
TypeScript
32 lines
768 B
TypeScript
/**
|
|
* ContextModule - Módulo de chat con IA genérico
|
|
*
|
|
* TODO: Implementar interfaz de chat estilo ChatGPT/Claude
|
|
* para interactuar con diferentes modelos de IA controlando el contexto.
|
|
*/
|
|
|
|
import { BaseModule } from '../registry.ts';
|
|
|
|
export class ContextModule extends BaseModule {
|
|
async mount(): Promise<void> {
|
|
this.render();
|
|
this.mounted = true;
|
|
}
|
|
|
|
unmount(): void {
|
|
this.mounted = false;
|
|
}
|
|
|
|
render(): void {
|
|
this.ctx.container.innerHTML = `
|
|
<div class="module-disabled">
|
|
<div class="module-disabled-icon">💬</div>
|
|
<div class="module-disabled-title">Context Manager</div>
|
|
<div class="module-disabled-text">Chat con IA - Próximamente</div>
|
|
</div>
|
|
`;
|
|
}
|
|
}
|
|
|
|
export default ContextModule;
|