Переглянути джерело

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

tags/0.5.11
Kenny 1 рік тому
джерело
коміт
13694293e3
Аккаунт користувача з таким Email не знайдено

+ 2
- 1
api/core/model_runtime/model_providers/spark/llm/_client.py Переглянути файл

@@ -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": {

Завантаження…
Відмінити
Зберегти