Skip to content

Commit f1ba688

Browse files
authored
fix: fixing incorrect import issue (#1414)
1 parent 2d059ff commit f1ba688

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instructor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107

108108
__all__ += ["from_perplexity"]
109109

110-
if importlib.util.find_spec("google") is not None:
110+
if importlib.util.find_spec("google.genai") is not None:
111111
from .client_genai import from_genai
112112

113113
__all__ += ["from_genai"]

0 commit comments

Comments
 (0)