Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ pip install oss-harmony
uv pip install oss-harmony
```

> **Note:** `oss-harmony` and `openai-harmony` both provide the `openai_harmony` Python
> module. Do not install both packages in the same environment — pip will silently
> overwrite one with the other. If you are switching between packages, uninstall the
> existing one first:
>
> ```bash
> pip uninstall openai-harmony && pip install oss-harmony
> ```

#### Example

```python
Expand Down
9 changes: 9 additions & 0 deletions docs/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ Install the package from PyPI:
pip install oss-harmony
```

> **Note:** `oss-harmony` and `openai-harmony` both provide the `openai_harmony` Python
> module. Do not install both packages in the same environment — pip will silently
> overwrite one with the other. If you are switching between packages, uninstall the
> existing one first:
>
> ```bash
> pip uninstall openai-harmony && pip install oss-harmony
> ```

Typical imports look like:

```python
Expand Down
Loading