judahpaul16 / gpt-home

ChatGPT at home! Basically a better Google Nest Hub or Amazon Alexa home assistant. Built on the Raspberry Pi using the OpenAI API.
https://hub.docker.com/r/judahpaul/gpt-home
GNU General Public License v3.0
415 stars 39 forks source link

Photos of case assembly #18

Closed ashepp closed 4 months ago

ashepp commented 4 months ago

I ordered the full set of parts but spent longer than I'd anticipated on assembly and still not quite sure I have it right. Could you possibly post some additional photos from other angles? Possibly an assembly video?

judahpaul16 commented 4 months ago

I can upload some photos here. It was a little tricky. Attach the Sunfounder battery back as the instructions indicate. After that, basically the bottom 2 plates for the Miuzei raspberry pi case are rotated 180deg and sandwich the Sunfounder battery pack. It's rotated to accommodate the battery pack's standoffs: 20240507_120432 20240507_120403 20240507_120348

Also to ensure full connection of the mini-speaker, I used a Dremel to very slightly shave where the speaker makes contact with the case.: 20240507_120452

judahpaul16 commented 4 months ago

If you don't want to use a Dremel to shave where the speaker contacts the case you can get one of these or rotate the speaker to be upside-down.

ashepp commented 4 months ago

Thanks Judah, thats great. Appreciate it! By the way, I'm trying to run the update you posted this morning and having issues when trying to run setup.sh. I'm not super familiar with Raspberry Pi development so not sure if this is an error on my end or with the script itself.

(env) @.:~/gpt-home/gpt-home/gpt-home$ chmod +x setup.sh (env) @.:~/gpt-home/gpt-home/gpt-home$ ./setup.sh -bash: ./setup.sh: cannot execute: required file not found (env) @.:~/gpt-home/gpt-home/gpt-home$ ls CONTRIBUTING.md app.py functions.py schematic.fzz setup.sh LICENSE contrib gpt-web screenshots README.md font5x8.bin requirements.txt settings.json (env) @.:~/gpt-home/gpt-home/gpt-home$ bash setup.sh setup.sh: line 2: $'\r': command not found setup.sh: line 4: syntax error near unexpected token $'{\r'' 'etup.sh: line 4:check_and_stop_service() { (env) @.***:~/gpt-home/gpt-home/gpt-home$

On Tue, May 7, 2024 at 9:15 AM Judah Paul @.***> wrote:

If you don't want to use a Dremel to shave where the speaker contacts the case you can get one of these https://www.amazon.com/gp/product/B016E5PEXC/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&th=1 or rotate the speaker to be upside-down.

— Reply to this email directly, view it on GitHub https://github.com/judahpaul16/gpt-home/issues/18#issuecomment-2098830798, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADIQZRRIDHVMBGVWHO2GKV3ZBD4ZXAVCNFSM6AAAAABHKKHB66VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDAOJYHAZTANZZHA . You are receiving this because you authored the thread.Message ID: @.***>

judahpaul16 commented 4 months ago

No problem. Make sure you run the script from your home directory.

cd ~
sudo rm -rf gpt-home
git clone https://github.com/judahpaul16/gpt-home
sudo chown -R $(whoami):$(whoami) .
sudo chmod -R 755 .
cp gpt-home/contrib/setup.sh ./setup.sh
sudo chmod +x setup.sh
./setup.sh
ashepp commented 4 months ago

That worked. thank you!