Skip to content

Commit

Permalink
chore: lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Jul 31, 2024
1 parent 7a2eb3a commit 19335f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/langchain-scripts/src/cli/docs/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,10 @@ export async function fillChatIntegrationDocTemplate(fields: {
.replace(TOKEN_USAGE_PLACEHOLDER, extraFields?.tokenUsage ? "βœ…" : "❌")
.replace(LOGPROBS_PLACEHOLDER, extraFields?.logprobs ? "βœ…" : "❌")
.replace(LOCAL_PLACEHOLDER, extraFields?.local ? "βœ…" : "❌")
.replace(SERIALIZABLE_PLACEHOLDER, extraFields?.serializable ? "βœ…" : "beta")
.replace(
SERIALIZABLE_PLACEHOLDER,
extraFields?.serializable ? "βœ…" : "beta"
)
.replace(PY_SUPPORT_PLACEHOLDER, extraFields?.pySupport ? "βœ…" : "❌");

const docPath = path.join(
Expand Down

0 comments on commit 19335f8

Please sign in to comment.