mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-18 13:30:48 +00:00
24 lines
823 B
TypeScript
24 lines
823 B
TypeScript
import { findCatalogTemplate } from "openclaw/plugin-sdk/provider-catalog";
|
|
import { cloneFirstTemplateModel } from "openclaw/plugin-sdk/provider-models";
|
|
|
|
export const OPENAI_API_BASE_URL = "https://api.openai.com/v1";
|
|
|
|
export function matchesExactOrPrefix(id: string, values: readonly string[]): boolean {
|
|
const normalizedId = id.trim().toLowerCase();
|
|
return values.some((value) => {
|
|
const normalizedValue = value.trim().toLowerCase();
|
|
return normalizedId === normalizedValue || normalizedId.startsWith(normalizedValue);
|
|
});
|
|
}
|
|
|
|
export function isOpenAIApiBaseUrl(baseUrl?: string): boolean {
|
|
const trimmed = baseUrl?.trim();
|
|
if (!trimmed) {
|
|
return false;
|
|
}
|
|
return /^https?:\/\/api\.openai\.com(?:\/v1)?\/?$/i.test(trimmed);
|
|
}
|
|
|
|
export { cloneFirstTemplateModel };
|
|
export { findCatalogTemplate };
|