Remove agentic finance references

This commit is contained in:
Agustin Armellini Fischer 2025-03-25 19:02:00 +01:00
parent 58c2f34c35
commit 45657cfd5b

View File

@ -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)