pjpjq's picture
Deploy DeerFlow to Hugging Face Space
033ca06 verified
import { getBackendBaseURL } from "../config";
import type { Model } from "./types";
export async function loadModels() {
const res = fetch(`${getBackendBaseURL()}/api/models`);
const { models } = (await (await res).json()) as { models: Model[] };
return models;
}