Q
Qwen/Qwen2-VL-72B
模型介绍模型推理文件和版本分析
Qwen/Qwen2-VL-72B 在线推理
图文转文本生成
New
输入内容与模型对话
调用 API 代码
API 文档
cURL
添加令牌为:
import os import requests import json API_URL = "https://api-ai.gitcode.com/v1/chat/completions" headers = { "Authorization": f"Bearer {os.environ['ACCESS_TOKEN']}", } def query(payload): response = requests.post(API_URL, headers=headers, json=payload, stream=True) for line in response.iter_lines(): if not line.startswith(b"data:"): continue if line.strip() == b"data:[DONE]": return yield json.loads(line.decode("utf-8").lstrip("data:").rstrip("/n")) chunks = query({ "model": "Qwen/Qwen2-VL-72B", "messages": [ { "role": "user", "content": [ { "type": "image_url", "image_url": { "url": "data:image/jpeg;base64,iVBORw0KGgoAAAANSUhEUgAA..." } }, { "type": "text", "text": "用一句话描述这张图片" } ] } ], "stream": True }) for chunk in chunks: print(chunk["choices"])