├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── angular.json ├── electron ├── assets │ ├── splash.html │ └── splash.png ├── main-dev.js ├── main.js ├── preload.js └── webpack.preload.config.js ├── functions └── templates │ ├── template.js │ └── template.py ├── icon.png ├── logo.png ├── package.json ├── profile-examples ├── README.md └── pictory-profile.zip ├── screen_chat.png ├── screen_graph.png ├── screen_schedule.png ├── scripts ├── install.command ├── notarize.js ├── package-lock.json ├── package.json ├── pictory │ ├── function.json │ ├── package-lock.json │ ├── package.json │ └── pictory.js ├── setup-env.bat ├── setup-env.js ├── setup-env.sh ├── youtube │ ├── package-lock.json │ ├── package.json │ └── uploadToYoutube.js └── youtube_seo.js ├── splash.png ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.ts │ ├── app.config.ts │ ├── app.routes.ts │ ├── classes │ │ └── sequence.ts │ ├── components │ │ ├── assistant-library │ │ │ └── assistant-library.component.ts │ │ ├── chat-bar │ │ │ ├── chat-bar.component.html │ │ │ ├── chat-bar.component.scss │ │ │ └── chat-bar.component.ts │ │ ├── chat-content │ │ │ ├── chat-content.component.html │ │ │ ├── chat-content.component.scss │ │ │ └── chat-content.component.ts │ │ ├── chat-sidebar │ │ │ ├── chat-sidebar.component.html │ │ │ ├── chat-sidebar.component.scss │ │ │ └── chat-sidebar.component.ts │ │ ├── form-element │ │ │ ├── form-element.component.html │ │ │ ├── form-element.component.scss │ │ │ └── form-element.component.ts │ │ ├── function-editor │ │ │ └── function-editor.component.ts │ │ ├── function-library │ │ │ └── function-library.component.ts │ │ ├── function-list │ │ │ └── function-list.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ └── header.component.ts │ │ ├── object-sidebar │ │ │ ├── object-sidebar.component.html │ │ │ ├── object-sidebar.component.scss │ │ │ └── object-sidebar.component.ts │ │ ├── output-list │ │ │ └── output-list.component.ts │ │ ├── profile-export │ │ │ └── profile-export.component.ts │ │ ├── schedule-dialog │ │ │ └── schedule-dialog.component.ts │ │ └── title-bar │ │ │ ├── title-bar.component.html │ │ │ ├── title-bar.component.scss │ │ │ └── title-bar.component.ts │ ├── guards │ │ └── leave-graph.guard.ts │ ├── interfaces │ │ ├── function-implementations.ts │ │ ├── function-nodes.ts │ │ ├── graph.ts │ │ └── object-system.ts │ ├── layouts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ └── header.component.ts │ │ └── main │ │ │ ├── main.component.html │ │ │ ├── main.component.scss │ │ │ └── main.component.ts │ ├── modules │ │ └── object-manager │ │ │ ├── components │ │ │ ├── instance-editor │ │ │ │ ├── instance-editor.component.scss │ │ │ │ └── instance-editor.component.ts │ │ │ ├── instance-list │ │ │ │ ├── instance-list.component.html │ │ │ │ ├── instance-list.component.scss │ │ │ │ └── instance-list.component.ts │ │ │ ├── object-manager │ │ │ │ ├── object-manager.component.scss │ │ │ │ └── object-manager.component.ts │ │ │ ├── schema-editor │ │ │ │ ├── schema-editor.component.html │ │ │ │ ├── schema-editor.component.scss │ │ │ │ └── schema-editor.component.ts │ │ │ └── schema-list │ │ │ │ ├── schema-list.component.html │ │ │ │ ├── schema-list.component.scss │ │ │ │ └── schema-list.component.ts │ │ │ └── object-manager.module.ts │ ├── pipes │ │ ├── mark.pipe.ts │ │ ├── pretty-json.pipe.ts │ │ └── time-ago.pipe.ts │ ├── services │ │ ├── ai-communication.service.ts │ │ ├── ai-function.service.ts │ │ ├── ai-message.service.ts │ │ ├── auth.service.ts │ │ ├── config.service.ts │ │ ├── event.service.ts │ │ ├── function-implementations.service.ts │ │ ├── function-nodes.service.ts │ │ ├── generated-objects.service.ts │ │ ├── graph.service.ts │ │ ├── object-instance.service.ts │ │ ├── object-migration.service.ts │ │ ├── object-schema.service.ts │ │ ├── object-system.service.ts │ │ ├── open-ai-api.service.ts │ │ ├── profile-export.service.ts │ │ └── system-message-overlay.service.ts │ ├── shared │ │ └── primeng.module.ts │ ├── utils │ │ └── pictory.utils.ts │ └── views │ │ ├── assistants │ │ ├── assistant-form │ │ │ ├── assistant-form.component.html │ │ │ ├── assistant-form.component.scss │ │ │ └── assistant-form.component.ts │ │ ├── assistants.component.html │ │ ├── assistants.component.scss │ │ ├── assistants.component.ts │ │ ├── include-assistants │ │ │ └── include-assistants.component.ts │ │ └── output-preview │ │ │ └── output-preview.component.ts │ │ ├── chat │ │ ├── chat.component.html │ │ ├── chat.component.scss │ │ └── chat.component.ts │ │ ├── functions │ │ ├── function-list-page.component.html │ │ ├── function-list-page.component.scss │ │ └── function-list-page.component.ts │ │ ├── graph-editor │ │ ├── graph-editor.component.html │ │ ├── graph-editor.component.scss │ │ ├── graph-editor.component.spec.ts │ │ └── graph-editor.component.ts │ │ ├── login │ │ ├── login.component.html │ │ ├── login.component.scss │ │ └── login.component.ts │ │ ├── projects │ │ └── project-list.component.ts │ │ └── schedule │ │ └── schedule.component.ts ├── assets │ ├── .gitkeep │ ├── litegraph │ │ └── litegraph.js │ └── logo.png ├── electron.d.ts ├── environments │ └── environment_public.ts ├── favicon.ico ├── index.html ├── lib │ ├── classes │ │ ├── Helper.ts │ │ └── HttpError.ts │ ├── entities │ │ ├── AppConfig.d.ts │ │ ├── AppConfig.ts │ │ ├── OAAssistant.ts │ │ ├── OAFunctionCall.d.ts │ │ ├── OAThread.d.ts │ │ ├── OAThreadMessage.d.ts │ │ └── OAThreadRun.d.ts │ └── objects │ │ └── OAResponseList.d.ts ├── main.ts ├── styles.scss └── styles │ ├── functions.scss │ ├── manifest.scss │ ├── mixins.scss │ ├── theme.scss │ └── variables.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/angular.json -------------------------------------------------------------------------------- /electron/assets/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/electron/assets/splash.html -------------------------------------------------------------------------------- /electron/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/electron/assets/splash.png -------------------------------------------------------------------------------- /electron/main-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/electron/main-dev.js -------------------------------------------------------------------------------- /electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/electron/main.js -------------------------------------------------------------------------------- /electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/electron/preload.js -------------------------------------------------------------------------------- /electron/webpack.preload.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/electron/webpack.preload.config.js -------------------------------------------------------------------------------- /functions/templates/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/functions/templates/template.js -------------------------------------------------------------------------------- /functions/templates/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/functions/templates/template.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/icon.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/package.json -------------------------------------------------------------------------------- /profile-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/profile-examples/README.md -------------------------------------------------------------------------------- /profile-examples/pictory-profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/profile-examples/pictory-profile.zip -------------------------------------------------------------------------------- /screen_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/screen_chat.png -------------------------------------------------------------------------------- /screen_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/screen_graph.png -------------------------------------------------------------------------------- /screen_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/screen_schedule.png -------------------------------------------------------------------------------- /scripts/install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/install.command -------------------------------------------------------------------------------- /scripts/notarize.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/package-lock.json -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/pictory/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/pictory/function.json -------------------------------------------------------------------------------- /scripts/pictory/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/pictory/package-lock.json -------------------------------------------------------------------------------- /scripts/pictory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/pictory/package.json -------------------------------------------------------------------------------- /scripts/pictory/pictory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/pictory/pictory.js -------------------------------------------------------------------------------- /scripts/setup-env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/setup-env.bat -------------------------------------------------------------------------------- /scripts/setup-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/setup-env.js -------------------------------------------------------------------------------- /scripts/setup-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/setup-env.sh -------------------------------------------------------------------------------- /scripts/youtube/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/youtube/package-lock.json -------------------------------------------------------------------------------- /scripts/youtube/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/youtube/package.json -------------------------------------------------------------------------------- /scripts/youtube/uploadToYoutube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/youtube/uploadToYoutube.js -------------------------------------------------------------------------------- /scripts/youtube_seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/scripts/youtube_seo.js -------------------------------------------------------------------------------- /splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/splash.png -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/classes/sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/classes/sequence.ts -------------------------------------------------------------------------------- /src/app/components/assistant-library/assistant-library.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/assistant-library/assistant-library.component.ts -------------------------------------------------------------------------------- /src/app/components/chat-bar/chat-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-bar/chat-bar.component.html -------------------------------------------------------------------------------- /src/app/components/chat-bar/chat-bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-bar/chat-bar.component.scss -------------------------------------------------------------------------------- /src/app/components/chat-bar/chat-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-bar/chat-bar.component.ts -------------------------------------------------------------------------------- /src/app/components/chat-content/chat-content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-content/chat-content.component.html -------------------------------------------------------------------------------- /src/app/components/chat-content/chat-content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-content/chat-content.component.scss -------------------------------------------------------------------------------- /src/app/components/chat-content/chat-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-content/chat-content.component.ts -------------------------------------------------------------------------------- /src/app/components/chat-sidebar/chat-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-sidebar/chat-sidebar.component.html -------------------------------------------------------------------------------- /src/app/components/chat-sidebar/chat-sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-sidebar/chat-sidebar.component.scss -------------------------------------------------------------------------------- /src/app/components/chat-sidebar/chat-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/chat-sidebar/chat-sidebar.component.ts -------------------------------------------------------------------------------- /src/app/components/form-element/form-element.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/form-element/form-element.component.html -------------------------------------------------------------------------------- /src/app/components/form-element/form-element.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/form-element/form-element.component.scss -------------------------------------------------------------------------------- /src/app/components/form-element/form-element.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/form-element/form-element.component.ts -------------------------------------------------------------------------------- /src/app/components/function-editor/function-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/function-editor/function-editor.component.ts -------------------------------------------------------------------------------- /src/app/components/function-library/function-library.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/function-library/function-library.component.ts -------------------------------------------------------------------------------- /src/app/components/function-list/function-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/function-list/function-list.component.ts -------------------------------------------------------------------------------- /src/app/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/header/header.component.scss -------------------------------------------------------------------------------- /src/app/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/object-sidebar/object-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/object-sidebar/object-sidebar.component.html -------------------------------------------------------------------------------- /src/app/components/object-sidebar/object-sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/object-sidebar/object-sidebar.component.scss -------------------------------------------------------------------------------- /src/app/components/object-sidebar/object-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/object-sidebar/object-sidebar.component.ts -------------------------------------------------------------------------------- /src/app/components/output-list/output-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/output-list/output-list.component.ts -------------------------------------------------------------------------------- /src/app/components/profile-export/profile-export.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/profile-export/profile-export.component.ts -------------------------------------------------------------------------------- /src/app/components/schedule-dialog/schedule-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/schedule-dialog/schedule-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/title-bar/title-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/title-bar/title-bar.component.html -------------------------------------------------------------------------------- /src/app/components/title-bar/title-bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/title-bar/title-bar.component.scss -------------------------------------------------------------------------------- /src/app/components/title-bar/title-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/components/title-bar/title-bar.component.ts -------------------------------------------------------------------------------- /src/app/guards/leave-graph.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/guards/leave-graph.guard.ts -------------------------------------------------------------------------------- /src/app/interfaces/function-implementations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/interfaces/function-implementations.ts -------------------------------------------------------------------------------- /src/app/interfaces/function-nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/interfaces/function-nodes.ts -------------------------------------------------------------------------------- /src/app/interfaces/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/interfaces/graph.ts -------------------------------------------------------------------------------- /src/app/interfaces/object-system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/interfaces/object-system.ts -------------------------------------------------------------------------------- /src/app/layouts/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/layouts/header/header.component.html -------------------------------------------------------------------------------- /src/app/layouts/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/layouts/header/header.component.scss -------------------------------------------------------------------------------- /src/app/layouts/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/layouts/header/header.component.ts -------------------------------------------------------------------------------- /src/app/layouts/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/layouts/main/main.component.html -------------------------------------------------------------------------------- /src/app/layouts/main/main.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/layouts/main/main.component.scss -------------------------------------------------------------------------------- /src/app/layouts/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/layouts/main/main.component.ts -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/instance-editor/instance-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/instance-editor/instance-editor.component.scss -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/instance-editor/instance-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/instance-editor/instance-editor.component.ts -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/instance-list/instance-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/instance-list/instance-list.component.html -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/instance-list/instance-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/instance-list/instance-list.component.scss -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/instance-list/instance-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/instance-list/instance-list.component.ts -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/object-manager/object-manager.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/object-manager/object-manager.component.scss -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/object-manager/object-manager.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/object-manager/object-manager.component.ts -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/schema-editor/schema-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/schema-editor/schema-editor.component.html -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/schema-editor/schema-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/schema-editor/schema-editor.component.scss -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/schema-editor/schema-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/schema-editor/schema-editor.component.ts -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/schema-list/schema-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/schema-list/schema-list.component.html -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/schema-list/schema-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/schema-list/schema-list.component.scss -------------------------------------------------------------------------------- /src/app/modules/object-manager/components/schema-list/schema-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/components/schema-list/schema-list.component.ts -------------------------------------------------------------------------------- /src/app/modules/object-manager/object-manager.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/modules/object-manager/object-manager.module.ts -------------------------------------------------------------------------------- /src/app/pipes/mark.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/pipes/mark.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/pretty-json.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/pipes/pretty-json.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/time-ago.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/pipes/time-ago.pipe.ts -------------------------------------------------------------------------------- /src/app/services/ai-communication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/ai-communication.service.ts -------------------------------------------------------------------------------- /src/app/services/ai-function.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/ai-function.service.ts -------------------------------------------------------------------------------- /src/app/services/ai-message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/ai-message.service.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/config.service.ts -------------------------------------------------------------------------------- /src/app/services/event.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/event.service.ts -------------------------------------------------------------------------------- /src/app/services/function-implementations.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/function-implementations.service.ts -------------------------------------------------------------------------------- /src/app/services/function-nodes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/function-nodes.service.ts -------------------------------------------------------------------------------- /src/app/services/generated-objects.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/generated-objects.service.ts -------------------------------------------------------------------------------- /src/app/services/graph.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/graph.service.ts -------------------------------------------------------------------------------- /src/app/services/object-instance.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/object-instance.service.ts -------------------------------------------------------------------------------- /src/app/services/object-migration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/object-migration.service.ts -------------------------------------------------------------------------------- /src/app/services/object-schema.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/object-schema.service.ts -------------------------------------------------------------------------------- /src/app/services/object-system.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/object-system.service.ts -------------------------------------------------------------------------------- /src/app/services/open-ai-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/open-ai-api.service.ts -------------------------------------------------------------------------------- /src/app/services/profile-export.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/profile-export.service.ts -------------------------------------------------------------------------------- /src/app/services/system-message-overlay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/services/system-message-overlay.service.ts -------------------------------------------------------------------------------- /src/app/shared/primeng.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/shared/primeng.module.ts -------------------------------------------------------------------------------- /src/app/utils/pictory.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/utils/pictory.utils.ts -------------------------------------------------------------------------------- /src/app/views/assistants/assistant-form/assistant-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/assistant-form/assistant-form.component.html -------------------------------------------------------------------------------- /src/app/views/assistants/assistant-form/assistant-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/assistant-form/assistant-form.component.scss -------------------------------------------------------------------------------- /src/app/views/assistants/assistant-form/assistant-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/assistant-form/assistant-form.component.ts -------------------------------------------------------------------------------- /src/app/views/assistants/assistants.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/assistants.component.html -------------------------------------------------------------------------------- /src/app/views/assistants/assistants.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/assistants.component.scss -------------------------------------------------------------------------------- /src/app/views/assistants/assistants.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/assistants.component.ts -------------------------------------------------------------------------------- /src/app/views/assistants/include-assistants/include-assistants.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/include-assistants/include-assistants.component.ts -------------------------------------------------------------------------------- /src/app/views/assistants/output-preview/output-preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/assistants/output-preview/output-preview.component.ts -------------------------------------------------------------------------------- /src/app/views/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/chat/chat.component.html -------------------------------------------------------------------------------- /src/app/views/chat/chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/chat/chat.component.scss -------------------------------------------------------------------------------- /src/app/views/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/chat/chat.component.ts -------------------------------------------------------------------------------- /src/app/views/functions/function-list-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/functions/function-list-page.component.html -------------------------------------------------------------------------------- /src/app/views/functions/function-list-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/functions/function-list-page.component.scss -------------------------------------------------------------------------------- /src/app/views/functions/function-list-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/functions/function-list-page.component.ts -------------------------------------------------------------------------------- /src/app/views/graph-editor/graph-editor.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/graph-editor/graph-editor.component.html -------------------------------------------------------------------------------- /src/app/views/graph-editor/graph-editor.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/graph-editor/graph-editor.component.scss -------------------------------------------------------------------------------- /src/app/views/graph-editor/graph-editor.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/graph-editor/graph-editor.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/graph-editor/graph-editor.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/graph-editor/graph-editor.component.ts -------------------------------------------------------------------------------- /src/app/views/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/login/login.component.html -------------------------------------------------------------------------------- /src/app/views/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/login/login.component.scss -------------------------------------------------------------------------------- /src/app/views/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/login/login.component.ts -------------------------------------------------------------------------------- /src/app/views/projects/project-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/projects/project-list.component.ts -------------------------------------------------------------------------------- /src/app/views/schedule/schedule.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/app/views/schedule/schedule.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/litegraph/litegraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/assets/litegraph/litegraph.js -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/electron.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/electron.d.ts -------------------------------------------------------------------------------- /src/environments/environment_public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/environments/environment_public.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/index.html -------------------------------------------------------------------------------- /src/lib/classes/Helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/classes/Helper.ts -------------------------------------------------------------------------------- /src/lib/classes/HttpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/classes/HttpError.ts -------------------------------------------------------------------------------- /src/lib/entities/AppConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/AppConfig.d.ts -------------------------------------------------------------------------------- /src/lib/entities/AppConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/AppConfig.ts -------------------------------------------------------------------------------- /src/lib/entities/OAAssistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/OAAssistant.ts -------------------------------------------------------------------------------- /src/lib/entities/OAFunctionCall.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/OAFunctionCall.d.ts -------------------------------------------------------------------------------- /src/lib/entities/OAThread.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/OAThread.d.ts -------------------------------------------------------------------------------- /src/lib/entities/OAThreadMessage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/OAThreadMessage.d.ts -------------------------------------------------------------------------------- /src/lib/entities/OAThreadRun.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/entities/OAThreadRun.d.ts -------------------------------------------------------------------------------- /src/lib/objects/OAResponseList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/lib/objects/OAResponseList.d.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/styles/functions.scss -------------------------------------------------------------------------------- /src/styles/manifest.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/styles/manifest.scss -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/styles/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/styles/theme.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nascarjake/luminary/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------