WWW.YOUINFO.SITE
标签聚合 vertex

/tag/vertex

LinuxDo 最新话题 · 2026-05-28 16:49:46+08:00 · tech

抽奖主题: gcp额度用不完了,还有十几天到期我也蹬不完了,做了5个500次调用的key,只有Gemini模型。(通过hub站自己的渠道,原vertex key限不了额度。用hub站应该不违规吧?如果违规提示我一下……) 奖品详情: [奖品]:5个 vertex的 Gemini模型 apikey(500次)6月9日到期 活动时间: 开始时间:2026-05-28 截止时间:2026-05-29 14:00 参与方式: 在本帖下回复任意内容 抽奖规则: 每位用户仅允许参与一次。 使用 官方抽奖工具 随机抽取中奖者。 注意事项: 本活动将在活动截止时间后关闭回帖,以确保公正性。 中奖者将在活动结束后12小时内在本帖公布,并通过私信通知领奖方式。 所有规则及抽奖结果由活动发起人和论坛 管理团队 最终解释。 期待您的积极参与,祝您好运!如有任何疑问,欢迎随时联系抽奖发起人。 2 个帖子 - 2 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-24 11:55:56+08:00 · tech

如图,我就用来调用vertex的gemini模型+开了台服务器,眼看300赠金快过期了就给亲友们猛蹬,一没留神就超了40刀 然后我问gemini怎么办,它让我去找gcp的客服,最后免了30刀左右,还剩下10刀左右让我自己付,行吧!10刀比起40刀已经能接受了,主要这个谷歌号是我大号绑定了太多东西,不能抛弃。于是我就禁用了vertex的ai,把开的2C4G的服务器关了,结果本来只有9.92刀,过了几天,今天一看变成10.08刀了,多了0.16刀,这才三四天 我一看明细,是仅剩的留的那台免费服务器的费用,不是哥们,说好的永久免费服务器呢!吓得我立马把之前开的gcp免费的1C1G30GB的服务器也删了 所以大家小心别被gcp反薅羊毛啊! 免费服务器也去看看!也不是一个月就几美分啊 3 个帖子 - 3 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-15 10:27:31+08:00 · tech

由于 Google AI 的 Cloud 赠金只能用在 Vertex AI 上,Vertex AI 的调用又特别麻烦。特此记录下调用过程。 在 Benefits 页面领取赠金 如果之前没有创建 Google Cloud 项目,需要先创建一个 Google Cloud 项目,并且将你的赠金绑定到这个 Google Cloud 项目下 去 Google Agent Platform ,申请一个类型为 Agent Platform 的 API Key 不要 申请类型为 Gemini API 的 API Key,这个类型的 Key 不走赠金 P.S. 这个平台以前叫 Google Vertex AI 使用 google-genai 包来进行 API 调用 使用 OpenAI 格式的调用需要使用凭据,有点麻烦,不太推荐 from google import genai API_KEY = "AQ.xxxx_xxxx_xxxx-xxxx" # [CRITICAL] need to set `vertexai=True` in generate client object client = genai.Client(api_key=API_KEY, vertexai=True) response = client.models.generate_content( model="gemini-3-flash-preview", contents="Explain how AI works in a few words" ) # Concatenate text parts only (thinking models attach non-text metadata like thought_signature). text = "".join( p.text for p in response.candidates[0].content.parts if getattr(p, "text", None) ) print(text) References 询问各位佬友Aistudio的额度问题 关于 Google AI Pro 每月 10 美元赠金突然无法领取的问题以及解决方法 Gemini API Quick Start Generative AI on Vertex AI | Google Cloud Documentation 1 个帖子 - 1 位参与者 阅读完整话题

LinuxDo 最新话题 · 2026-05-11 07:26:20+08:00 · tech

DEV Community Using Gemini CLI with Vertex AI (Without Worrying About Your Data) If you've been playing around with Gemini CLI, you might have glossed over a small but important... 自存,用于使用GCP赠金计费以及 No training data opt-in – your inputs aren’t used to improve Google’s models Enterprise compliance – easier to satisfy security reviews and internal policies Audit logging – Cloud Logging captures every API call, useful for debugging and compliance Keyless auth – no credentials file to accidentally commit or rotate 3 个帖子 - 2 位参与者 阅读完整话题