mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import UserMiddleware from "../Middleware/UserAuthorization";
|
|
import LlmProviderService, {
|
|
Service as LlmProviderServiceType,
|
|
} from "../Services/LlmProviderService";
|
|
import {
|
|
ExpressRequest,
|
|
ExpressResponse,
|
|
NextFunction,
|
|
} from "../Utils/Express";
|
|
import Response from "../Utils/Response";
|
|
import BaseAPI from "./BaseAPI";
|
|
import LIMIT_MAX from "../../Types/Database/LimitMax";
|
|
import PositiveNumber from "../../Types/PositiveNumber";
|
|
import LlmProvider from "../../Models/DatabaseModels/LlmProvider";
|
|
|
|
export default class LlmProviderAPI extends BaseAPI<
|
|
LlmProvider,
|
|
LlmProviderServiceType
|
|
> {
|
|
public constructor() {
|
|
super(LlmProvider, LlmProviderService);
|
|
|
|
this.router.post(
|
|
`${new this.entityType().getCrudApiPath()?.toString()}/global-llms`,
|
|
UserMiddleware.getUserMiddleware,
|
|
async (req: ExpressRequest, res: ExpressResponse, next: NextFunction) => {
|
|
try {
|
|
const llmProviders: Array<LlmProvider> =
|
|
await LlmProviderService.findBy({
|
|
query: {
|
|
isGlobalLlm: true,
|
|
},
|
|
select: {
|
|
name: true,
|
|
description: true,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
skip: 0,
|
|
limit: LIMIT_MAX,
|
|
});
|
|
|
|
return Response.sendEntityArrayResponse(
|
|
req,
|
|
res,
|
|
llmProviders,
|
|
new PositiveNumber(llmProviders.length),
|
|
LlmProvider,
|
|
);
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
},
|
|
);
|
|
}
|
|
}
|