├── .env ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── backend ├── Gemfile ├── Gemfile.lock ├── assets │ └── vosk-model-small-en-us-0.15 │ │ ├── README │ │ ├── am │ │ └── final.mdl │ │ ├── conf │ │ ├── mfcc.conf │ │ └── model.conf │ │ ├── graph │ │ ├── Gr.fst │ │ ├── HCLr.fst │ │ ├── disambig_tid.int │ │ └── phones │ │ │ └── word_boundary.int │ │ └── ivector │ │ ├── final.dubm │ │ ├── final.ie │ │ ├── final.mat │ │ ├── global_cmvn.stats │ │ ├── online_cmvn.conf │ │ └── splice.conf ├── awaker.py ├── notions │ ├── email.rb │ ├── fortune.rb │ ├── notes.rb │ ├── shell.txt │ ├── sysinfo.rb │ ├── weather.rb │ └── wiki.rb ├── requirements.txt ├── server.rb └── whisper_service.py ├── eslint.config.js ├── index.html ├── package.json ├── public └── assets │ └── fonts │ ├── instrument-serif │ ├── instrument-serif-v4-latin-italic.woff2 │ └── instrument-serif-v4-latin-regular.woff2 │ └── pt-serif │ ├── pt-serif-v18-latin-italic.woff2 │ └── pt-serif-v18-latin-regular.woff2 ├── readme_assets ├── animated.gif ├── max-diagram.png ├── sleeping.png ├── thinking.png └── tools.png ├── src ├── App.css ├── App.jsx ├── Faces.css ├── Faces.jsx ├── StatusMessage.css ├── StatusMessage.jsx ├── WordsContainer.css ├── WordsContainer.jsx ├── assets │ ├── faces │ │ ├── check1.png │ │ ├── check2.png │ │ ├── dead.png │ │ ├── face_look_left.png │ │ ├── face_look_right.png │ │ ├── face_monocle.png │ │ ├── face_monocle_closed.png │ │ ├── face_smirk_down.png │ │ ├── face_smirk_up.png │ │ ├── face_thinking.png │ │ ├── face_weird.png │ │ ├── globe1.png │ │ ├── globe2.png │ │ ├── globe3.png │ │ ├── hg-1.png │ │ ├── hg-2.png │ │ ├── hg-3.png │ │ ├── hg-4.png │ │ ├── hg-5.png │ │ ├── hg-6.png │ │ ├── hg-7.png │ │ ├── hg-8.png │ │ ├── hg-9.png │ │ ├── sleep_closed.png │ │ ├── sleep_open.png │ │ ├── smile_eyes_blue.png │ │ ├── smile_eyes_closed.png │ │ ├── smile_eyes_love.png │ │ ├── smile_eyes_opened.png │ │ └── smile_eyes_pink.png │ ├── reactions │ │ ├── alien.png │ │ ├── angry.png │ │ ├── bored.png │ │ ├── confused.png │ │ ├── excited.png │ │ ├── happy.png │ │ ├── interested.png │ │ ├── laugh.png │ │ ├── neutral.png │ │ ├── proud.png │ │ ├── sad.png │ │ ├── sarcastic.png │ │ ├── surprised.png │ │ └── vomit.png │ └── speaking │ │ ├── closed.png │ │ ├── open1.png │ │ ├── open2.png │ │ └── still.png ├── config.js ├── index.css ├── main.jsx ├── systemPrompt.js ├── toolProcessor.js ├── tools │ ├── CPUTemp.js │ ├── calcSum.js │ ├── email.js │ ├── fortune.js │ ├── notes.js │ ├── restart.js │ ├── shell.txt │ ├── time.js │ ├── weather.js │ └── wiki.js └── utils.js └── vite.config.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.13.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/README.md -------------------------------------------------------------------------------- /backend/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/Gemfile -------------------------------------------------------------------------------- /backend/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/Gemfile.lock -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/README -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/am/final.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/am/final.mdl -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/conf/mfcc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/conf/mfcc.conf -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/conf/model.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/conf/model.conf -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/graph/Gr.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/graph/Gr.fst -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/graph/HCLr.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/graph/HCLr.fst -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/graph/disambig_tid.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/graph/disambig_tid.int -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/graph/phones/word_boundary.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/graph/phones/word_boundary.int -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/ivector/final.dubm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/ivector/final.dubm -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/ivector/final.ie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/ivector/final.ie -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/ivector/final.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/ivector/final.mat -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/ivector/global_cmvn.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/ivector/global_cmvn.stats -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/ivector/online_cmvn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/ivector/online_cmvn.conf -------------------------------------------------------------------------------- /backend/assets/vosk-model-small-en-us-0.15/ivector/splice.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/assets/vosk-model-small-en-us-0.15/ivector/splice.conf -------------------------------------------------------------------------------- /backend/awaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/awaker.py -------------------------------------------------------------------------------- /backend/notions/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/email.rb -------------------------------------------------------------------------------- /backend/notions/fortune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/fortune.rb -------------------------------------------------------------------------------- /backend/notions/notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/notes.rb -------------------------------------------------------------------------------- /backend/notions/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/shell.txt -------------------------------------------------------------------------------- /backend/notions/sysinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/sysinfo.rb -------------------------------------------------------------------------------- /backend/notions/weather.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/weather.rb -------------------------------------------------------------------------------- /backend/notions/wiki.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/notions/wiki.rb -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/server.rb -------------------------------------------------------------------------------- /backend/whisper_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/backend/whisper_service.py -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/fonts/instrument-serif/instrument-serif-v4-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/public/assets/fonts/instrument-serif/instrument-serif-v4-latin-italic.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/instrument-serif/instrument-serif-v4-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/public/assets/fonts/instrument-serif/instrument-serif-v4-latin-regular.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/pt-serif/pt-serif-v18-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/public/assets/fonts/pt-serif/pt-serif-v18-latin-italic.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/pt-serif/pt-serif-v18-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/public/assets/fonts/pt-serif/pt-serif-v18-latin-regular.woff2 -------------------------------------------------------------------------------- /readme_assets/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/readme_assets/animated.gif -------------------------------------------------------------------------------- /readme_assets/max-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/readme_assets/max-diagram.png -------------------------------------------------------------------------------- /readme_assets/sleeping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/readme_assets/sleeping.png -------------------------------------------------------------------------------- /readme_assets/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/readme_assets/thinking.png -------------------------------------------------------------------------------- /readme_assets/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/readme_assets/tools.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Faces.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/Faces.css -------------------------------------------------------------------------------- /src/Faces.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/Faces.jsx -------------------------------------------------------------------------------- /src/StatusMessage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/StatusMessage.css -------------------------------------------------------------------------------- /src/StatusMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/StatusMessage.jsx -------------------------------------------------------------------------------- /src/WordsContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/WordsContainer.css -------------------------------------------------------------------------------- /src/WordsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/WordsContainer.jsx -------------------------------------------------------------------------------- /src/assets/faces/check1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/check1.png -------------------------------------------------------------------------------- /src/assets/faces/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/check2.png -------------------------------------------------------------------------------- /src/assets/faces/dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/dead.png -------------------------------------------------------------------------------- /src/assets/faces/face_look_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_look_left.png -------------------------------------------------------------------------------- /src/assets/faces/face_look_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_look_right.png -------------------------------------------------------------------------------- /src/assets/faces/face_monocle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_monocle.png -------------------------------------------------------------------------------- /src/assets/faces/face_monocle_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_monocle_closed.png -------------------------------------------------------------------------------- /src/assets/faces/face_smirk_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_smirk_down.png -------------------------------------------------------------------------------- /src/assets/faces/face_smirk_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_smirk_up.png -------------------------------------------------------------------------------- /src/assets/faces/face_thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_thinking.png -------------------------------------------------------------------------------- /src/assets/faces/face_weird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/face_weird.png -------------------------------------------------------------------------------- /src/assets/faces/globe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/globe1.png -------------------------------------------------------------------------------- /src/assets/faces/globe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/globe2.png -------------------------------------------------------------------------------- /src/assets/faces/globe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/globe3.png -------------------------------------------------------------------------------- /src/assets/faces/hg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-1.png -------------------------------------------------------------------------------- /src/assets/faces/hg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-2.png -------------------------------------------------------------------------------- /src/assets/faces/hg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-3.png -------------------------------------------------------------------------------- /src/assets/faces/hg-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-4.png -------------------------------------------------------------------------------- /src/assets/faces/hg-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-5.png -------------------------------------------------------------------------------- /src/assets/faces/hg-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-6.png -------------------------------------------------------------------------------- /src/assets/faces/hg-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-7.png -------------------------------------------------------------------------------- /src/assets/faces/hg-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-8.png -------------------------------------------------------------------------------- /src/assets/faces/hg-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/hg-9.png -------------------------------------------------------------------------------- /src/assets/faces/sleep_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/sleep_closed.png -------------------------------------------------------------------------------- /src/assets/faces/sleep_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/sleep_open.png -------------------------------------------------------------------------------- /src/assets/faces/smile_eyes_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/smile_eyes_blue.png -------------------------------------------------------------------------------- /src/assets/faces/smile_eyes_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/smile_eyes_closed.png -------------------------------------------------------------------------------- /src/assets/faces/smile_eyes_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/smile_eyes_love.png -------------------------------------------------------------------------------- /src/assets/faces/smile_eyes_opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/smile_eyes_opened.png -------------------------------------------------------------------------------- /src/assets/faces/smile_eyes_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/faces/smile_eyes_pink.png -------------------------------------------------------------------------------- /src/assets/reactions/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/alien.png -------------------------------------------------------------------------------- /src/assets/reactions/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/angry.png -------------------------------------------------------------------------------- /src/assets/reactions/bored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/bored.png -------------------------------------------------------------------------------- /src/assets/reactions/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/confused.png -------------------------------------------------------------------------------- /src/assets/reactions/excited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/excited.png -------------------------------------------------------------------------------- /src/assets/reactions/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/happy.png -------------------------------------------------------------------------------- /src/assets/reactions/interested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/interested.png -------------------------------------------------------------------------------- /src/assets/reactions/laugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/laugh.png -------------------------------------------------------------------------------- /src/assets/reactions/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/neutral.png -------------------------------------------------------------------------------- /src/assets/reactions/proud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/proud.png -------------------------------------------------------------------------------- /src/assets/reactions/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/sad.png -------------------------------------------------------------------------------- /src/assets/reactions/sarcastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/sarcastic.png -------------------------------------------------------------------------------- /src/assets/reactions/surprised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/surprised.png -------------------------------------------------------------------------------- /src/assets/reactions/vomit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/reactions/vomit.png -------------------------------------------------------------------------------- /src/assets/speaking/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/speaking/closed.png -------------------------------------------------------------------------------- /src/assets/speaking/open1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/speaking/open1.png -------------------------------------------------------------------------------- /src/assets/speaking/open2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/speaking/open2.png -------------------------------------------------------------------------------- /src/assets/speaking/still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/assets/speaking/still.png -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/systemPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/systemPrompt.js -------------------------------------------------------------------------------- /src/toolProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/toolProcessor.js -------------------------------------------------------------------------------- /src/tools/CPUTemp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/CPUTemp.js -------------------------------------------------------------------------------- /src/tools/calcSum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/calcSum.js -------------------------------------------------------------------------------- /src/tools/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/email.js -------------------------------------------------------------------------------- /src/tools/fortune.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/fortune.js -------------------------------------------------------------------------------- /src/tools/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/notes.js -------------------------------------------------------------------------------- /src/tools/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/restart.js -------------------------------------------------------------------------------- /src/tools/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/shell.txt -------------------------------------------------------------------------------- /src/tools/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/time.js -------------------------------------------------------------------------------- /src/tools/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/weather.js -------------------------------------------------------------------------------- /src/tools/wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/tools/wiki.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/src/utils.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syxanash/maxheadbox/HEAD/vite.config.js --------------------------------------------------------------------------------