Abel
Abel
> The "after" may not necessarily be executed after "commands" > > For your requirement, you can use the following binding to implement it > > ```json > { >...
> Before we fully commit to this, is it possible that we can just add `#[serde(flatten)]` on a `serde_json::Map` to the `Message::Assistant` variant of the OpenAI completion model and call...
> > > Before we fully commit to this, is it possible that we can just add `#[serde(flatten)]` on a `serde_json::Map` to the `Message::Assistant` variant of the OpenAI completion model...
You mean this? ```rust let client = match deepseek::Client::builder( env::var("PROVIDER_API_KEY") .expect("`PROVIDER_API_KEY` not set") .as_str(), ) .base_url( env::var("PROVIDER_BASE_URL") .expect("`PROVIDER_BASE_URL` not set") .as_str(), ) .build()?; ```