mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-05 12:48:12 +00:00
docs: fix kv store column headers (#24941)

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