mirror of
https://github.com/hwchase17/langchain.git
synced 2026-04-02 18:32:56 +00:00
wip
This commit is contained in:
@@ -19,9 +19,11 @@ function Imports({ imports }) {
|
||||
<b style={{ paddingLeft: "0.65rem", marginBottom: "0.45rem" }}>
|
||||
API Reference:
|
||||
</b>
|
||||
{imports.map(({ imported, source, docs }) => (
|
||||
<span key={imported}><a href={docs}>{imported}</a></span>
|
||||
)).join(" | ")}
|
||||
{imports.map(({ imported, source, docs }, index) => (
|
||||
<span key={imported}>
|
||||
<a href={docs}>{imported}</a>{index < imports.length - 1 ? ', ' : ''}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user