PIbd-32_Kashin_M.I_API_Cour.../router_questions.py

34 lines
1.2 KiB
Python

from typing import Annotated
from fastapi import APIRouter, Depends
from typing import List
from enums import TypeMood, TypeModel
from gigachat import get_chat_completion, giga_token
from repository import QuestionRepository
from schemas import SQuestionAdd, SQuestion, SQuestionId
router = APIRouter(
prefix="/questions",
tags=["Questions"],
)
@router.post("/add")
async def add_question(
question: Annotated[SQuestionAdd, Depends()],
type_mood: TypeMood, # Добавлен параметр type_mood
type_model: TypeModel, # Добавлен параметр type_model
) -> SQuestionId:
question_id, answer = await QuestionRepository.add_one(question, type_mood, type_model) # Передача параметров type_mood и type_model
return {"question_id": question_id, "answer": answer}
@router.get("/get_all")
async def get_questions() -> list[SQuestion]:
questions = await QuestionRepository.find_all()
return questions
@router.get("/get/{email_user}")
async def get_questions_by_email(email_user: str) -> list[SQuestion]:
questions = await QuestionRepository.find_by_email(email_user)
return questions