Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lingyielia committed Jul 6, 2024
1 parent e0b08f4 commit 8106cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vizro-ai/src/vizro_ai/chains/_llm_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _get_llm_model(model: Optional[Union[ChatOpenAI, str]] = None) -> BaseChatMo
if any(model in model_list for model_list in SUPPORTED_MODELS.values()):
vendor = model_to_vendor[model]
if DEFAULT_WRAPPER_MAP.get(vendor) is None:
raise ValueError(f"Addtitional library to support {vendor} models is not installed.")
raise ValueError(f"Additional library to support {vendor} models is not installed.")
return DEFAULT_WRAPPER_MAP.get(vendor)(model_name=model, temperature=DEFAULT_TEMPERATURE)

raise ValueError(
Expand Down

0 comments on commit 8106cdf

Please sign in to comment.