Skip to content

Commit 88fb67f

Browse files
Update README.md
1 parent 59f5e44 commit 88fb67f

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
@@ -4,7 +4,7 @@ This is an example chat app intended to get you started with your first OpenAI A
44

55
## Basic request
66

7-
To send your first API request with the OpenAI Python SDK, make sure you have the right [dependacies installed](https://platform.openai.com/docs/quickstart?context=python) and then run the following code:
7+
To send your first API request with the [OpenAI Python SDK](https://github.com/openai/openai-python), make sure you have the right [dependencies installed](https://platform.openai.com/docs/quickstart?context=python) and then run the following code:
88

99
```python
1010
from openai import OpenAI
@@ -21,13 +21,13 @@ completion = client.chat.completions.create(
2121
print(completion.choices[0].message)
2222
```
2323

24-
This quickstart app builds on top of the example code above, with additional features like streaming.
24+
This quickstart app builds on top of the example code above, with streaming and a UI to visualize messages.
2525

2626
## Setup
2727

2828
1. If you don’t have Python installed, install it [from Python.org](https://www.python.org/downloads/).
2929

30-
2. Clone this repository.
30+
2. [Clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) this repository.
3131

3232
3. Navigate into the project directory:
3333

0 commit comments

Comments
 (0)