1 Star 0 Fork 0

鲸落/bilibiliAudioDownloader-main

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gemini_llm_2.py 713 Bytes
一键复制 编辑 原始数据 按行查看 历史
鲸落 提交于 2024-02-05 17:48 . 上传 代码
from langchain_core.messages import HumanMessage
from langchain_google_genai import ChatGoogleGenerativeAI
image_url = "https://images.ctfassets.net/hrltx12pl8hq/vfJfws5pq5PK8xSX6I1bV/d542f5862da3701e2afe687e9efbeff6/hero-image-robot-.jpg?fit=fill&w=840&h=473&fm=webp"
llm = ChatGoogleGenerativeAI(model="gemini-pro-vision", google_api_key="AIzaSyCCpv_xFewWVEAK__vNyRIsT-PZQH1TJsk",
transport="rest")
message = HumanMessage(
content=[
{
"type": "text",
"text": "这幅图描绘的是什么?"
}, {
"type": "image_url",
"image_url": image_url
}
]
)
invoke = llm.invoke([message])
print(invoke.content)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/whale_fall/bilibiliAudioDownloader-main.git
[email protected]:whale_fall/bilibiliAudioDownloader-main.git
whale_fall
bilibiliAudioDownloader-main
bilibiliAudioDownloader-main
master

搜索帮助