moved workpackage-lookup for text-replies to prompt-repository

This commit is contained in:
Andreas Köpf
2022-12-27 18:05:02 +01:00
committed by Andreas Köpf
parent f74fe68f87
commit 602ec355cd
-5
View File
@@ -7,7 +7,6 @@ from fastapi import APIRouter, Depends, HTTPException
from fastapi.security.api_key import APIKey
from loguru import logger
from oasst_backend.api import deps
from oasst_backend.models.db_payload import TaskPayload
from oasst_backend.prompt_repository import PromptRepository
from oasst_shared.schemas import protocol as protocol_schema
from sqlmodel import Session
@@ -219,10 +218,6 @@ def post_interaction(
f"Frontend reports text reply to {interaction.post_id=} with {interaction.text=} by {interaction.user=}."
)
work_package = pr.fetch_workpackage_by_postid(interaction.post_id)
work_payload: TaskPayload = work_package.payload.payload
logger.info(f"found task work package in db: {work_payload}")
# here we store the text reply in the database
# ToDo: role user or agent?
pr.store_text_reply(interaction, role="unknown")