Skip to content

Commit

Permalink
Merge pull request #528 from openai/logankilpatrick-patch-2
Browse files Browse the repository at this point in the history
Update README.md to fix typo and add examples link
  • Loading branch information
schnerd authored Nov 22, 2023
2 parents 7626655 + 873d34b commit b5fada5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import OpenAI from 'https://deno.land/x/openai@v4.19.1/mod.ts';

## Usage

The full API of this library can be found in [api.md file](https://github.com/openai/openai-node/blob/master/api.md). The code below shows how to get started using the chat completions API.
The full API of this library can be found in [api.md file](api.md) along with many [code examples](https://github.com/openai/openai-node/tree/master/examples). The code below shows how to get started using the chat completions API.

```js
import OpenAI from 'openai';
Expand Down Expand Up @@ -215,7 +215,7 @@ main();
Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#events).

Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod),
[next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming to-a-browser).
[next.js](helpers.md#integrate-wtih-next-js), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser).

## File Uploads

Expand Down

0 comments on commit b5fada5

Please sign in to comment.