-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bump version to 0.70.0 (#1212)
Bump version to 0.70.0\n\n❌ Typescript integ tests\n❌ Python integ tests\n\nGenerated by bump-version script. <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Bump version to 0.70.0 across multiple files and update test results and role configuration. > > - **Version Bump**: > - Update version to `0.70.0` in `Cargo.lock`, `Cargo.toml`, `baml.gemspec`, `package.json` (typescript and ruby clients), and `vscode-ext/packages/package.json`. > - **Misc**: > - Add `role-selection.mdx` file with role configuration details. > - Update `generators.baml` in `inlined.rb` and `inlinedbaml.ts` to version `0.70.0`. > - Update `test-report.html` to reflect new test results with 65 passed and 2 failed tests. > > <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=BoundaryML%2Fbaml&utm_source=github&utm_medium=referral)<sup> for ad742ba. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN -->
- Loading branch information
Showing
20 changed files
with
1,665 additions
and
3,120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,7 @@ internal-baml-jinja = { path = "baml-lib/jinja" } | |
internal-baml-schema-ast = { path = "baml-lib/schema-ast" } | ||
|
||
[workspace.package] | ||
version = "0.69.0" | ||
version = "0.70.0" | ||
authors = ["Boundary <[email protected]>"] | ||
|
||
description = "BAML Toolchain" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "baml-py" | ||
version = "0.69.0" | ||
version = "0.70.0" | ||
description = "BAML python bindings (pyproject.toml)" | ||
readme = "README.md" | ||
authors = [["Boundary", "[email protected]"]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
Gem::Specification.new do |spec| | ||
spec.name = "baml" | ||
spec.version = "0.69.0" | ||
spec.version = "0.70.0" | ||
spec.authors = ["BoundaryML"] | ||
spec.email = ["[email protected]"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<ParamField | ||
path="default_role" | ||
type="string" | ||
> | ||
The role to use if the role is not in the allowed_roles. **Default: `"user"` usually, but some models like OpenAI's `gpt-4o` will use `"system"`** | ||
|
||
Picked the first role in `allowed_roles` if not "user", otherwise "user". | ||
</ParamField> | ||
|
||
<ParamField | ||
path="allowed_roles" | ||
type="string[]" | ||
> | ||
Which roles should we forward to the API? **Default: `["system", "user", "assistant"]` usually, but some models like OpenAI's `o1-mini` will use `["user", "assistant"]`** | ||
|
||
Anything not in this list will be set to the `default_role`. | ||
</ParamField> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
generator lang_python { | ||
output_type python/pydantic | ||
output_dir "../python" | ||
version "0.69.0" | ||
version "0.70.0" | ||
} | ||
|
||
generator lang_typescript { | ||
output_type typescript | ||
output_dir "../typescript" | ||
version "0.69.0" | ||
version "0.70.0" | ||
} | ||
|
||
generator lang_ruby { | ||
output_type ruby/sorbet | ||
output_dir "../ruby" | ||
version "0.69.0" | ||
version "0.70.0" | ||
} | ||
|
||
// generator openapi { | ||
// output_type rest/openapi | ||
// output_dir "../openapi" | ||
// version "0.69.0" | ||
// version "0.70.0" | ||
// on_generate "rm .gitignore" | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.