mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
docs: chat model pkg links (#24845)
This commit is contained in:
parent
1f5444817a
commit
943126c5fd
@ -279,7 +279,11 @@ def get_chat_model_table() -> str:
|
||||
for h in header[1:]:
|
||||
value = feats.get(h)
|
||||
if h == "package":
|
||||
row.append(value or "langchain-community")
|
||||
value = value or "langchain-community"
|
||||
name = value[len("langchain-") :]
|
||||
link = f"https://api.python.langchain.com/en/latest/{name}_api_reference.html"
|
||||
value = f"[{value}]({link})"
|
||||
row.append(value)
|
||||
else:
|
||||
if value == "partial":
|
||||
row.append("🟡")
|
||||
|
Loading…
Reference in New Issue
Block a user