KevinHuSh
commited on
Commit
·
2b25c26
1
Parent(s):
badd5fe
fix KB config reload bug (#213)
Browse files### What problem does this PR solve?
_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
api/db/services/knowledgebase_service.py
CHANGED
@@ -45,7 +45,7 @@ class KnowledgebaseService(CommonService):
|
|
45 |
fields = [
|
46 |
cls.model.id,
|
47 |
#Tenant.embd_id,
|
48 |
-
cls.embd_id,
|
49 |
cls.model.avatar,
|
50 |
cls.model.name,
|
51 |
cls.model.language,
|
|
|
45 |
fields = [
|
46 |
cls.model.id,
|
47 |
#Tenant.embd_id,
|
48 |
+
cls.model.embd_id,
|
49 |
cls.model.avatar,
|
50 |
cls.model.name,
|
51 |
cls.model.language,
|