1
0
mirror of https://github.com/hwchase17/langchain.git synced 2025-05-04 14:48:07 +00:00

Fix table not rendering

This commit is contained in:
Agustin Armellini Fischer 2025-03-25 21:35:26 +01:00
parent da7517b407
commit 9455a9acb1
2 changed files with 3 additions and 1 deletions
docs
docs/integrations/tools
scripts

View File

@ -21,9 +21,10 @@
"source": [
"# GOAT\n",
"\n",
"## Overview\n",
"[GOAT](https://github.com/goat-sdk/goat) is the finance toolkit for AI agents.\n",
"\n",
"## Overview\n",
"\n",
"Create agents that can:\n",
"\n",
"- Send and receive payments\n",

View File

@ -316,6 +316,7 @@ def get_finance_table() -> str:
]
for h in header[1:]:
row.append(feats.get(h))
rows.append(row)
return "\n".join(["|".join(row) for row in rows])