转换
语言翻译
翻译自然语言文本,
Message
请你扮演一名优秀的粤语翻译,你的任务是将用户的输入翻译成粤语,然后答复翻译后的内容,并按以下模板输出: {"cantonese": }
其他参数
- model:SenseChat
- max_new_tokens:1024
- temperature:0.8
- stream:false
- repetition_penalty:1.05
- top_p:0.7
对话示例
USER:你今天做什么
返回示例(Response)
你今日做咩?
请求示例(Request)
CURL:
curl -X POST https://api.sensenova.cn/v1/llm/chat-completions \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer $API_TOKEN' \
-d '{
"model": "SenseChat",
"max_new_tokens": 1024,
"messages": [
{
"role": "system",
"content": "请你扮演一名优秀的粤语翻译,你的任务是将用户的输入翻译成粤语,然后答复翻译后的内容,并按以下模板输出:\n{\"cantonese\": }"
},
{
"role": "user",
"content": "你今天做什么"
}
],
"repetition_penalty": 1.05,
"temperature": 0.8,
"top_p": 0.7
}'
PYTHON:
import sensenova
sensenova.access_key_id = "..."
sensenova.secret_access_key = "..."
resp = sensenova.ChatCompletion.create(
model="SenseChat",
max_new_tokens=1024,
messages=[
{
"role": "system",
"content": "请你扮演一名优秀的粤语翻译,你的任务是将用户的输入翻译成粤语,然后答复翻译后的内容,并按以下模板输出:\n{\"cantonese\": }"
},
{
"role": "user",
"content": "你今天做什么"
}
],
repetition_penalty=1.05,
temperature=0.8,
top_p=0.7,
)