当前位置:   article > 正文

python实现调用通义千问API,实现对话_python 通义千问聊天室

python 通义千问聊天室

我的微信小程序上线了,AI识图生诗词文案,识别图片生成古诗词,欢迎大家使用。

(用户日访问量太少了,大家帮我踩一下,谢谢!)

以下是我在开发中的一些经验和心得。

下面是一个简单的调用通义千问大模型api,实现问答的功能,因为我做的是生成文案的小程序,所以user_prompt是输入,result是大模型的输出。

  1. # 先pip安装dashscope
  2. import dashscope
  3. # 你的通义千问API key,可以在https://www.aliyun.com/阿里云官网注册并申请
  4. dashscope.api_key='sk-****************************'
  5. from http import HTTPStatus
  6. def call_with_prompt(prompt):
  7. response = dashscope.Generation.call(
  8. model=dashscope.Generation.Models.qwen_max,
  9. prompt=prompt
  10. )
  11. if response.status_code == HTTPStatus.OK:
  12. #print(response.output.text) # The output text
  13. #print(response.usage) # The usage information
  14. return response.output.text
  15. else:
  16. #print(response.code) # The error code.
  17. #print(response.message) # The error message.
  18. return None
  19. theme = '您过奖了'
  20. user_prompt = '将我的回答:' + theme +',改写为高情商、幽默、机智的回答'
  21. result = call_with_prompt(user_prompt)
  22. print(result)

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

闽ICP备14008679号