当前位置:   article > 正文

如何使用程序调用通义千问_node调用千问

node调用千问
之前分享了,使用程序调用文心一言。但是很快文心一言就要收费了。阿里的提供了暂时免费版的基础模型,效果还算可以。所以再分享一下,如何使用程序来调用通义千问的模型。
整体很简单,分三步:导入依赖;获取ApiKey;使用程序调用模型。
体感:使用简单,效果还可以,但是速度很慢!

安装

支持两种方式,python和java

python 导入依赖

pip install dashscope

java安装:安装DashScope SDK_模型服务灵积(DashScope)-阿里云帮助中心

获取API-KEY

如何开通DashScope并创建API-KEY_模型服务灵积(DashScope)-阿里云帮助中心

代码测试

python代码

  1. import dashscope
  2. import time
  3. from http import HTTPStatus
  4. # 替换api key
  5. dashscope.api_key="sk-f7a06881b8814bdebd19252d47ccc6f1"
  6. def sample_sync_call():
  7.     start_time = time.time() # 记录开始时间
  8.     prompt_text = '用土豆可以做什么饭'
  9.     resp = dashscope.Generation.call(
  10.         model='qwen-max',
  11.         prompt=prompt_text
  12. )
  13.     end_time = time.time() # 记录结束时间
  14. # The response status_code is HTTPStatus.OK indicate success,
  15. # otherwise indicate request is failed, you can get error code
  16. and message from code and message.
  17.     if resp.status_code == HTTPStatus.OK:
  18. print(resp.output) # The output text
  19. print(resp.usage) # The usage information
  20.     else:
  21. print(resp.code) # The error code.
  22. print(resp.message) # The error message.
  23. # 计算并打印调用时间
  24. print("调用时间:"end_time - start_time"秒")
  25. sample_sync_call()

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

闽ICP备14008679号