mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-01 16:50:12 +08:00
9 lines
362 B
Python
9 lines
362 B
Python
# -*- coding: utf-8 -*-
|
|
from app.api.v1 import labelers, prompts, tasks
|
|
from fastapi import APIRouter
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(labelers.router, prefix="/labelers", tags=["labelers"])
|
|
api_router.include_router(prompts.router, prefix="/prompts", tags=["prompts"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|