Skip to content

Commit

Permalink
minor doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wkok committed Mar 11, 2023
1 parent f49eb42 commit 39f8779
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wkok/openai_clojure/api.clj
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
Streaming of token events is supported via the `:stream` param, see [Streaming Tokens](/doc/03-streaming.md)
Also see the [OpenAI](https://platform.openai.com/docs/api-reference/chat/create) documentation
Also see the [OpenAI documentation](https://platform.openai.com/docs/api-reference/chat/create)
"
([params]
(core/response-for :openai :create-chat-completion params)))
Expand Down Expand Up @@ -181,7 +181,7 @@
(create-transcription {:file (clojure.java.io/file \"path/to/audio.mp3\")
:model \"whisper-1\"})
```
Also see the [OpenAI documentation](https://platform.openai.com/docs/api-reference/audio/transcriptions)
Also see the [OpenAI documentation](https://platform.openai.com/docs/api-reference/audio/create)
"
[params]
(core/response-for :openai :create-transcription params))
Expand All @@ -194,7 +194,7 @@
(create-translation {:file (clojure.java.io/file \"path/to/file/german.m4a\")
:model \"whisper-1\"})
```
Also see the [OpenAI documentation](https://platform.openai.com/docs/api-reference/audio/translations)
Also see the [OpenAI documentation](https://platform.openai.com/docs/api-reference/audio/create)
"
[params]
(core/response-for :openai :create-translation params))
Expand Down

0 comments on commit 39f8779

Please sign in to comment.