querygit 1.0.1 → 1.0.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 +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,8 +14,26 @@ npm install -g querygit
|
|
|
14
14
|
export CEREBRAS_API_KEY=your_api_key
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
>Note: The model is hardcoded to `llama3.1-8b` via Cerebras API.
|
|
18
|
+
|
|
17
19
|
## Usage
|
|
18
20
|
|
|
19
21
|
```bash
|
|
20
22
|
querygit "show me the last commit message"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Output
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
Model
|
|
29
|
+
-------
|
|
30
|
+
llama3.1-8b (Cerebras)
|
|
31
|
+
|
|
32
|
+
Command
|
|
33
|
+
-------
|
|
34
|
+
git log -1 --format=%s
|
|
35
|
+
|
|
36
|
+
Result
|
|
37
|
+
-------
|
|
38
|
+
Release v1.0.2
|
|
21
39
|
```
|