├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── docs ├── DEVELOPING.md └── SENTENCES.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ └── ai │ │ │ ├── ai.component.html │ │ │ ├── ai.component.scss │ │ │ └── ai.component.ts │ ├── interface │ │ └── Iwindow.ts │ ├── model │ │ └── message.ts │ └── services │ │ ├── ai.service.ts │ │ ├── auth-interceptor.service.ts │ │ └── index.ts ├── assets │ ├── .gitkeep │ └── scss │ │ └── base │ │ └── _variables.scss ├── browserlist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json └── tsconfig.spec.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/angular.json -------------------------------------------------------------------------------- /docs/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/docs/DEVELOPING.md -------------------------------------------------------------------------------- /docs/SENTENCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/docs/SENTENCES.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/ai/ai.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/components/ai/ai.component.html -------------------------------------------------------------------------------- /src/app/components/ai/ai.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/components/ai/ai.component.scss -------------------------------------------------------------------------------- /src/app/components/ai/ai.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/components/ai/ai.component.ts -------------------------------------------------------------------------------- /src/app/interface/Iwindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/interface/Iwindow.ts -------------------------------------------------------------------------------- /src/app/model/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/model/message.ts -------------------------------------------------------------------------------- /src/app/services/ai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/services/ai.service.ts -------------------------------------------------------------------------------- /src/app/services/auth-interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/services/auth-interceptor.service.ts -------------------------------------------------------------------------------- /src/app/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/app/services/index.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/scss/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/assets/scss/base/_variables.scss -------------------------------------------------------------------------------- /src/browserlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/browserlist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenouw/AngularAI/HEAD/tslint.json --------------------------------------------------------------------------------