Create ARDR_Models.ts
Browse files- ARDR_Models.ts +31 -0
ARDR_Models.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export const MODELS = {
|
| 2 |
+
profiler: "meta-llama/llama-3.3-70b-instruct:free",
|
| 3 |
+
cheap: "google/gemini-2.0-flash-001",
|
| 4 |
+
|
| 5 |
+
logic: "google/gemini-2.0-flash-001",
|
| 6 |
+
pattern: "google/gemini-2.0-flash-001",
|
| 7 |
+
world: "openai/gpt-4.1-mini",
|
| 8 |
+
code: "anthropic/claude-sonnet-4",
|
| 9 |
+
adversarial: "google/gemini-2.0-flash-001",
|
| 10 |
+
|
| 11 |
+
condenser: "anthropic/claude-sonnet-4",
|
| 12 |
+
|
| 13 |
+
chiefLow: "meta-llama/llama-3.3-70b-instruct:free",
|
| 14 |
+
chiefHigh: "deepseek/deepseek-chat-v3-0324",
|
| 15 |
+
chiefMax: "anthropic/claude-opus-4"
|
| 16 |
+
} as const;
|
| 17 |
+
|
| 18 |
+
export const colors = {
|
| 19 |
+
reset: "\x1b[0m",
|
| 20 |
+
bright: "\x1b[1m",
|
| 21 |
+
dim: "\x1b[2m",
|
| 22 |
+
red: "\x1b[31m",
|
| 23 |
+
green: "\x1b[32m",
|
| 24 |
+
yellow: "\x1b[33m",
|
| 25 |
+
blue: "\x1b[34m",
|
| 26 |
+
magenta: "\x1b[35m",
|
| 27 |
+
cyan: "\x1b[36m",
|
| 28 |
+
white: "\x1b[37m",
|
| 29 |
+
bgBlue: "\x1b[44m",
|
| 30 |
+
bgMagenta: "\x1b[45m"
|
| 31 |
+
};
|