Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: start working on json schema converter #655

Draft
wants to merge 13 commits into
base: canary
Choose a base branch
from
2 changes: 1 addition & 1 deletion engine/baml-lib/jinja/src/output_format/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl<T> Default for RenderSetting<T> {

pub struct RenderOptions {
prefix: RenderSetting<String>,
pub or_splitter: String,
or_splitter: String,
enum_value_prefix: RenderSetting<String>,
always_hoist_enums: RenderSetting<bool>,
}
Expand Down
2 changes: 1 addition & 1 deletion engine/baml-runtime/src/internal/prompt_renderer/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mod render_output_format;
use jsonish::BamlValueWithFlags;
use render_output_format::render_output_format;
pub use render_output_format::render_output_format;

use anyhow::Result;
use baml_types::{BamlValue, FieldType};
Expand Down
Loading