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
Copy file name to clipboardExpand all lines: extensions/cli/spec/onboarding.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,11 @@ When a user first runs `cn` in interactive mode, they will be taken through "onb
7
7
**The onboarding flow runs when the user hasn't completed onboarding before, regardless of whether they have a valid config.yaml file.**
8
8
9
9
1. If the --config flag is provided, load this config
10
-
2. Otherwise, we will present the user with two options:
11
-
10
+
2. Otherwise, check if AWS credentials are available through the standard AWS credential chain
11
+
3. Present the user with available options:
12
12
- Log in with Continue: log them in, which will automatically create their assistant and then we can load the first assistant from the first org
13
13
- Enter your Anthropic API key: let them enter the key, and then either create a ~/.continue/config.yaml with the following contents OR update the existing config.yaml to add the model
14
+
- Use AWS credentials: (only shown if AWS credentials are available) automatically create a config using AWS Bedrock Claude and skip further onboarding
14
15
15
16
```yaml
16
17
name: Local Config
@@ -23,6 +24,19 @@ When a user first runs `cn` in interactive mode, they will be taken through "onb
23
24
ANTHROPIC_API_KEY: <THEIR_ANTHROPIC_API_KEY>
24
25
```
25
26
27
+
For the AWS option, it will create/update the config with:
0 commit comments