> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Comment puis-je modifier le groupe d’un run terminé ?

Vous pouvez modifier le groupe attribué à un run terminé à l’aide de l’API. Cette fonctionnalité n’apparaît pas dans l’interface utilisateur Web. Pour mettre à jour le groupe, utilisez le code suivant :

```python theme={null}
import wandb

api = wandb.Api()
run = api.run("<ENTITY>/<PROJECT>/<RUN_ID>")
run.group = "NEW-GROUP-NAME"
run.update()
```

***

<Badge stroke shape="pill" color="orange" size="md">[Runs](/fr/support/models/tags/runs)</Badge>
