From 45657cfd5bf1b5c7afa19be0e1c9901d4fc09627 Mon Sep 17 00:00:00 2001 From: Agustin Armellini Fischer Date: Tue, 25 Mar 2025 19:02:00 +0100 Subject: [PATCH] Remove agentic finance references --- docs/scripts/tool_feat_table.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/scripts/tool_feat_table.py b/docs/scripts/tool_feat_table.py index 5a241474f52..c80e044b251 100644 --- a/docs/scripts/tool_feat_table.py +++ b/docs/scripts/tool_feat_table.py @@ -169,7 +169,7 @@ DATABASE_TOOL_FEAT_TABLE = { }, } -AGENTIC_FINANCE_TOOL_FEAT_TABLE = { +FINANCE_TOOL_FEAT_TABLE = { "GOAT": { "link": "/docs/integrations/tools/goat", "pricing": "Free", @@ -232,7 +232,7 @@ The following table shows tools that can be used to automate tasks in databases: The following table shows tools that can be used to execute financial transactions such as payments, purchases, and more: -{agentic_finance_table} +{finance_table} ## All tools @@ -304,15 +304,15 @@ def get_database_table() -> str: return "\n".join(["|".join(row) for row in rows]) -def get_agentic_finance_table() -> str: - """Get the table of agentic finance tools.""" - header = ["tool", "pricing", "available_data"] +def get_finance_table() -> str: + """Get the table of finance tools.""" + header = ["tool", "pricing", "capabilities"] title = ["Tool/Toolkit", "Pricing", "Capabilities"] rows = [title, [":-"] + [":-:"] * (len(title) - 1)] - for agentic_finance_tool, feats in sorted(AGENTIC_FINANCE_TOOL_FEAT_TABLE.items()): + for finance_tool, feats in sorted(FINANCE_TOOL_FEAT_TABLE.items()): # Fields are in the order of the header row = [ - f"[{agentic_finance_tool}]({feats['link']})", + f"[{finance_tool}]({feats['link']})", ] for h in header[1:]: row.append(feats.get(h)) @@ -383,7 +383,7 @@ if __name__ == "__main__": productivity_table=get_productivity_table(), webbrowsing_table=get_webbrowsing_table(), database_table=get_database_table(), - agentic_finance_table=get_agentic_finance_table(), + finance_table=get_finance_table(), ) with open(output_integrations_dir / "tools" / "index.mdx", "w") as f: f.write(tools_page)