We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd377b0 commit 0ce3c44Copy full SHA for 0ce3c44
1 file changed
src/devscontext/synthesis.py
@@ -196,7 +196,7 @@ def _get_client(self) -> Any:
196
"""Get or create the OpenAI client."""
197
if self._client is None:
198
try:
199
- from openai import AsyncOpenAI # type: ignore[import-not-found]
+ from openai import AsyncOpenAI
200
except ImportError as e:
201
raise ImportError(
202
"openai package not installed. Install with: pip install devscontext[openai]"
0 commit comments