Skip to content

Commit

Permalink
Fix: Change model version in elo_qa_eval.ipynb
Browse files Browse the repository at this point in the history
 - Fix typo
  • Loading branch information
SebastianNiehusAA committed Dec 17, 2024
1 parent d10d2f2 commit 17c511e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/documentation/elo_qa_eval.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@
"outputs": [],
"source": [
"newly_added_models = [\n",
" Llama3InstructModel(name=\"llama-3.1-70b-instruct\", client=aa_client),\n",
" Llama3InstructModel(name=\"llama-3.3-70b-instruct\", client=aa_client),\n",
"]\n",
"\n",
"for model in newly_added_models:\n",
Expand Down
4 changes: 2 additions & 2 deletions src/intelligence_layer/core/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __init__(
)
if name not in [model["name"] for model in self._client.models()]:
warnings.warn(
"The provided model is not a recommended model for this model class."
"The provided model is not a recommended model for this model class. "
"Make sure that the model you have selected is suited to be use for the prompt template used in this model class."
)
self._complete: Task[CompleteInput, CompleteOutput] = _Complete(
Expand Down Expand Up @@ -414,7 +414,7 @@ def __init__(
) -> None:
if name not in self.RECOMMENDED_MODELS or name == "":
warnings.warn(
"The provided model is not a recommended model for this model class."
"The provided model is not a recommended model for this model class. "
"Make sure that the model you have selected is suited to be use for the prompt template used in this model class."
)
super().__init__(name, client)
Expand Down

0 comments on commit 17c511e

Please sign in to comment.