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.
214
+
215
+
Example structure:
216
+
217
+
```txt
218
+
your-project-directory/
219
+
├── capital_agent/
220
+
│ ├── __init__.py
221
+
│ └── agent.py # contains `root_agent` definition
222
+
├── population_agent/
223
+
│ ├── __init__.py
224
+
│ └── agent.py # contains `root_agent` definition
225
+
└── ...
226
+
```
227
+
211
228
#### Deploy using `gcloud`
212
229
213
230
Navigate to `your-project-directory` in your terminal.
0 commit comments