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
bl text chat --config token-plan --message "Hello"
47
-
bl image generate --config token-plan --prompt "A cat"
46
+
bl text chat --message "Hello"
47
+
bl image generate --prompt "A cat"
48
48
```
49
49
50
-
To make Token Plan the default Profile for commands that omit `--config`, activate it explicitly after login:
50
+
Successful login automatically activates the explicitly selected Profile. Use `bl config list` to
51
+
inspect it, and switch back when needed:
51
52
52
53
```bash
53
-
bl config use --name token-plan
54
-
bl text chat --message "Hello"
55
-
bl image generate --prompt "A cat"
54
+
bl config list
55
+
bl config use --name default
56
56
```
57
57
58
-
`auth login --config token-plan` saves that Profile but does not activate it. Use `bl config list` to inspect the active Profile, `bl config use --name default` to switch back, or `--config default` for a one-command override. Config selection follows explicit `--config` > persisted `active_config` > `default`; credential and endpoint fields inside the selected Profile still follow flag > environment > config.
58
+
`auth login --config token-plan` creates or updates that Profile and activates it only after the
59
+
credential is validated and saved. Failed login and `--dry-run` do not switch Profiles. Use
60
+
`--config default` for a one-command override. Config selection follows explicit `--config` >
61
+
persisted `active_config` > `default`; credential and endpoint fields inside the selected Profile
62
+
still follow flag > environment > config.
59
63
60
64
Activation selects the entire Config for every credential domain, not only model consumption. After activating `token-plan`, Token Plan management and Console commands also read their OpenAPI or Console credentials from that Profile. If those credentials remain in `default`, invoke the command with `--config default` or log the corresponding credential domain into `token-plan`.
0 commit comments