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 1e8d3e2 commit 7c68c08Copy full SHA for 7c68c08
dspy/adapters/types/image.py
@@ -78,7 +78,7 @@ def is_url(string: str) -> bool:
78
"""Check if a string is a valid URL."""
79
try:
80
result = urlparse(string)
81
- return all([result.scheme in ("http", "https"), result.netloc])
+ return all([result.scheme in ("http", "https", "gs"), result.netloc])
82
except ValueError:
83
return False
84
0 commit comments