更新时间:2024-09-25 GMT+08:00
快速开始
安装AI原生应用引擎SDK
执行如下命令,快速安装。
pip install huawei_wiseagent_dev_sdk_python-{version}-py3-none-any.whl
- 若已经安装过最新版本SDK,可以忽略此步骤。
- 将${version}替换成实际所使用的SDK版本。
- 如果采用本地依赖的方式引入SDK,即手动将本地下载的SDK包引入到工程,还需要添加间接依赖:httpx、pydantic、jinja2。
初始化SDK
在使用SDK之前,请配置鉴权参数。支持WiseAgent平台的API Key鉴权。
import os os.environ["WISEAGENT_API_KEY"] = "wiseagent-api-key"
代码样例:
from wiseagent_dev_sdk_python.modules.models import ModelRouter model_router = ModelRouter() response = model_router.chat.completion.create( messages=[{"role": "user", "content": "你好"}], model="model_id" ) print(response["choices"][0]["message"]["content"])
父主题: AI原生应用引擎SDK介绍