From aa9faa85124f4ef6af8284921482a8ee628dcd9b Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 2 May 2024 14:04:29 -0700 Subject: [PATCH] docs: model table keywords, remove tool calling from llm (#21225) --- docs/scripts/model_feat_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/scripts/model_feat_table.py b/docs/scripts/model_feat_table.py index f8a59adba85..cb8649ca095 100644 --- a/docs/scripts/model_feat_table.py +++ b/docs/scripts/model_feat_table.py @@ -67,6 +67,7 @@ LLM_TEMPLATE = """\ --- sidebar_position: 1 sidebar_class_name: hidden +keywords: [compatibility] --- # LLMs @@ -87,6 +88,7 @@ CHAT_MODEL_TEMPLATE = """\ --- sidebar_position: 0 sidebar_class_name: hidden +keywords: [compatibility, bind_tools, tool calling, function calling, structured output, with_structured_output] --- # Chat models @@ -143,7 +145,6 @@ def get_llm_table(): "_astream", "batch_generate", "batch_agenerate", - "tool_calling", ] title = [ "Model", @@ -153,7 +154,6 @@ def get_llm_table(): "Async stream", "Batch", "Async batch", - "Tool calling", ] rows = [title, [":-"] + [":-:"] * (len(title) - 1)] for llm, feats in sorted(final_feats.items()):