mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
8 lines
282 B
Python
8 lines
282 B
Python
# -*- coding: utf-8 -*-
|
|
from app.api.v1 import labelers, prompts
|
|
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"])
|