Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cngarrison committed Oct 14, 2024
1 parent c08e9dc commit 2506d87
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]



## [0.0.26-beta] - 2024-10-14

### Changed

- normalized tool results and responses - better feedback to LLM and clearer output in conversation
- New LLM tool: `conversation_metrics` for calculating the current turn and token counts,
needed for the upcoming `conversation_summary` (& truncation) tool
Expand Down
25 changes: 19 additions & 6 deletions api/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai-api",
"version": "0.0.25-beta",
"version": "0.0.26-beta",
"exports": "./src/main.ts",
"tasks": {
"start": "deno run --allow-read --allow-write --allow-run --allow-net --allow-env src/main.ts",
Expand All @@ -16,23 +16,36 @@
"update-deps": "deno cache src/main.ts && deno cache tests/deps.ts"
},
"importMap": "../import_map.json",
"unstable": ["kv"],
"unstable": [
"kv"
],
"fmt": {
"useTabs": true,
"lineWidth": 120,
"indentWidth": 4,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": ["src/", "tests/"],
"exclude": ["src/testdata/", "src/fixtures/**/*.ts"]
"include": [
"src/",
"tests/"
],
"exclude": [
"src/testdata/",
"src/fixtures/**/*.ts"
]
},
"lint": {
"files": {
"include": ["tests/pipelineProvider.js"]
"include": [
"tests/pipelineProvider.js"
]
},
"rules": {
"exclude": ["require-await", "no-var"]
"exclude": [
"require-await",
"no-var"
]
}
}
}
21 changes: 16 additions & 5 deletions bui/deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@
},
"lint": {
"rules": {
"tags": ["fresh", "recommended"]
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": ["**/src/_fresh/*"],
"exclude": [
"**/src/_fresh/*"
],
"importMap": "../import_map.json",
"compilerOptions": {
"jsx": "react-jsx",
Expand All @@ -32,8 +37,14 @@
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": ["src/", "tests/"],
"exclude": ["src/testdata/", "src/fixtures/**/*.ts"]
"include": [
"src/",
"tests/"
],
"exclude": [
"src/testdata/",
"src/fixtures/**/*.ts"
]
},
"version": "0.0.25-beta"
"version": "0.0.26-beta"
}
2 changes: 1 addition & 1 deletion cli/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai-cli",
"version": "0.0.25-beta",
"version": "0.0.26-beta",
"exports": "./src/main.ts",
"tasks": {
"start": "deno run --allow-env --allow-read --allow-write --allow-run --allow-net src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai",
"version": "0.0.25-beta",
"version": "0.0.26-beta",
"exports": "./cli/src/main.ts",
"tasks": {
"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",
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.0.25-beta";
export const VERSION = "0.0.26-beta";

0 comments on commit 2506d87

Please sign in to comment.