fix: resolve header.uid' length must be less or equal than 32 on Spark V1.5 (#2983)

This commit is contained in:
Kenny 2024-03-27 09:58:41 +08:00 committed by GitHub
parent 815beac356
commit 13694293e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,7 +148,8 @@ class SparkLLMClient:
data = {
"header": {
"app_id": self.app_id,
"uid": user_id
# resolve this error message => $.header.uid' length must be less or equal than 32
"uid": user_id[:32] if user_id else None
},
"parameter": {
"chat": {