googleapis / googleapis/python-aiplatform

Proxy settings configuration for Vertex AI SDK

Ouverte
#4,810 0 commentaires 0 réactions 0 personnes assignées Voir sur GitHub
api: vertex-ai
Langage dominant
Python
Étoiles
905
Forks
465
Merge moyen
1 j 13 h
PR mergées (30 j)
44

Description

Hello !

I'm using the Vertex AI Python SDK with a generative model in my application as follows:

```python
import vertexai
vertexai.init(...)
model = GenerativeModel("...")
generation_config = GenerationConfig("...")
model.generate_content(..., stream=True)
```

I want the `generate_content` method to route its requests through a proxy.

From my research, I found that, with this library, proxies can be configured using the `https_proxy` and `http_proxy` environment variables or programmatically within the Python code, for example:

```python
import os
os.environ["https_proxy"] = "http://my_proxy:8080"
```

However, I would like to know if there is another way to configure a proxy for this call without relying on `os.environ` or setting environment variables.

This is important because modifying `os.environ` or system-level environment variables could unintentionally affect other parts of the application.
I'd appreciate any suggestions on alternative approaches.
Thanks!

Guide de contribution

Ouvrir le guide de contribution

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.