googleapis / googleapis/python-aiplatform

Proxy settings configuration for Vertex AI SDK

未关闭
#4,810 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
api: vertex-ai
主要语言
Python
星标
905
派生
465
平均合并
1 天 13 小时
30 天内合并 PR
44

描述

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!

贡献指南

打开贡献指南

调研方向

Start with the Vertex AI Python SDK's generate_content and initialization paths, and compare their documented proxy configuration options with the current http_proxy and https_proxy environment-variable behavior. Done would require an agreed, scoped alternative that isolates proxy settings to this client or call, with coverage or documentation showing it does not alter unrelated application behavior.

由索引模型根据 Issue 内容生成。

评估

技术栈
python
领域
ai, networking
Issue 类型
功能
难度
4/5
预计耗时
3-5 天
活跃度
停滞
描述清晰度
需要澄清
新手友好度
25/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。