fix(ChatExcel): ChatExcel OutParse Bug Fix

1.ChatExcel OutParse Bug Fix
This commit is contained in:
yhjun1026
2023-09-14 20:47:10 +08:00
parent cad2785d94
commit af68e9c4c0
36 changed files with 1740 additions and 220 deletions

View File

@@ -0,0 +1,26 @@
import json
import time
from fastapi import (
APIRouter,
Body,
)
from typing import List
from pilot.configs.model_config import LOGDIR
from pilot.utils import build_logger
from pilot.openapi.api_view_model import (
Result,
)
router = APIRouter()
logger = build_logger("agent_mange", LOGDIR + "agent_mange.log")
@router.get("/v1/mange/agent/list", response_model=Result[str])
async def get_agent_list():
logger.info(f"get_agent_list!")
return Result.succ(None)