-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added providers fireworks and replciate with test code and outputs in…
… multi_fm_client.ipynb
- Loading branch information
Showing
5 changed files
with
202 additions
and
52 deletions.
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
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,34 @@ | ||
"""The interface to the Fireworks API.""" | ||
|
||
import os | ||
|
||
from ..framework.provider_interface import ProviderInterface | ||
|
||
class FireworksInterface(ProviderInterface): | ||
"""Implements the ProviderInterface for interacting with Fireworks's APIs.""" | ||
|
||
def __init__(self): | ||
"""Set up the Fireworks client using the API key obtained from the user's environment.""" | ||
from fireworks.client import Fireworks | ||
|
||
self.fireworks_client = Fireworks(api_key=os.getenv("FIREWORKS_API_KEY")) | ||
|
||
def chat_completion_create(self, messages=None, model=None, temperature=0): | ||
"""Request chat completions from the Fireworks API. | ||
Args: | ||
---- | ||
model (str): Identifies the specific provider/model to use. | ||
messages (list of dict): A list of message objects in chat history. | ||
temperature (float): The temperature to use in the completion. | ||
Returns: | ||
------- | ||
The API response with the completion result. | ||
""" | ||
return self.fireworks_client.chat.completions.create( | ||
model=model, | ||
messages=messages, | ||
temperature=temperature, | ||
) |
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,34 @@ | ||
"""The interface to the Replicate API.""" | ||
|
||
import os | ||
|
||
from ..framework.provider_interface import ProviderInterface | ||
|
||
class ReplicateInterface(ProviderInterface): | ||
"""Implements the ProviderInterface for interacting with Replicate's APIs.""" | ||
|
||
def __init__(self): | ||
"""Set up the Replicate client using the API key obtained from the user's environment.""" | ||
from openai import OpenAI | ||
|
||
self.replicate_client = OpenAI(api_key=os.getenv("REPLICATE_API_KEY"), base_url="https://openai-proxy.replicate.com/v1") | ||
|
||
def chat_completion_create(self, messages=None, model=None, temperature=0): | ||
"""Request chat completions from the Replicate API. | ||
Args: | ||
---- | ||
model (str): Identifies the specific provider/model to use. | ||
messages (list of dict): A list of message objects in chat history. | ||
temperature (float): The temperature to use in the completion. | ||
Returns: | ||
------- | ||
The API response with the completion result. | ||
""" | ||
return self.replicate_client.chat.completions.create( | ||
model=model, | ||
messages=messages, | ||
temperature=temperature, | ||
) |
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