mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-30 19:49:09 +00:00
Fix table not rendering
This commit is contained in:
parent
da7517b407
commit
9455a9acb1
@ -21,9 +21,10 @@
|
|||||||
"source": [
|
"source": [
|
||||||
"# GOAT\n",
|
"# GOAT\n",
|
||||||
"\n",
|
"\n",
|
||||||
"## Overview\n",
|
|
||||||
"[GOAT](https://github.com/goat-sdk/goat) is the finance toolkit for AI agents.\n",
|
"[GOAT](https://github.com/goat-sdk/goat) is the finance toolkit for AI agents.\n",
|
||||||
"\n",
|
"\n",
|
||||||
|
"## Overview\n",
|
||||||
|
"\n",
|
||||||
"Create agents that can:\n",
|
"Create agents that can:\n",
|
||||||
"\n",
|
"\n",
|
||||||
"- Send and receive payments\n",
|
"- Send and receive payments\n",
|
||||||
|
@ -316,6 +316,7 @@ def get_finance_table() -> str:
|
|||||||
]
|
]
|
||||||
for h in header[1:]:
|
for h in header[1:]:
|
||||||
row.append(feats.get(h))
|
row.append(feats.get(h))
|
||||||
|
rows.append(row)
|
||||||
return "\n".join(["|".join(row) for row in rows])
|
return "\n".join(["|".join(row) for row in rows])
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user