Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/blaxel/livekit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
"""Blaxel LiveKit integration module."""

from .model import * # noqa: F403, F401
from .tools import * # noqa: F403, F401
try:
from .model import * # noqa: F403, F401
from .tools import * # noqa: F403, F401
except ImportError as e:
raise ImportError(
"The livekit extra dependencies are required to use the LiveKit integration. "
"Install them with: pip install blaxel[livekit]"
) from e
10 changes: 8 additions & 2 deletions src/blaxel/openai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
"""Blaxel OpenAI integration module."""

from .model import * # noqa: F403, F401
from .tools import * # noqa: F403, F401
try:
from .model import * # noqa: F403, F401
from .tools import * # noqa: F403, F401
except ImportError as e:
raise ImportError(
"The openai extra dependencies are required to use the OpenAI Agents integration. "
"Install them with: pip install blaxel[openai]"
) from e
Loading