Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Aug 2, 2024
1 parent 411b277 commit 08d3ebf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/langchain-scripts/src/cli/docs/document_loaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ export async function fillDocLoaderIntegrationDocTemplate(fields: {
NODE_ONLY_TOOL_TIP_PLACEHOLDER,
extraFields?.nodeOnly ? NODE_ONLY_TOOLTIP : ""
)
.replaceAll(NODE_SUPPORT_PLACEHOLDER, extraFields?.nodeOnly ? "Node-only" : "All environments")
.replaceAll(
NODE_SUPPORT_PLACEHOLDER,
extraFields?.nodeOnly ? "Node-only" : "All environments"
)
.replaceAll(LOCAL_PLACEHOLDER, extraFields?.local ? "βœ…" : "❌")
.replaceAll(
SERIALIZABLE_PLACEHOLDER,
Expand Down

0 comments on commit 08d3ebf

Please sign in to comment.