mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-02 17:00:28 +08:00
8 lines
296 B
Python
8 lines
296 B
Python
# -*- coding: utf-8 -*-
|
|
from fastapi import APIRouter
|
|
from oasst_backend.api.v1 import tasks, text_labels
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|
|
api_router.include_router(text_labels.router, prefix="/text_labels", tags=["text_labels"])
|