We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ea8086 commit cc23bfbCopy full SHA for cc23bfb
src/agentlab/llm/chat_api.py
@@ -443,6 +443,15 @@ def __getattr__(name: str):
443
444
This lets users import HuggingFaceURLChatModel from agentlab.llm.chat_api
445
without importing heavy dependencies unless actually used.
446
+
447
+ Args:
448
+ name: The name of the attribute to retrieve.
449
450
+ Returns:
451
+ The requested class or raises AttributeError if not found.
452
453
+ Raises:
454
+ AttributeError: If the requested attribute is not available.
455
"""
456
if name == "HuggingFaceURLChatModel":
457
from agentlab.llm.huggingface_utils import HuggingFaceURLChatModel
0 commit comments