Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
renamed the client variable name to client, as calling it unify would…
Browse files Browse the repository at this point in the history
… clash with the import.
  • Loading branch information
djl11 committed Jul 24, 2024
1 parent a7e7547 commit 75b6a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/concepts/unify_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ Sample inference
.. code-block:: python
from unify import Unify
unify = Unify("llama-3-8b-chat@fireworks-ai", api_key="$UNIFY_API_KEY")
response = unify.generate("Say hi.")
client = Unify("llama-3-8b-chat@fireworks-ai", api_key="$UNIFY_API_KEY")
response = client.generate("Say hi.")
OpenAI Python Package
^^^^^^^^^^^^^^^^^^^^^
Expand Down

0 comments on commit 75b6a76

Please sign in to comment.