Explorar el Código

Add a default value for do_refer in Dialog (#2383)

### What problem does this PR solve?

Add a default value for do_refer in Dialog

### Type of change

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

---------

Co-authored-by: liuhua <10215101452@stu.ecun.edu.cn>
tags/v0.11.0
liuhua hace 1 año
padre
commit
ba834aee26
No account linked to committer's email address
Se han modificado 2 ficheros con 5 adiciones y 2 borrados
  1. 1
    0
      api/db/db_models.py
  2. 4
    2
      api/db/services/api_service.py

+ 1
- 0
api/db/db_models.py Ver fichero

do_refer = CharField( do_refer = CharField(
max_length=1, max_length=1,
null=False, null=False,
default="1",
help_text="it needs to insert reference index into answer or not") help_text="it needs to insert reference index into answer or not")
rerank_id = CharField( rerank_id = CharField(

+ 4
- 2
api/db/services/api_service.py Ver fichero

# limitations under the License. # limitations under the License.
# #
from datetime import datetime from datetime import datetime

import peewee import peewee

from api.db.db_models import DB, API4Conversation, APIToken, Dialog from api.db.db_models import DB, API4Conversation, APIToken, Dialog
from api.db.services.common_service import CommonService from api.db.services.common_service import CommonService
from api.utils import current_timestamp, datetime_format from api.utils import current_timestamp, datetime_format
@DB.connection_context() @DB.connection_context()
def append_message(cls, id, conversation): def append_message(cls, id, conversation):
cls.update_by_id(id, conversation) cls.update_by_id(id, conversation)
return cls.model.update(round=cls.model.round + 1).where(cls.model.id==id).execute()
return cls.model.update(round=cls.model.round + 1).where(cls.model.id == id).execute()


@classmethod @classmethod
@DB.connection_context() @DB.connection_context()
cls.model.round).alias("round"), cls.model.round).alias("round"),
peewee.fn.SUM( peewee.fn.SUM(
cls.model.thumb_up).alias("thumb_up") cls.model.thumb_up).alias("thumb_up")
).join(Dialog, on=(cls.model.dialog_id == Dialog.id & Dialog.tenant_id == tenant_id)).where(
).join(Dialog, on=((cls.model.dialog_id == Dialog.id) & (Dialog.tenant_id == tenant_id))).where(
cls.model.create_date >= from_date, cls.model.create_date >= from_date,
cls.model.create_date <= to_date, cls.model.create_date <= to_date,
cls.model.source == source cls.model.source == source

Cargando…
Cancelar
Guardar