feat: MCP support for agentic CLI providers (#6972)

Signed-off-by: Adrian Cole <adrian@tetrate.io>
This commit is contained in:
Adrian Cole
2026-02-12 07:37:52 +08:00
committed by GitHub
parent c6e27b8f84
commit 8d59c2dced
57 changed files with 1196 additions and 254 deletions
+2 -1
View File
@@ -12,7 +12,8 @@ async fn main() -> Result<()> {
std::env::remove_var("DATABRICKS_TOKEN");
// Create the provider
let provider = create_with_named_model("databricks", DATABRICKS_DEFAULT_MODEL).await?;
let provider =
create_with_named_model("databricks", DATABRICKS_DEFAULT_MODEL, Vec::new()).await?;
// Create a simple message
let message = Message::user().with_text("Tell me a short joke about programming.");