readme update for server install instruction

This commit is contained in:
martin legrand
2025-03-29 12:40:50 +01:00
parent d1b20a1446
commit 4c87353db4
5 changed files with 28 additions and 10 deletions
+18 -4
View File
@@ -218,14 +218,28 @@ Note: For Windows or macOS, use ipconfig or ifconfig respectively to find the IP
**If you wish to use openai based provider follow the *Run with an API* section.**
Make sure ollama is installed (Currently our script only support ollama)
Clone the repository and enter the `server/`folder.
Run our server script.
```sh
python3 server_ollama.py --model "deepseek-r1:32b"
git clone --depth 1 https://github.com/Fosowl/agenticSeek.git
cd agenticSeek/server/
```
Install server specific requirements:
```sh
pip3 install -r requirements.txt
```
Run the server script.
```sh
python3 app.py --provider ollama --port 3333
```
You have the choice between using `ollama` and `llamacpp` as a LLM service.
### 2️⃣ **Run it**
Now on your personal computer:
@@ -238,7 +252,7 @@ Set the `provider_server_address` to the ip address of the machine that will run
is_local = False
provider_name = server
provider_model = deepseek-r1:14b
provider_server_address = x.x.x.x:5000
provider_server_address = x.x.x.x:3333
```
Run the assistant: