MCPcopy Create free account
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / ProxyConfig

Class ProxyConfig

scrapegraphai/utils/research_web.py:35–44  ·  view source on GitHub ↗

Model for proxy configuration validation.

Source from the content-addressed store, hash-verified

33
34
35class ProxyConfig(BaseModel):
36 """Model for proxy configuration validation."""
37
38 server: str = Field(..., description="Proxy server address including port")
39 username: Optional[str] = Field(
40 None, description="Username for proxy authentication"
41 )
42 password: Optional[str] = Field(
43 None, description="Password for proxy authentication"
44 )
45
46
47class SearchConfig(BaseModel):

Callers 1

format_proxyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected