You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the first line of the second example, the import statement reads from clientai import client, but the client module does not exist in the clientai framework.
To fix this:
Update the import statement to match the first example: from clientai import ClientAI.
Change line 16 of the second example to properly initialize the client: client = ClientAI("groq", api_key="your-groq-key")
The text was updated successfully, but these errors were encountered:
In the first line of the second example, the import statement reads from clientai import client, but the client module does not exist in the clientai framework.
To fix this:
The text was updated successfully, but these errors were encountered: