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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Rust and python packages can be built using this repo. We support development an

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/attested-ohttp-client)

## Encapsulated error messages
In addition to the encapsulated response from confidential whisper model, the error messages will also be declassified to enhance confidentiality.

## Python package

Build the pyohttp package as follows.
Expand Down
1 change: 1 addition & 0 deletions ohttp-client-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ async fn main() -> Res<()> {
println!("{chunk}");
}
} else {
// Decapsulated error message.
println!("Request failed with status {status}");
error!("{}", response.text().await?);
}
Expand Down