@yuuvis/app-ai is a yuuvis® MOMENTUM client app that showcases AI integration and is provided for use in custom client projects.
The app can be installed in a custom client project as follows:
npm install @yuuvis/app-ai --save
In your app.config.ts
add the AppAiExtension
to the providers:
import { AppAiExtension } from '@yuuvis/app-ai/extensions';
export const appConfig: ApplicationConfig = {
providers: [
importShellExtensions([
{ id: 'io.yuuvis.app.ai.extension', extension: AppAiExtension }
])
]
};