├── .gitignore ├── LICENSE ├── README.md ├── apps ├── api │ └── core-api │ │ ├── Dockerfile │ │ ├── app │ │ ├── agent_template.json │ │ ├── api │ │ │ ├── main.py │ │ │ └── ping.py │ │ ├── config.json │ │ ├── engine.py │ │ ├── main.py │ │ └── model.py │ │ ├── main.py │ │ └── requirements.txt ├── frontend │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmrc │ ├── Dockerfile │ ├── README.md │ ├── apps │ │ └── lermo-gen-web │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── .prettierrc │ │ │ ├── jsconfig.json │ │ │ ├── next.config.mjs │ │ │ ├── package.json │ │ │ ├── pages │ │ │ ├── _app.js │ │ │ ├── index.js │ │ │ ├── podcast.js │ │ │ └── video.js │ │ │ ├── public │ │ │ ├── default-avatar.jpg │ │ │ ├── fonts │ │ │ │ └── FC-Iconic │ │ │ │ │ ├── FC Iconic Bold Italic.otf │ │ │ │ │ ├── FC Iconic Bold Italic.ttf │ │ │ │ │ ├── FC Iconic Bold.otf │ │ │ │ │ ├── FC Iconic Bold.ttf │ │ │ │ │ ├── FC Iconic Italic.otf │ │ │ │ │ ├── FC Iconic Italic.ttf │ │ │ │ │ ├── FC Iconic Regular.otf │ │ │ │ │ ├── FC Iconic Regular.ttf │ │ │ │ │ ├── FC Iconic Text Regular.ttf │ │ │ │ │ └── Memo FC Iconic.txt │ │ │ └── logo.svg │ │ │ ├── src │ │ │ ├── config.js │ │ │ ├── helpers │ │ │ │ ├── httpClient.js │ │ │ │ ├── socket.js │ │ │ │ ├── useHook.js │ │ │ │ └── utility.js │ │ │ ├── redux │ │ │ │ ├── agent │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── api.js │ │ │ │ │ ├── reducer.js │ │ │ │ │ └── saga.js │ │ │ │ ├── article │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── api.js │ │ │ │ │ ├── reducer.js │ │ │ │ │ └── saga.js │ │ │ │ ├── config │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── api.js │ │ │ │ │ ├── reducer.js │ │ │ │ │ └── saga.js │ │ │ │ ├── podcast │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── api.js │ │ │ │ │ ├── reducer.js │ │ │ │ │ └── saga.js │ │ │ │ ├── reducer.js │ │ │ │ ├── saga.js │ │ │ │ └── store.js │ │ │ └── themes │ │ │ │ └── default.js │ │ │ └── styles │ │ │ └── globals.css │ ├── package.json │ ├── packages │ │ ├── eslint-config │ │ │ ├── README.md │ │ │ ├── library.js │ │ │ ├── next.js │ │ │ ├── package.json │ │ │ └── react-internal.js │ │ ├── typescript-config │ │ │ ├── base.json │ │ │ ├── nextjs.json │ │ │ ├── package.json │ │ │ └── react-library.json │ │ └── ui │ │ │ ├── .eslintrc.js │ │ │ ├── jsconfig.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── components │ │ │ │ ├── atoms │ │ │ │ ├── audioPlayer │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── enterButton │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.css │ │ │ │ ├── icons │ │ │ │ │ └── index.js │ │ │ │ ├── listSuggest │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── logo │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── mainButton │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── promptInput │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.css │ │ │ │ ├── videoPlayer │ │ │ │ │ ├── index.js │ │ │ │ │ ├── style.js │ │ │ │ │ └── test.html │ │ │ │ └── wrapProps │ │ │ │ │ └── index.js │ │ │ │ ├── helpers │ │ │ │ └── useHook.js │ │ │ │ ├── molecules │ │ │ │ ├── agentMenu │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── settingUser │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── sideMenuBox │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ └── videoCard │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ ├── organisms │ │ │ │ ├── headerMain │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ └── siderHome │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.js │ │ │ │ └── templates │ │ │ │ ├── guest │ │ │ │ ├── index.js │ │ │ │ ├── style.css │ │ │ │ └── style.js │ │ │ │ └── home │ │ │ │ ├── index.js │ │ │ │ └── style.css │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lint.json │ │ │ ├── turbo.json │ │ │ └── turbo │ │ │ └── generators │ │ │ ├── config.ts │ │ │ └── templates │ │ │ └── component.hbs │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ ├── tsconfig.json │ └── turbo.json └── llm │ ├── Dockerfile.llama │ ├── Dockerfile.mistral │ └── README.md ├── docker-compose.yaml └── docs └── app.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/README.md -------------------------------------------------------------------------------- /apps/api/core-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/Dockerfile -------------------------------------------------------------------------------- /apps/api/core-api/app/agent_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/agent_template.json -------------------------------------------------------------------------------- /apps/api/core-api/app/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/api/main.py -------------------------------------------------------------------------------- /apps/api/core-api/app/api/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/api/ping.py -------------------------------------------------------------------------------- /apps/api/core-api/app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/config.json -------------------------------------------------------------------------------- /apps/api/core-api/app/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/engine.py -------------------------------------------------------------------------------- /apps/api/core-api/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/main.py -------------------------------------------------------------------------------- /apps/api/core-api/app/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/app/model.py -------------------------------------------------------------------------------- /apps/api/core-api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/main.py -------------------------------------------------------------------------------- /apps/api/core-api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/api/core-api/requirements.txt -------------------------------------------------------------------------------- /apps/frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/.eslintrc.js -------------------------------------------------------------------------------- /apps/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/.gitignore -------------------------------------------------------------------------------- /apps/frontend/.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/Dockerfile -------------------------------------------------------------------------------- /apps/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/README.md -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/.eslintrc.json -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/.gitignore -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/.prettierrc -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/jsconfig.json -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/next.config.mjs -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/package.json -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/pages/_app.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/pages/index.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/pages/podcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/pages/podcast.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/pages/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/pages/video.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/default-avatar.jpg -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold Italic.otf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold Italic.ttf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold.otf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Bold.ttf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Italic.otf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Italic.ttf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Regular.otf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Regular.ttf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Text Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/FC Iconic Text Regular.ttf -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/Memo FC Iconic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/fonts/FC-Iconic/Memo FC Iconic.txt -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/public/logo.svg -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/config.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/helpers/httpClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/helpers/httpClient.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/helpers/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/helpers/socket.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/helpers/useHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/helpers/useHook.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/helpers/utility.js: -------------------------------------------------------------------------------- 1 | export default () => { 2 | console.log('Not implement.'); 3 | }; 4 | -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/agent/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/agent/actions.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/agent/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/agent/api.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/agent/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/agent/reducer.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/agent/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/agent/saga.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/article/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/article/actions.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/article/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/article/api.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/article/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/article/reducer.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/article/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/article/saga.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/config/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/config/actions.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/config/api.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/config/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/config/reducer.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/config/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/config/saga.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/podcast/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/podcast/actions.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/podcast/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/podcast/api.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/podcast/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/podcast/reducer.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/podcast/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/podcast/saga.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/reducer.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/saga.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/redux/store.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/src/themes/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/src/themes/default.js -------------------------------------------------------------------------------- /apps/frontend/apps/lermo-gen-web/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/apps/lermo-gen-web/styles/globals.css -------------------------------------------------------------------------------- /apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/package.json -------------------------------------------------------------------------------- /apps/frontend/packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/eslint-config/README.md -------------------------------------------------------------------------------- /apps/frontend/packages/eslint-config/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/eslint-config/library.js -------------------------------------------------------------------------------- /apps/frontend/packages/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/eslint-config/next.js -------------------------------------------------------------------------------- /apps/frontend/packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/eslint-config/package.json -------------------------------------------------------------------------------- /apps/frontend/packages/eslint-config/react-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/eslint-config/react-internal.js -------------------------------------------------------------------------------- /apps/frontend/packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/typescript-config/base.json -------------------------------------------------------------------------------- /apps/frontend/packages/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/typescript-config/nextjs.json -------------------------------------------------------------------------------- /apps/frontend/packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/typescript-config/package.json -------------------------------------------------------------------------------- /apps/frontend/packages/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/typescript-config/react-library.json -------------------------------------------------------------------------------- /apps/frontend/packages/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/.eslintrc.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/jsconfig.json -------------------------------------------------------------------------------- /apps/frontend/packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/package.json -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/audioPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/audioPlayer/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/audioPlayer/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/audioPlayer/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/enterButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/enterButton/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/enterButton/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/enterButton/style.css -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/icons/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/listSuggest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/listSuggest/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/listSuggest/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/listSuggest/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/logo/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/logo/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/logo/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/mainButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/mainButton/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/mainButton/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/mainButton/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/promptInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/promptInput/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/promptInput/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/videoPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/videoPlayer/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/videoPlayer/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/videoPlayer/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/videoPlayer/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/videoPlayer/test.html -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/atoms/wrapProps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/atoms/wrapProps/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/helpers/useHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/helpers/useHook.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/agentMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/agentMenu/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/agentMenu/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/agentMenu/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/settingUser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/settingUser/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/settingUser/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/settingUser/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/sideMenuBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/sideMenuBox/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/sideMenuBox/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/sideMenuBox/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/videoCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/videoCard/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/molecules/videoCard/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/molecules/videoCard/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/organisms/headerMain/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/organisms/headerMain/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/organisms/headerMain/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/organisms/headerMain/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/organisms/siderHome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/organisms/siderHome/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/organisms/siderHome/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/organisms/siderHome/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/templates/guest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/templates/guest/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/templates/guest/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/templates/guest/style.css -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/templates/guest/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/templates/guest/style.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/templates/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/templates/home/index.js -------------------------------------------------------------------------------- /apps/frontend/packages/ui/src/components/templates/home/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/src/components/templates/home/style.css -------------------------------------------------------------------------------- /apps/frontend/packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/packages/ui/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/tsconfig.lint.json -------------------------------------------------------------------------------- /apps/frontend/packages/ui/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/turbo.json -------------------------------------------------------------------------------- /apps/frontend/packages/ui/turbo/generators/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/turbo/generators/config.ts -------------------------------------------------------------------------------- /apps/frontend/packages/ui/turbo/generators/templates/component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/packages/ui/turbo/generators/templates/component.hbs -------------------------------------------------------------------------------- /apps/frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /apps/frontend/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/pnpm-workspace.yaml -------------------------------------------------------------------------------- /apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@repo/typescript-config/base.json" 3 | } 4 | -------------------------------------------------------------------------------- /apps/frontend/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/frontend/turbo.json -------------------------------------------------------------------------------- /apps/llm/Dockerfile.llama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/llm/Dockerfile.llama -------------------------------------------------------------------------------- /apps/llm/Dockerfile.mistral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/llm/Dockerfile.mistral -------------------------------------------------------------------------------- /apps/llm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/apps/llm/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LERM0/LermoAI/HEAD/docs/app.png --------------------------------------------------------------------------------