fix function create to slove chunk number wrong (#1604)

### What problem does this PR solve?
fix function create to slove the problem of creating a chunk and
increasing the chunk number by 2.


### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue) #900

---------

Signed-off-by: seaver <zhudan187@qq.com>
This commit is contained in:
江不江 2024-07-19 13:36:01 +08:00 committed by GitHub
parent be6d5b76c3
commit c0090a1b4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -230,7 +230,6 @@ def create():
tenant_id, LLMType.EMBEDDING.value, embd_id)
v, c = embd_mdl.encode([doc.name, req["content_with_weight"]])
DocumentService.increment_chunk_num(req["doc_id"], doc.kb_id, c, 1, 0)
v = 0.1 * v[0] + 0.9 * v[1]
d["q_%d_vec" % len(v)] = v.tolist()
ELASTICSEARCH.upsert([d], search.index_name(tenant_id))