-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GenAIOrchestrator] Add QA chain (#1641)
* Add QA chain * ✅ Add QA chain tests * 📝 Fix typo errors in documentation * 🎨 Rename prompt_input to user_query
- Loading branch information
1 parent
8a080df
commit 316f456
Showing
10 changed files
with
488 additions
and
111 deletions.
There are no files selected for viewing
55 changes: 28 additions & 27 deletions
55
gen-ai/orchestrator-server/src/main/python/server/poetry.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...i/orchestrator-server/src/main/python/server/src/gen_ai_orchestrator/routers/qa_router.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright (C) 2023-2024 Credit Mutuel Arkea | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
"""QA Router Module""" | ||
|
||
from fastapi import APIRouter | ||
|
||
from gen_ai_orchestrator.routers.requests.requests import QAQuery | ||
from gen_ai_orchestrator.routers.responses.responses import QAResponse | ||
from gen_ai_orchestrator.services.qa.qa_service import qa | ||
|
||
qa_router = APIRouter(prefix='/qa', tags=['Question Answering']) | ||
|
||
|
||
@qa_router.post('') | ||
async def ask_qa(query: QAQuery) -> QAResponse: | ||
""" | ||
## Ask a QA System | ||
Ask question to a QA System, and return sources founded in a knowledge base (documents) | ||
""" | ||
return await qa(query) |
Oops, something went wrong.