File tree Expand file tree Collapse file tree 6 files changed +20
-4
lines changed Expand file tree Collapse file tree 6 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
lint :
13
+ timeout-minutes : 10
13
14
name : lint
14
15
runs-on : ubuntu-latest
15
16
steps :
27
28
run : ./scripts/lint
28
29
29
30
build :
31
+ timeout-minutes : 5
30
32
name : build
31
33
runs-on : ubuntu-latest
32
34
permissions :
61
63
SHA : ${{ github.sha }}
62
64
run : ./scripts/utils/upload-artifact.sh
63
65
test :
66
+ timeout-minutes : 10
64
67
name : test
65
68
runs-on : ubuntu-latest
66
69
steps :
Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.20.0 "
2
+ "." : " 0.20.1 "
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.20.1 (2025-04-23)
4
+
5
+ Full Changelog: [ v0.20.0...v0.20.1] ( https://github.com/groq/groq-typescript/compare/v0.20.0...v0.20.1 )
6
+
7
+ ### Bug Fixes
8
+
9
+ * ** docs:** correct chatCompletion response exmaple in README ([ 399ccf5] ( https://github.com/groq/groq-typescript/commit/399ccf55ec7c0847bee32c9e214eecea5b8151c6 ) )
10
+
11
+
12
+ ### Chores
13
+
14
+ * ** ci:** add timeout thresholds for CI jobs ([ fc2c33e] ( https://github.com/groq/groq-typescript/commit/fc2c33ef10bb3796501831a7e36c73befadc8306 ) )
15
+
3
16
## 0.20.0 (2025-04-22)
4
17
5
18
Full Changelog: [ v0.19.0...v0.20.0] ( https://github.com/groq/groq-typescript/compare/v0.19.0...v0.20.0 )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ async function main() {
32
32
model: ' llama3-8b-8192' ,
33
33
});
34
34
35
- console .log (chatCompletion[' choices[0].message.content' ]);
35
+ console .log (chatCompletion[choices[0 ].message .content ]);
36
36
}
37
37
38
38
main ();
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " groq-sdk" ,
3
- "version" : " 0.20.0 " ,
3
+ "version" : " 0.20.1 " ,
4
4
"description" : " The official TypeScript library for the Groq API" ,
5
5
"author" :
" Groq <[email protected] >" ,
6
6
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change 1
- export const VERSION = '0.20.0 ' ; // x-release-please-version
1
+ export const VERSION = '0.20.1 ' ; // x-release-please-version
You can’t perform that action at this time.
0 commit comments