remove comments
This commit is contained in:
parent
073017a0d6
commit
b949940653
|
@ -256,42 +256,3 @@ export async function getSCIMConfig(): Promise<SCIMInnerConfig | undefined> {
|
||||||
const config = await getConfig<SCIMConfig>(ConfigType.SCIM)
|
const config = await getConfig<SCIMConfig>(ConfigType.SCIM)
|
||||||
return config?.config
|
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: ""
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
Loading…
Reference in New Issue