Open
Description
If I need the logprobs value, how can I get that?
example
import requests
data = {
"model": "ernie-4-5-A21B-3B",
"prompt": "hello,",
"temperature": 0,
"max_tokens": 3,
"logprobs": 1,
"seed": 1024,
"echo": True,
}
resp = requests.post(url=url, json=data)
but I get logprobs is null in response.