Skip to content

Commit 130b2dc

Browse files
committed
final en-gb version
1 parent 0d1b547 commit 130b2dc

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed
Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,133 @@
11
---
22
title: 'Installing an AI agent on an OVHcloud VPS'
3-
excerpt: 'Find out how to deploy an AI agent like OpenInterpreter or GPT4All on an OVHcloud VPS'
4-
updated: 2025-06-26
3+
excerpt: 'Find out how to deploy an AI agent like Open Interpreter or GPT4All on an OVHcloud VPS'
4+
updated: 2025-08-14
55
---
66

77
## Objective
88

9-
This guide explains how to deploy an on-premises AI agent on an OVHcloud VPS, without depending on the cloud of external providers. You will use a ready-to-use Docker container containing an open-source AI agent, such as [OpenInterpreter](https://github.com/KillianLucas/open-interpreter), [GPT4All](https://github.com/nomic-ai/gpt4all) or [Auto-GPT](https://github.com/Torantulino/Auto-GPT).
9+
This guide explains how to deploy an on-premises AI agent on an OVHcloud VPS, without depending on the cloud of external providers. You will use a ready-to-use Docker container containing an open-source AI agent, such as [Open Interpreter](https://github.com/KillianLucas/open-interpreter), [GPT4All](https://github.com/nomic-ai/gpt4all) or [Auto-GPT](https://github.com/Torantulino/Auto-GPT).
1010

11-
**Find out how to deploy an AI agent such as OpenInterpreter or GPT4All on an OVHcloud VPS.**
11+
**Find out how to deploy an AI agent such as Open Interpreter or GPT4All on an OVHcloud VPS.**
1212

1313
## Requirements
1414

15-
- You must have a [VPS](https://www.ovhcloud.com/en-gb/vps/) that works (Debian 11 or higher is recommended)
16-
- administrative (sudo) access to your server via SSH
15+
- A [OVHcloud VPS](https://www.ovhcloud.com/en-gb/vps/) (Debian 11 or higher is recommended)
16+
- Administrative (sudo) SSH access to your server
1717
- Python ≥ 3.10 installed on the VPS
1818

19-
## In practice
19+
## Instructions
2020

2121
### Update your VPS and install Python <a name="step1"></a>
2222

23-
Open a terminal and connect to your VPS with the following command (replacing `IP_DU_VPS` with the real IP):
23+
Open a terminal and connect to your VPS with the following command (replacing `VPS_IP` with the real IP):
2424

25-
bash
26-
ssh <user>@IP_VPS
27-
25+
```bash
26+
ssh <user>@VPS_IP
27+
```
2828

2929
Update the packages:
3030

31-
bash
31+
```bash
3232
sudo apt update && sudo apt upgrade -y
33-
33+
```
3434

3535
Verify that Python ≥ 3.10 is installed:
3636

37-
bash
37+
```bash
3838
python3 --version
39-
39+
```
4040

4141
If necessary, install Python 3.10+ and pip:
4242

43-
bash
43+
```bash
4444
sudo apt install -y python3 python3-pip python3-venv
45-
45+
```
4646

4747
### Create a virtual environment and install Open Interpreter <a name="step2"></a>
4848

49-
Recent environments limit the use of pip globally. It is recommended that you create and use a virtual environment:
49+
Recent environments limit the use of `pip` globally. It is recommended that you create and use a virtual environment:
5050

51-
bash
51+
```bash
5252
python3 -m venv ~/venv-openinterpreter
5353
source ~/venv-openinterpreter/bin/activate
54-
54+
```
5555

5656
Install Open Interpreter:
5757

58-
bash
58+
```bash
5959
pip install --upgrade pip
6060
pip install open-interpreter
61-
61+
```
6262

6363
### Configure an AI template for the agent (local or remote) <a name="step3"></a>
6464

6565
#### Option 1 - Use OpenAI (GPT-4o, GPT-3.5, etc.)
6666

6767
You must have an OpenAI API key. Add it when you launch it for the first time, or set it beforehand:
6868

69-
bash
69+
```bash
7070
export OPENAI_API_KEY="API_KEY"
7171
interpret
72-
72+
```
7373

7474
Then follow the instructions.
7575

7676
#### Option 2 - Use a local model (via Ollama)
7777

7878
If you do not want to use OpenAI, run a local model using Ollama:
7979

80-
bash
80+
```bash
8181
interpreter --local
82-
82+
```
8383

8484
This will give you several options (Ollama, LM Studio, etc.). We recommend using Ollama, as it is easy to install and compatible with several modern models such as `llama3` or `mistral`.
8585

8686
Install Ollama:
8787

88-
bash
88+
```bash
8989
sudo apt install curl -y
9090
curl -fsSL https://ollama.com/install.sh | sh
9191
exec $SHELL
92-
92+
```
9393

9494
Load the model:
9595

96-
bash
96+
```bash
9797
ollama pull mistral
98-
98+
```
9999

100100
Then try again:
101101

102-
bash
102+
```bash
103103
interpreter --local
104-
104+
```
105105

106106
#### Common errors
107107

108108
**Model requires more system memory (6 GiB) than is available (1 GiB)**
109109

110110
This error indicates that your VPS does not have enough RAM. Here are your options:
111111

112-
- Change machine with at least 8GB RAM.
112+
- Change machine with at least 8 GB RAM.
113113
- Use the OpenAI API (see `Option 1` above).
114114
- Use a lighter model, like mistral.
115115

116116
### Test your AI Agent <a name="step4"></a>
117117

118118
Test the following use cases:
119119

120-
console
120+
```console
121121
What is in the /tmp folder?
122-
122+
```
123123

124124
Sample response:
125125

126126
![AI agent](images/question-version-python.png){.thumbnail}
127127

128-
console
128+
```console
129129
Writes a Python script that lists the files in the current folder.
130-
130+
```
131131

132132
The agent interprets your request, generates code, and executes it locally.
133133

@@ -141,6 +141,6 @@ With this guide, you have installed an AI agent on your OVHcloud VPS, capable of
141141

142142
## Go further
143143

144-
For specialized services (SEO, development, etc.), contact [OVHcloud partners](https://partner.ovhcloud.com/en-ca/directory/)
144+
For specialized services (SEO, development, etc.), contact [OVHcloud partners](https://partner.ovhcloud.com/en-gb/directory/)
145145

146146
Join our [community of users](/links/community).

pages/bare_metal_cloud/virtual_private_servers/install-ia-agent-on-vps/guide.fr-fr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: 'Comment installer un agent IA sur un VPS OVHcloud'
3-
excerpt: 'Découvrez comment déployer un agent IA comme OpenInterpreter ou GPT4All sur un VPS OVHcloud'
3+
excerpt: 'Découvrez comment déployer un agent IA comme Open Interpreter ou GPT4All sur un VPS OVHcloud'
44
updated: 2025-08-14
55
---
66

77
## Objectif
88

99
Ce guide explique comment déployer un agent IA local sur un VPS OVHcloud, sans dépendre du cloud de fournisseurs externes. Vous utiliserez pour cela un conteneur Docker prêt à l'emploi contenant un agent IA open source comme [Open Interpreter](https://github.com/openinterpreter/open-interpreter), [GPT4All](https://github.com/nomic-ai/gpt4all) ou [Auto-GPT](https://github.com/Significant-Gravitas/AutoGPT).
1010

11-
**Découvrez comment déployer un agent IA comme OpenInterpreter ou GPT4All sur un VPS OVHcloud.**
11+
**Découvrez comment déployer un agent IA comme Open Interpreter ou GPT4All sur un VPS OVHcloud.**
1212

1313
## Prérequis
1414

0 commit comments

Comments
 (0)