Skip to content

Commit

Permalink
fixes and updates for windows 009 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LachsBagel committed Aug 18, 2024
1 parent 9941fd0 commit e20d6ed
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 19 deletions.
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
- Open the "MORagents" app from Mac search bar.
- For easier access: Right-click MORagents icon on dock -> Options -> Keep in Dock

#### Troubleshooting
If the app shows connections errors in connecting to agents. Please ensure Docker Desktop is running, then close and reopen **MORagents** from desktop.


### macOS Intel (x86_64)
*coming soon*

Expand All @@ -54,20 +58,17 @@
>Assumes minimum 16GB RAM
#### Steps
1. Use Chrome to download [MORagentsWindowsInstaller.zip](https://drive.proton.me/urls/9BE8X1ZMTG#Oh1SfTeklH4W)
> SHA256 0a5f5e3a288d45854c83994fa4afa4c713019229d99d67f28442fc56a5de1b20 MORagentsWindowsInstaller.zip
2. Go to downloaded **MORagentsWindowsInstaller(.zip)** file and click to "Extract All"
3. Open Extracted Folder **MORagentsWindowsInstaller**
1. You may need to disable your anti-virus software before proceeding
1. Use Chrome to download [MORagentsSetupWindows009.zip](https://drive.proton.me/urls/8X58WAH80G#ib5r3K4WalDA)
> SHA256 6b8bd78571df2f5e8c6e516102aa05b1121d0214fdfb75a2be16146c22e0d2c52 MORagentsSetupWindows009.zip
2. Go to downloaded **MORagentsSetupWindows009(.zip)** file and double click to open"
3. Double click **MORagentsSetup.exe**
1. You may need to click "More info" -> "Run anyway"
2. If that still doesn't work, try temporarily disabling your anti-virus and open the .exe again
4. Click and Run **MORagentsSetup.exe**
1. This will auto-install Docker Desktop dependency
5. Open **MORagents** from Desktop
6. Accept Docker's EULA
1. Surveys are optional, can skip
7. Wait for Docker engine to start...
8. Open **MORagents** App from Desktop
1. First time installation requires some extra time to load agent's image
2. If anything hangs for >10min, please try opening the MORagents app again from the Desktop
1. This will auto-install Docker and Ollama dependencies. Those will ask you for confirmation.
5. Open **MORagents** from Desktop
1. Wait for Docker engine to start...
2. If you see any errors or if anything hangs for >10min, please try opening the MORagents app again from the Desktop

#### Troubleshooting
If the app shows connections errors in connecting to agents. Please ensure Docker Desktop is running, then close and reopen **MORagents** from desktop.
Expand Down
19 changes: 14 additions & 5 deletions submodules/moragents_dockers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,20 @@ Pull the required models in ollama

Docker compose will build and run two containers. One will be for the agents, the other will be for the UI.

```docker-compose up```

or for Apple silicon

```docker-compose -f docker-compose-apple.yml up```
1. Ensure you're in the submodules/moragents_dockers folder
```sh
$ cd submodules/moragents_dockers
```

2. Build Images and Launch Containers:
1. For Intel / AMD / x86_64
```sh
docker-compose up
```
2. For Apple silicon (M1, M2, M3, etc)
```sh
docker-compose -f docker-compose-apple.yml up
```

Open in the browser: ```http://localhost:3333/```

Expand Down
2 changes: 1 addition & 1 deletion submodules/moragents_dockers/agents/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim-buster
FROM --platform=linux/amd64 python:3.10-bullseye

# Set the working directory in the container
WORKDIR /app
Expand Down

0 comments on commit e20d6ed

Please sign in to comment.