You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can define and deploy multiple agents within the same Cloud Run instance by creating separate folders in the root of `your-project-directory/`. Each folder represents one agent and must define a `root_agent` in its configuration.
206
+
207
+
Example structure:
208
+
209
+
```txt
210
+
your-project-directory/
211
+
├── capital_agent/
212
+
│ ├── __init__.py
213
+
│ └── agent.py # contains `root_agent` definition
214
+
├── population_agent/
215
+
│ ├── __init__.py
216
+
│ └── agent.py # contains `root_agent` definition
217
+
└── ...
218
+
```
219
+
203
220
#### Deploy using `gcloud`
204
221
205
222
Navigate to `your-project-directory` in your terminal.
0 commit comments