1 Star 0 Fork 1

艾则麦提/python_通义

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main_img.py 954 Bytes
一键复制 编辑 原始数据 按行查看 历史
艾则麦提 提交于 2024-01-10 03:42 . first commit
import random
from http import HTTPStatus
from dashscope.api_entities.dashscope_response import Role
import dashscope
dashscope.api_key = "xxxxxxxxxxxxxxxxx" # 请将此处替换为自己的API Key
def simple_multimodal_conversation_call(img,question):
messages = [
{
"role": "user",
"content": [
{"image": f"{img}"},
{"text": f"{question}"}
]
}
]
response = dashscope.MultiModalConversation.call(model='qwen-max-1201',
messages=messages)
if response.status_code == HTTPStatus.OK:
print(response.output.choices[0]['message']['content'][0]['text'])
else:
print(response.code)
print(response.message)
img = 'https://tse2-mm.cn.bing.net/th/id/OIP-C.g9UbVfyVZX-SfD09JcYr5QHaEK?rs=1&pid=ImgDetMain'
text = '这是什么?'
simple_multimodal_conversation_call(img, text)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ezemeti/python-tongyi.git
git@gitee.com:ezemeti/python-tongyi.git
ezemeti
python-tongyi
python_通义
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385