-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
from collections.abc import AsyncIterator | ||
|
||
from openai import APIError, AsyncOpenAI | ||
|
||
from shelloracle.providers import Provider, ProviderError, Setting, system_prompt | ||
|
||
|
||
class XAI(Provider): | ||
name = "XAI" | ||
|
||
api_key = Setting(default="") | ||
model = Setting(default="grok-beta") | ||
|
||
def __init__(self): | ||
if not self.api_key: | ||
msg = "No API key provided" | ||
raise ProviderError(msg) | ||
self.client = AsyncOpenAI( | ||
api_key=self.api_key, | ||
base_url="https://api.x.ai/v1", | ||
) | ||
|
||
async def generate(self, prompt: str) -> AsyncIterator[str]: | ||
try: | ||
stream = await self.client.chat.completions.create( | ||
model=self.model, | ||
messages=[ | ||
{"role": "system", "content": system_prompt}, | ||
{"role": "user", "content": prompt}, | ||
], | ||
stream=True, | ||
) | ||
async for chunk in stream: | ||
if chunk.choices[0].delta.content is not None: | ||
yield chunk.choices[0].delta.content | ||
except APIError as e: | ||
msg = f"Something went wrong while querying XAI: {e}" | ||
raise ProviderError(msg) from e |