Skip to content

Commit 2545871

Browse files
committed
Fix typo
1 parent b447db4 commit 2545871

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ For a quick test you can pass your token directly to a new client:
103103
```ruby
104104
client = OpenAI::Client.new(
105105
access_token: "access_token_goes_here",
106-
log_errors: true # Highly recommended in development, so you can see what errors OpenAI is returning. Not recommend in production.
107-
)
106+
log_errors: true # Highly recommended in development, so you can see what errors OpenAI is returning. Not recommended in production.
107+
)
108108
```
109109

110110
### With Config
@@ -115,7 +115,7 @@ For a more robust setup, you can configure the gem with your API keys, for examp
115115
OpenAI.configure do |config|
116116
config.access_token = ENV.fetch("OPENAI_ACCESS_TOKEN")
117117
config.organization_id = ENV.fetch("OPENAI_ORGANIZATION_ID") # Optional.
118-
config.log_errors = true # Highly recommended in development, so you can see what errors OpenAI is returning. Not recommend in production.
118+
config.log_errors = true # Highly recommended in development, so you can see what errors OpenAI is returning. Not recommended in production.
119119
end
120120
```
121121

0 commit comments

Comments
 (0)