Using Proxies with G4F
Learn how to configure and use proxies with the G4F library
Set the Proxy Environment Variable
You can set a global proxy for all providers in G4F by setting the G4F_PROXY
environment variable. This can be useful if you want to hide or change your IP address for the providers.
To set the proxy environment variable, run the following command in your terminal:
Replace http://host:port
with the actual proxy URL and port you want to use.
Configure Proxies in the Client
You can also configure proxies directly in the G4F client. When creating a new Client
instance, you can pass the proxies
parameter to specify the proxy settings.
The proxies
parameter accepts a dictionary with the following keys:
"all"
: Specifies the proxy URL for all requests."https"
: Specifies the proxy URL for HTTPS requests only.
If both "all"
and "https"
are provided, the "https"
proxy will be used for HTTPS requests, and the "all"
proxy will be used for other requests.
Retrieve the Configured Proxy
You can retrieve the currently configured proxy using the get_proxy()
method of the Client
instance.
This will return the proxy URL if one is configured, either through the proxies
parameter or the G4F_PROXY
environment variable. If no proxy is configured, it will return None
.
Use the Configured Proxy
Once you have configured the proxy, it will be automatically used for all requests made through the G4F client. You can proceed with using the various methods provided by the client, such as client.chat.completions.create()
, and the requests will be routed through the specified proxy.
The above code will send the request through the configured proxy, ensuring that your IP address is hidden or changed as per the proxy settings.
By following these steps, you can easily configure and use proxies with the G4F library to protect your privacy and bypass any restrictions based on your IP address.
Was this page helpful?