mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-11 19:56:44 +00:00
12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import { AI_AGENT_KEY } from "../Config";
|
|
import AIAgentUtil from "./AIAgent";
|
|
import { JSONObject } from "Common/Types/JSON";
|
|
|
|
export default class AIAgentAPIRequest {
|
|
public static getDefaultRequestBody(): JSONObject {
|
|
return {
|
|
aiAgentKey: AI_AGENT_KEY,
|
|
aiAgentId: AIAgentUtil.getAIAgentId().toString(),
|
|
};
|
|
}
|
|
}
|