mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +08:00
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
import quart
|
|
|
|
from ... import group
|
|
|
|
|
|
@group.group_class('models/llm', '/api/v1/provider/models/llm')
|
|
class LLMModelsRouterGroup(group.RouterGroup):
|
|
async def initialize(self) -> None:
|
|
@self.route('', methods=['GET', 'POST'])
|
|
async def _() -> str:
|
|
if quart.request.method == 'GET':
|
|
return self.success(data={'models': await self.ap.model_service.get_llm_models()})
|
|
elif quart.request.method == 'POST':
|
|
json_data = await quart.request.json
|
|
|
|
model_uuid = await self.ap.model_service.create_llm_model(json_data)
|
|
|
|
return self.success(data={'uuid': model_uuid})
|
|
|
|
@self.route('/<model_uuid>', methods=['GET', 'PUT', 'DELETE'])
|
|
async def _(model_uuid: str) -> str:
|
|
if quart.request.method == 'GET':
|
|
model = await self.ap.model_service.get_llm_model(model_uuid)
|
|
|
|
if model is None:
|
|
return self.http_status(404, -1, 'model not found')
|
|
|
|
return self.success(data={'model': model})
|
|
elif quart.request.method == 'PUT':
|
|
json_data = await quart.request.json
|
|
|
|
await self.ap.model_service.update_llm_model(model_uuid, json_data)
|
|
|
|
return self.success()
|
|
elif quart.request.method == 'DELETE':
|
|
await self.ap.model_service.delete_llm_model(model_uuid)
|
|
|
|
return self.success()
|
|
|
|
@self.route('/<model_uuid>/test', methods=['POST'])
|
|
async def _(model_uuid: str) -> str:
|
|
json_data = await quart.request.json
|
|
|
|
await self.ap.model_service.test_llm_model(model_uuid, json_data)
|
|
|
|
return self.success()
|