File tree Expand file tree Collapse file tree 6 files changed +44
-14
lines changed Expand file tree Collapse file tree 6 files changed +44
-14
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+
11
+
12
+ ## [ 0.0.26-beta] - 2024-10-14
13
+
14
+ ### Changed
15
+
10
16
- normalized tool results and responses - better feedback to LLM and clearer output in conversation
11
17
- New LLM tool: ` conversation_metrics ` for calculating the current turn and token counts,
12
18
needed for the upcoming ` conversation_summary ` (& truncation) tool
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bbai-api" ,
3
- "version" : " 0.0.25 -beta" ,
3
+ "version" : " 0.0.26 -beta" ,
4
4
"exports" : " ./src/main.ts" ,
5
5
"tasks" : {
6
6
"start" : " deno run --allow-read --allow-write --allow-run --allow-net --allow-env src/main.ts" ,
16
16
"update-deps" : " deno cache src/main.ts && deno cache tests/deps.ts"
17
17
},
18
18
"importMap" : " ../import_map.json" ,
19
- "unstable" : [" kv" ],
19
+ "unstable" : [
20
+ " kv"
21
+ ],
20
22
"fmt" : {
21
23
"useTabs" : true ,
22
24
"lineWidth" : 120 ,
23
25
"indentWidth" : 4 ,
24
26
"semiColons" : true ,
25
27
"singleQuote" : true ,
26
28
"proseWrap" : " preserve" ,
27
- "include" : [" src/" , " tests/" ],
28
- "exclude" : [" src/testdata/" , " src/fixtures/**/*.ts" ]
29
+ "include" : [
30
+ " src/" ,
31
+ " tests/"
32
+ ],
33
+ "exclude" : [
34
+ " src/testdata/" ,
35
+ " src/fixtures/**/*.ts"
36
+ ]
29
37
},
30
38
"lint" : {
31
39
"files" : {
32
- "include" : [" tests/pipelineProvider.js" ]
40
+ "include" : [
41
+ " tests/pipelineProvider.js"
42
+ ]
33
43
},
34
44
"rules" : {
35
- "exclude" : [" require-await" , " no-var" ]
45
+ "exclude" : [
46
+ " require-await" ,
47
+ " no-var"
48
+ ]
36
49
}
37
50
}
38
51
}
Original file line number Diff line number Diff line change 16
16
},
17
17
"lint" : {
18
18
"rules" : {
19
- "tags" : [" fresh" , " recommended" ]
19
+ "tags" : [
20
+ " fresh" ,
21
+ " recommended"
22
+ ]
20
23
}
21
24
},
22
- "exclude" : [" **/src/_fresh/*" ],
25
+ "exclude" : [
26
+ " **/src/_fresh/*"
27
+ ],
23
28
"importMap" : " ../import_map.json" ,
24
29
"compilerOptions" : {
25
30
"jsx" : " react-jsx" ,
32
37
"semiColons" : true ,
33
38
"singleQuote" : true ,
34
39
"proseWrap" : " preserve" ,
35
- "include" : [" src/" , " tests/" ],
36
- "exclude" : [" src/testdata/" , " src/fixtures/**/*.ts" ]
40
+ "include" : [
41
+ " src/" ,
42
+ " tests/"
43
+ ],
44
+ "exclude" : [
45
+ " src/testdata/" ,
46
+ " src/fixtures/**/*.ts"
47
+ ]
37
48
},
38
- "version" : " 0.0.25 -beta"
49
+ "version" : " 0.0.26 -beta"
39
50
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bbai-cli" ,
3
- "version" : " 0.0.25 -beta" ,
3
+ "version" : " 0.0.26 -beta" ,
4
4
"exports" : " ./src/main.ts" ,
5
5
"tasks" : {
6
6
"start" : " deno run --allow-env --allow-read --allow-write --allow-run --allow-net src/main.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bbai" ,
3
- "version" : " 0.0.25 -beta" ,
3
+ "version" : " 0.0.26 -beta" ,
4
4
"exports" : " ./cli/src/main.ts" ,
5
5
"tasks" : {
6
6
"tool:check-types-project" : " deno task -c ./cli/deno.jsonc check-types && deno task -c ./bui/deno.jsonc check-types && deno task -c ./api/deno.jsonc check-types" ,
Original file line number Diff line number Diff line change 1
- export const VERSION = "0.0.25 -beta" ;
1
+ export const VERSION = "0.0.26 -beta" ;
You can’t perform that action at this time.
0 commit comments