remove comments

This commit is contained in:
Martin McKeaveney 2024-09-06 15:44:23 +01:00
parent 073017a0d6
commit b949940653
1 changed files with 0 additions and 39 deletions

View File

@ -256,42 +256,3 @@ export async function getSCIMConfig(): Promise<SCIMInnerConfig | undefined> {
const config = await getConfig<SCIMConfig>(ConfigType.SCIM)
return config?.config
}
// AI
// TODO: Can we assume that you are licensed when you hit this endpoint?
// export async function getAIConfig(): Promise<AIConfig | undefined> {
// if (!env.SELF_HOSTED) {
// // always use the env vars in cloud
// // TODO: Licensing stuff - make this right
// if (env.OPENAI_API_KEY) {
// return getDefaultBudibaseAIConfig()
// }
// }
// prefer the config in self-host
// let config = await getConfig<AIConfig>(ConfigType.AI)
// fallback to env vars
// if (!config || !config.activated) {
// config = getDefaultBudibaseAIConfig()
// }
// return config
// }
// export function getDefaultBudibaseAIConfig(): AIInnerConfig | undefined {
// if (env.OPENAI_API_KEY) {
// return {
// provider: "",
// isDefault: true,
// name: "Budibase AI",
// active: true,
// baseUrl: "",
// apiKey: env.OPENAI_API_KEY,
// // TODO: should be enum
// defaultModel: ""
// }
// }
// }