mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 11:29:39 +08:00
* Initial plan * feat: Add API key authentication system backend Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * feat: Add API key management UI in frontend sidebar Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * fix: Correct import paths in API controller groups Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * fix: Address code review feedback - add i18n and validation Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * refactor: Enable API key auth on existing endpoints instead of creating separate service API - Added USER_TOKEN_OR_API_KEY auth type that accepts both authentication methods - Removed separate /api/service/v1/models endpoints - Updated existing endpoints (models, bots, pipelines) to accept API keys - External services can now use API keys to access all existing LangBot APIs - Updated documentation to reflect unified API approach Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * docs: Add OpenAPI specification for API key authenticated endpoints Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * chore: rename openapi spec * perf: ui and i18n * fix: ui bug * chore: tidy docs * chore: fix linter errors --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> Co-authored-by: Junyan Qin <rockchinq@gmail.com>
90 lines
3.8 KiB
Python
90 lines
3.8 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'], auth_type=group.AuthType.USER_TOKEN_OR_API_KEY)
|
|
async def _() -> str:
|
|
if quart.request.method == 'GET':
|
|
return self.success(data={'models': await self.ap.llm_model_service.get_llm_models()})
|
|
elif quart.request.method == 'POST':
|
|
json_data = await quart.request.json
|
|
|
|
model_uuid = await self.ap.llm_model_service.create_llm_model(json_data)
|
|
|
|
return self.success(data={'uuid': model_uuid})
|
|
|
|
@self.route('/<model_uuid>', methods=['GET', 'PUT', 'DELETE'], auth_type=group.AuthType.USER_TOKEN_OR_API_KEY)
|
|
async def _(model_uuid: str) -> str:
|
|
if quart.request.method == 'GET':
|
|
model = await self.ap.llm_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.llm_model_service.update_llm_model(model_uuid, json_data)
|
|
|
|
return self.success()
|
|
elif quart.request.method == 'DELETE':
|
|
await self.ap.llm_model_service.delete_llm_model(model_uuid)
|
|
|
|
return self.success()
|
|
|
|
@self.route('/<model_uuid>/test', methods=['POST'], auth_type=group.AuthType.USER_TOKEN_OR_API_KEY)
|
|
async def _(model_uuid: str) -> str:
|
|
json_data = await quart.request.json
|
|
|
|
await self.ap.llm_model_service.test_llm_model(model_uuid, json_data)
|
|
|
|
return self.success()
|
|
|
|
|
|
@group.group_class('models/embedding', '/api/v1/provider/models/embedding')
|
|
class EmbeddingModelsRouterGroup(group.RouterGroup):
|
|
async def initialize(self) -> None:
|
|
@self.route('', methods=['GET', 'POST'], auth_type=group.AuthType.USER_TOKEN_OR_API_KEY)
|
|
async def _() -> str:
|
|
if quart.request.method == 'GET':
|
|
return self.success(data={'models': await self.ap.embedding_models_service.get_embedding_models()})
|
|
elif quart.request.method == 'POST':
|
|
json_data = await quart.request.json
|
|
|
|
model_uuid = await self.ap.embedding_models_service.create_embedding_model(json_data)
|
|
|
|
return self.success(data={'uuid': model_uuid})
|
|
|
|
@self.route('/<model_uuid>', methods=['GET', 'PUT', 'DELETE'], auth_type=group.AuthType.USER_TOKEN_OR_API_KEY)
|
|
async def _(model_uuid: str) -> str:
|
|
if quart.request.method == 'GET':
|
|
model = await self.ap.embedding_models_service.get_embedding_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.embedding_models_service.update_embedding_model(model_uuid, json_data)
|
|
|
|
return self.success()
|
|
elif quart.request.method == 'DELETE':
|
|
await self.ap.embedding_models_service.delete_embedding_model(model_uuid)
|
|
|
|
return self.success()
|
|
|
|
@self.route('/<model_uuid>/test', methods=['POST'], auth_type=group.AuthType.USER_TOKEN_OR_API_KEY)
|
|
async def _(model_uuid: str) -> str:
|
|
json_data = await quart.request.json
|
|
|
|
await self.ap.embedding_models_service.test_embedding_model(model_uuid, json_data)
|
|
|
|
return self.success()
|