Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .config/supply-chain/imports.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1628,6 +1628,11 @@ criteria = "safe-to-deploy"
delta = "0.10.5 -> 0.10.6"
notes = "Only new code is some loongarch64 additions which include assembly code for that platform."

[[audits.bytecode-alliance.audits.sha1_smol]]
who = "Alex Crichton <alex@alexcrichton.com>"
criteria = "safe-to-deploy"
version = "1.0.1"

[[audits.bytecode-alliance.audits.sharded-slab]]
who = "Pat Hickey <phickey@fastly.com>"
criteria = "safe-to-deploy"
Expand Down
12 changes: 10 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions crates/jp_cli/src/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,13 @@ impl From<jp_llm::Error> for Error {
]
.into(),
CredentialChain(error) => with_cause(&error, "No usable credential"),
OpenaiCredentialChain(error) => with_cause(&error, "No usable credential"),
ApiKeyChain(error) => with_cause(&error, "No usable credential"),
UnsupportedForCredential(error) => [
("message", "Unsupported for the resolved credential".into()),
("error", error),
]
.into(),
InvalidResponse(error) => [
("message", "Invalid response received".into()),
("error", error),
Expand Down
Loading
Loading