diff --git a/README.md b/README.md index f7141309..5e4dea05 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,9 @@ If you would like to enable this functionality, you can set `log_errors` to `tru ##### Faraday middleware -You can pass [Faraday middleware](https://lostisland.github.io/faraday/#/middleware/index) to the client in a block, eg. to enable verbose logging with Ruby's [Logger](https://ruby-doc.org/3.2.2/stdlibs/logger/Logger.html): +You can pass [Faraday middleware](https://lostisland.github.io/faraday/#/middleware/index) to the client in a block, eg: + +- To enable verbose logging with Ruby's [Logger](https://ruby-doc.org/3.2.2/stdlibs/logger/Logger.html): ```ruby client = OpenAI::Client.new do |f| @@ -203,6 +205,13 @@ You can pass [Faraday middleware](https://lostisland.github.io/faraday/#/middlew end ``` +- To add a web debugging proxy: + +```ruby + client = OpenAI::Client.new do |f| + f.proxy = { uri: "http://localhost:8888" } + end +``` #### Azure To use the [Azure OpenAI Service](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/) API, you can configure the gem like this: