pi-gitlab-duo 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,14 +6,16 @@ Provides access to GitLab Duo AI models (Claude and GPT) through GitLab's AI Gat
|
|
|
6
6
|
|
|
7
7
|
## Models
|
|
8
8
|
|
|
9
|
-
| Model ID |
|
|
10
|
-
|
|
11
|
-
| `
|
|
12
|
-
| `
|
|
13
|
-
| `
|
|
14
|
-
| `
|
|
15
|
-
| `
|
|
16
|
-
| `
|
|
9
|
+
| Model ID | Name |
|
|
10
|
+
|----------|------|
|
|
11
|
+
| `claude-opus-4-5-20251101` | Claude Opus 4.5 |
|
|
12
|
+
| `claude-sonnet-4-5-20250929` | Claude Sonnet 4.5 |
|
|
13
|
+
| `claude-haiku-4-5-20251001` | Claude Haiku 4.5 |
|
|
14
|
+
| `gpt-5.1-2025-11-13` | GPT-5.1 |
|
|
15
|
+
| `gpt-5-mini-2025-08-07` | GPT-5 Mini |
|
|
16
|
+
| `gpt-5-codex` | GPT-5 Codex |
|
|
17
|
+
|
|
18
|
+
All models support extended thinking/reasoning.
|
|
17
19
|
|
|
18
20
|
## Installation
|
|
19
21
|
|
|
@@ -38,17 +40,20 @@ Set the `GITLAB_TOKEN` environment variable:
|
|
|
38
40
|
|
|
39
41
|
```bash
|
|
40
42
|
export GITLAB_TOKEN=glpat-xxxxxxxxxxxxxxxxxxxx
|
|
41
|
-
pi --provider gitlab-duo --model
|
|
43
|
+
pi --provider gitlab-duo --model claude-sonnet-4-5-20250929
|
|
42
44
|
```
|
|
43
45
|
|
|
44
46
|
## Usage
|
|
45
47
|
|
|
46
48
|
```bash
|
|
47
49
|
# Interactive mode
|
|
48
|
-
pi --provider gitlab-duo --model
|
|
50
|
+
pi --provider gitlab-duo --model claude-sonnet-4-5-20250929
|
|
51
|
+
|
|
52
|
+
# With thinking enabled
|
|
53
|
+
pi --provider gitlab-duo --model claude-sonnet-4-5-20250929 --thinking medium
|
|
49
54
|
|
|
50
55
|
# Print mode
|
|
51
|
-
pi --provider gitlab-duo --model
|
|
56
|
+
pi --provider gitlab-duo --model claude-sonnet-4-5-20250929 -p "explain git rebase"
|
|
52
57
|
```
|
|
53
58
|
|
|
54
59
|
## Requirements
|