We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from scrapegraphai.utils.proxy_rotation import search_proxy_servers search_proxy_servers()
graph_config = { "llm": { "model": "gpt-4o", }, "verbose": True, "max_results": 1, # "search_engine": "bing", "headless": False, "loader_kwargs": { "proxy": { "server": "here i put the server", } } }
search_graph = SearchGraph( prompt=PROMPTS.get("propmt_vvs")["prompt"].format(**data), config=graph_config, schema=model, ) ValueError: Proxy dictionary is missing required fields.
version 1.31.
The thing is that I cannot manually specify the proxy. it says I am missing fields, but I have all the ones in the documentation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from scrapegraphai.utils.proxy_rotation import search_proxy_servers
search_proxy_servers()
graph_config = {
"llm": {
"model": "gpt-4o",
},
"verbose": True,
"max_results": 1,
# "search_engine": "bing",
"headless": False,
"loader_kwargs": {
"proxy": {
"server": "here i put the server",
}
}
}
search_graph = SearchGraph(
prompt=PROMPTS.get("propmt_vvs")["prompt"].format(**data),
config=graph_config,
schema=model,
)
ValueError: Proxy dictionary is missing required fields.
version 1.31.
The thing is that I cannot manually specify the proxy. it says I am missing fields, but I have all the ones in the documentation
The text was updated successfully, but these errors were encountered: