当前位置:   article > 正文

通过api-key使用通义千问_通义千问 api key

通义千问 api key

一、申请API-KEY值

打开API-KEY申请指导官网:https://help.aliyun.com/zh/dashscope/developer-reference/activate-dashscope-and-create-an-api-key
跟随官网创建API-KEY

二、安装DashScope SDK

前提条件:
  已安装Python3.8及以上版本。请确保安装正确的Python版本,可能需要pip3 install dashscope。

# 安装dashscope,可在虚拟环境中安装
pip install dashscope
  • 1
  • 2

三、通过代码使用通义千问

激活虚拟环境,运行

import requests
import os

api_key = os.getenv("DASHSCOPE_API_KEY")
url = 'https://dashscope.aliyuncs.com/api/v1/services/aigc/text-generation/generation'
headers = {'Content-Type': 'application/json',
           'Authorization':f'Bearer {"YOUR_KEY"}'}
body = {
    'model': 'qwen-turbo',
    "input": {
        "messages": [
            {
                "role": "system",
                "content": "You are a helpful assistant."
            },
            {
                "role": "user",
                "content": input("请输入:")
            }
        ]
    },
    "parameters": {
        "result_format": "message"
    }
}

response = requests.post(url, headers=headers, json=body)

# response.json()['output']['choices'][0]['message']['content']为回复的内容
print(response.json())
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/951413
推荐阅读
相关标签
  

闽ICP备14008679号