Dolly
說明
支持的領域 / 任務:aigc
Dolly模型是由Databricks出品的大規模語言模型,它在DashScope上的模型名稱為"dolly-12b-v2"。該模型是在pythia-12b的基礎上,使用databricks-dolly-15k數據集微調得到的。數據集包括頭腦風暴、分類、生成、問答、信息抽取等任務的語料。更多信息可以參考Dolly的開源repo。
快速開始
前提條件
已開通服務并獲得API-KEY:開通DashScope并創建API-KEY。
已安裝SDK:安裝DashScope SDK。
示例代碼
以下示例展示了調用Dolly API對一個用戶指令進行響應的代碼。
說明
需要使用您的API-KEY替換示例中的 your-dashscope-api-key ,代碼才能正常運行。
# For prerequisites running the following sample, visit http://bestwisewords.com/document_detail/611472.html
import dashscope
from dashscope import Generation
from http import HTTPStatus
dashscope.api_key='your-dashscope-api-key'
response = Generation.call(
model='dolly-12b-v2',
prompt='翻一下:春天來了,花朵都開了。'
)
# The response status_code is HTTPStatus.OK indicate success,
# otherwise indicate request is failed, you can get error code
# and message from code and message.
if response.status_code == HTTPStatus.OK:
print(response.output) # The output text
print(response.usage) # The usage information
else:
print(response.code) # The error code.
print(response.message) # The error message.
調用成功后,將會返回如下示例結果。
{"text": "Spring has come, flowers blossomed."}
{"input_tokens": 0, "output_tokens": 0}
了解更多
有關Dolly模型API的詳細調用文檔可前往API詳情頁面進行了解。
文檔內容是否對您有幫助?