You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add configurable allowed_schemes for URL validation
Add allowed_schemes parameter to AgentFinderToolset, defaulting to
("http", "https") for security. Users can opt in to additional
schemes for dev/testing (file://) or gRPC support (grpc://, grpcs://).
Usage:
AgentFinderToolset() # strict: http/https only
AgentFinderToolset(allowed_schemes=["http", "https", "file"])
AgentFinderToolset(allowed_schemes=["http", "https", "grpc", "grpcs"])
0 commit comments