mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
docs: fix kv store column headers (#24941)
![Screenshot 2024-08-01 at 12 32 19 PM](https://github.com/user-attachments/assets/888056b7-3065-4be0-a6b8-bcab5b729c2c)
This commit is contained in:
parent
2204d8cb7d
commit
02db66d764
@ -82,8 +82,8 @@ DEPRECATED = []
|
||||
def get_kv_store_table() -> str:
|
||||
"""Get the table of KV stores."""
|
||||
|
||||
header = ["name", "package", "local", "downloads"]
|
||||
title = ["Class", "Package", "Local", "Downloads"]
|
||||
header = ["name", "local", "package", "downloads"]
|
||||
title = ["Class", "Local", "Package", "Downloads"]
|
||||
rows = [title, [":-"] + [":-:"] * (len(title) - 1)]
|
||||
for loader, feats in sorted(KV_STORE_FEAT_TABLE.items()):
|
||||
if not feats or loader in DEPRECATED:
|
||||
|
Loading…
Reference in New Issue
Block a user