mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-06 13:18: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:
|
def get_kv_store_table() -> str:
|
||||||
"""Get the table of KV stores."""
|
"""Get the table of KV stores."""
|
||||||
|
|
||||||
header = ["name", "package", "local", "downloads"]
|
header = ["name", "local", "package", "downloads"]
|
||||||
title = ["Class", "Package", "Local", "Downloads"]
|
title = ["Class", "Local", "Package", "Downloads"]
|
||||||
rows = [title, [":-"] + [":-:"] * (len(title) - 1)]
|
rows = [title, [":-"] + [":-:"] * (len(title) - 1)]
|
||||||
for loader, feats in sorted(KV_STORE_FEAT_TABLE.items()):
|
for loader, feats in sorted(KV_STORE_FEAT_TABLE.items()):
|
||||||
if not feats or loader in DEPRECATED:
|
if not feats or loader in DEPRECATED:
|
||||||
|
Loading…
Reference in New Issue
Block a user