Enable multiple llms
This commit is contained in:
@@ -13,13 +13,13 @@ class MistralLlmEngine(LlmEngine):
|
||||
self,
|
||||
model: str,
|
||||
temperature: float,
|
||||
token_limit: int,
|
||||
api_key: str,
|
||||
token_limit: int
|
||||
):
|
||||
self._model = model
|
||||
self._temperature = temperature
|
||||
self._api_key = api_key
|
||||
self._token_limit = token_limit
|
||||
self._api_key = api_key
|
||||
self._client = Mistral(api_key=api_key)
|
||||
self._tokenizer = MistralTokenizer.v3()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user