We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c5c907 commit 1582c71Copy full SHA for 1582c71
src/langsmith/llm-auth-proxy-self-hosted.mdx
@@ -62,7 +62,7 @@ Skip this step for LangSmith SaaS. JWT signing is already configured.
62
TMPDIR_KEYS="$(mktemp -d)"
63
step crypto keypair "$TMPDIR_KEYS/pub.pem" "$TMPDIR_KEYS/priv.pem" \
64
--kty OKP --crv Ed25519 --no-password --insecure
65
-PRIV_JWK=$(step crypto key format --jwk < "$TMPDIR_KEYS/priv.pem")
+PRIV_JWK=$(step crypto key format --jwk --no-password --insecure < "$TMPDIR_KEYS/priv.pem")
66
SIGNING_JWKS=$(echo "$PRIV_JWK" | jq -c '{keys: [. + {use: "sig", alg: "EdDSA"}]}')
67
echo "$SIGNING_JWKS"
68
```
0 commit comments