-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.mjs
34 lines (28 loc) · 1.12 KB
/
constants.mjs
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
export const headers = {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': '*',
'Access-Control-Allow-Headers': '*',
};
export const defaultModels = [
'openai:gpt-4o-2024-08-06',
'anthropic:claude-3-5-sonnet-20240620',
'openrouter:nousresearch/hermes-3-llama-3.1-405b',
'openrouter:nousresearch/hermes-3-llama-3.1-70b',
'openrouter:google/gemini-2.0-flash-exp:free',
];
export const defaultSmallModels = [
'openai:gpt-4o-mini',
];
export const defaultLargeModels = [
'openai:o1-preview',
];
export const defaultVisionModels = [
'openai:gpt-4o-2024-08-06',
'anthropic:claude-3-5-sonnet-20240620',
];
export const currencies = ['usd'];
export const intervals = ['month', 'year', 'week', 'day'];
export const consoleImageWidth = 80;
export const consoleImagePreviewWidth = 24*2;
export const SUPABASE_URL = "https://friddlbqibjnxjoxeocc.supabase.co";
export const SUPABASE_PUBLIC_API_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImZyaWRkbGJxaWJqbnhqb3hlb2NjIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDM2NjE3NDIsImV4cCI6MjAxOTIzNzc0Mn0.jnvk5X27yFTcJ6jsCkuXOog1ZN825md4clvWuGQ8DMI";