Spaces:
Paused
Paused
File size: 7,814 Bytes
e28a7d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | import { Elysia } from "elysia";
import { authPlugin } from "../../authPlugin";
import { requiresUser } from "$lib/server/auth";
import { collections } from "$lib/server/database";
import { authCondition } from "$lib/server/auth";
import { config } from "$lib/server/config";
import { Client } from "@gradio/client";
import yazl from "yazl";
import { downloadFile } from "$lib/server/files/downloadFile";
import mimeTypes from "mime-types";
export interface FeatureFlags {
searchEnabled: boolean;
enableAssistants: boolean;
enableAssistantsRAG: boolean;
enableCommunityTools: boolean;
loginEnabled: boolean;
loginRequired: boolean;
guestMode: boolean;
isAdmin: boolean;
}
export type ApiReturnType = Awaited<ReturnType<typeof Client.prototype.view_api>>;
export const misc = new Elysia()
.use(authPlugin)
.get("/public-config", async () => config.getPublicConfig())
.get("/feature-flags", async ({ locals }) => {
let loginRequired = false;
const messagesBeforeLogin = config.MESSAGES_BEFORE_LOGIN
? parseInt(config.MESSAGES_BEFORE_LOGIN)
: 0;
const nConversations = await collections.conversations.countDocuments(authCondition(locals));
if (requiresUser && !locals.user) {
if (messagesBeforeLogin === 0) {
loginRequired = true;
} else if (nConversations >= messagesBeforeLogin) {
loginRequired = true;
} else {
// get the number of messages where `from === "assistant"` across all conversations.
const totalMessages =
(
await collections.conversations
.aggregate([
{ $match: { ...authCondition(locals), "messages.from": "assistant" } },
{ $project: { messages: 1 } },
{ $limit: messagesBeforeLogin + 1 },
{ $unwind: "$messages" },
{ $match: { "messages.from": "assistant" } },
{ $count: "messages" },
])
.toArray()
)[0]?.messages ?? 0;
loginRequired = totalMessages >= messagesBeforeLogin;
}
}
return {
searchEnabled: !!(
config.SERPAPI_KEY ||
config.SERPER_API_KEY ||
config.SERPSTACK_API_KEY ||
config.SEARCHAPI_KEY ||
config.YDC_API_KEY ||
config.USE_LOCAL_WEBSEARCH ||
config.SEARXNG_QUERY_URL ||
config.BING_SUBSCRIPTION_KEY
),
enableAssistants: config.ENABLE_ASSISTANTS === "true",
enableAssistantsRAG: config.ENABLE_ASSISTANTS_RAG === "true",
enableCommunityTools: config.COMMUNITY_TOOLS === "true",
loginEnabled: requiresUser, // misnomer, this is actually whether the feature is available, not required
loginRequired,
guestMode: requiresUser && messagesBeforeLogin > 0,
isAdmin: locals.isAdmin,
} satisfies FeatureFlags;
})
.get("/spaces-config", async ({ query }) => {
if (config.COMMUNITY_TOOLS !== "true") {
throw new Error("Community tools are not enabled");
}
const space = query.space;
if (!space) {
throw new Error("Missing space");
}
// Extract namespace from space URL or use as-is if it's already in namespace format
let namespace = null;
if (space.startsWith("https://huggingface.co/spaces/")) {
namespace = space.split("/").slice(-2).join("/");
} else if (space.match(/^[^/]+\/[^/]+$/)) {
namespace = space;
}
if (!namespace) {
throw new Error("Invalid space name. Specify a namespace or a full URL on huggingface.co.");
}
try {
const api = await (await Client.connect(namespace)).view_api();
return api as ApiReturnType;
} catch (e) {
throw new Error("Error fetching space API. Is the name correct?");
}
})
.get("/export", async ({ locals }) => {
if (!locals.user) {
throw new Error("Not logged in");
}
if (!locals.isAdmin) {
throw new Error("Not admin");
}
if (config.ENABLE_DATA_EXPORT !== "true") {
throw new Error("Data export is not enabled");
}
const zipfile = new yazl.ZipFile();
const promises = [
collections.conversations
.find({ ...authCondition(locals) })
.toArray()
.then(async (conversations) => {
const formattedConversations = await Promise.all(
conversations.map(async (conversation) => {
const hashes: string[] = [];
conversation.messages.forEach(async (message) => {
if (message.files) {
message.files.forEach((file) => {
hashes.push(file.value);
});
}
});
const files = await Promise.all(
hashes.map(async (hash) => {
try {
const fileData = await downloadFile(hash, conversation._id);
return fileData;
} catch {
return null;
}
})
);
const filenames: string[] = [];
files.forEach((file) => {
if (!file) return;
const extension = mimeTypes.extension(file.mime) || "bin";
const convId = conversation._id.toString();
const fileId = file.name.split("-")[1].slice(0, 8);
const fileName = `file-${convId}-${fileId}.${extension}`;
filenames.push(fileName);
zipfile.addBuffer(Buffer.from(file.value, "base64"), fileName);
});
return {
...conversation,
messages: conversation.messages.map((message) => {
return {
...message,
webSearch: message.webSearch
? {
prompt: message.webSearch?.prompt,
searchQuery: message.webSearch?.searchQuery,
results: message.webSearch?.results.map((result) => result.link),
}
: undefined,
files: filenames,
updates: undefined,
};
}),
};
})
);
zipfile.addBuffer(
Buffer.from(JSON.stringify(formattedConversations, null, 2)),
"conversations.json"
);
}),
collections.assistants
.find({ createdById: locals.user._id })
.toArray()
.then(async (assistants) => {
const formattedAssistants = await Promise.all(
assistants.map(async (assistant) => {
if (assistant.avatar) {
const fileId = collections.bucket.find({ filename: assistant._id.toString() });
const content = await fileId.next().then(async (file) => {
if (!file?._id) return;
const fileStream = collections.bucket.openDownloadStream(file?._id);
const fileBuffer = await new Promise<Buffer>((resolve, reject) => {
const chunks: Uint8Array[] = [];
fileStream.on("data", (chunk) => chunks.push(chunk));
fileStream.on("error", reject);
fileStream.on("end", () => resolve(Buffer.concat(chunks)));
});
return fileBuffer;
});
if (!content) return;
zipfile.addBuffer(content, `avatar-${assistant._id.toString()}.jpg`);
}
return {
_id: assistant._id.toString(),
name: assistant.name,
createdById: assistant.createdById.toString(),
createdByName: assistant.createdByName,
avatar: `avatar-${assistant._id.toString()}.jpg`,
modelId: assistant.modelId,
preprompt: assistant.preprompt,
description: assistant.description,
dynamicPrompt: assistant.dynamicPrompt,
exampleInputs: assistant.exampleInputs,
rag: assistant.rag,
tools: assistant.tools,
generateSettings: assistant.generateSettings,
createdAt: assistant.createdAt.toISOString(),
updatedAt: assistant.updatedAt.toISOString(),
};
})
);
zipfile.addBuffer(
Buffer.from(JSON.stringify(formattedAssistants, null, 2)),
"assistants.json"
);
}),
];
await Promise.all(promises);
zipfile.end();
// @ts-expect-error - zipfile.outputStream is not typed correctly
return new Response(zipfile.outputStream, {
headers: {
"Content-Type": "application/zip",
"Content-Disposition": 'attachment; filename="export.zip"',
},
});
});
|