refacto name

This commit is contained in:
Robin COuret
2026-03-05 19:40:13 +01:00
parent 02bc680982
commit 93712919ff
22 changed files with 26 additions and 34 deletions

View File

@@ -4,8 +4,8 @@ from fastapi import APIRouter
from src.app.models.knowledge import Knowledge
from src.app.models.question import Question
from src.app.crud.crud_knowledges import create_knowledge, read_knowledges, read_knowledge, update_knowledge, delete_knowledge
from src.app.crud.crud_questions import read_questions as read_questions_crud, create_question
from src.app.data.knowledge import create_knowledge, read_knowledges, read_knowledge, update_knowledge, delete_knowledge
from src.app.data.question import read_questions as read_questions_crud, create_question
from src.app.services.language_generation import questions_generation