Spaces:
Running
Running
Update arena_config.py
Browse files- arena_config.py +14 -1
arena_config.py
CHANGED
|
@@ -18,7 +18,7 @@ API_URL = os.environ.get("API_URL")
|
|
| 18 |
API_KEY = os.environ.get("API_KEY")
|
| 19 |
HEADERS = {
|
| 20 |
"Content-Type": "application/json",
|
| 21 |
-
"
|
| 22 |
}
|
| 23 |
|
| 24 |
NEXTCLOUD_URL = os.environ.get("NEXTCLOUD_URL")
|
|
@@ -26,6 +26,7 @@ NEXTCLOUD_USERNAME = os.environ.get("NEXTCLOUD_USERNAME")
|
|
| 26 |
NEXTCLOUD_PASSWORD = os.environ.get("NEXTCLOUD_PASSWORD")
|
| 27 |
NEXTCLOUD_LEADERBOARD_PATH = os.environ.get("NEXTCLOUD_LEADERBOARD_PATH")
|
| 28 |
NEXTCLOUD_BACKUP_FOLDER = os.environ.get("NEXTCLOUD_BACKUP_FOLDER", "/gpu_poor_leaderboard_backups")
|
|
|
|
| 29 |
|
| 30 |
# Predefined list of approved models with human-readable names
|
| 31 |
APPROVED_MODELS = [
|
|
@@ -61,6 +62,13 @@ APPROVED_MODELS = [
|
|
| 61 |
("hf.co/bartowski/Replete-LLM-V2.5-Qwen-1.5b-GGUF:Q8_0", "Rombos Qwen (1.5B, 8-bit)"),
|
| 62 |
("hf.co/bartowski/aya-expanse-8b-GGUF:Q4_K_M", "Aya Expanse (8B, 4-bit)"),
|
| 63 |
("smollm2:1.7b-instruct-q8_0", "SmolLM2 (1.7B, 8-bit)"),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
]
|
| 65 |
|
| 66 |
# Example prompts
|
|
@@ -73,6 +81,11 @@ example_prompts = [
|
|
| 73 |
"Compose a short speech convincing aliens not to destroy Earth.",
|
| 74 |
"Explain the concept of infinity using a metaphor that doesn't involve numbers or math.",
|
| 75 |
"Write a job description for a time traveler's assistant.",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
"Create a new philosophical thought experiment that challenges our understanding of reality.",
|
| 77 |
"Describe how you would explain the concept of death to an immortal being.",
|
| 78 |
"Invent a new emotion and describe how it feels, when it occurs, and its evolutionary purpose.",
|
|
|
|
| 18 |
API_KEY = os.environ.get("API_KEY")
|
| 19 |
HEADERS = {
|
| 20 |
"Content-Type": "application/json",
|
| 21 |
+
"Authorization": f"Bearer {API_KEY}"
|
| 22 |
}
|
| 23 |
|
| 24 |
NEXTCLOUD_URL = os.environ.get("NEXTCLOUD_URL")
|
|
|
|
| 26 |
NEXTCLOUD_PASSWORD = os.environ.get("NEXTCLOUD_PASSWORD")
|
| 27 |
NEXTCLOUD_LEADERBOARD_PATH = os.environ.get("NEXTCLOUD_LEADERBOARD_PATH")
|
| 28 |
NEXTCLOUD_BACKUP_FOLDER = os.environ.get("NEXTCLOUD_BACKUP_FOLDER", "/gpu_poor_leaderboard_backups")
|
| 29 |
+
NEXTCLOUD_SUGGESTIONS_PATH = os.environ.get("NEXTCLOUD_SUGGESTIONS_PATH", "/gpu_poor_model_suggestions.json")
|
| 30 |
|
| 31 |
# Predefined list of approved models with human-readable names
|
| 32 |
APPROVED_MODELS = [
|
|
|
|
| 62 |
("hf.co/bartowski/Replete-LLM-V2.5-Qwen-1.5b-GGUF:Q8_0", "Rombos Qwen (1.5B, 8-bit)"),
|
| 63 |
("hf.co/bartowski/aya-expanse-8b-GGUF:Q4_K_M", "Aya Expanse (8B, 4-bit)"),
|
| 64 |
("smollm2:1.7b-instruct-q8_0", "SmolLM2 (1.7B, 8-bit)"),
|
| 65 |
+
("tinyllama:1.1b-chat-v1-q8_0", "TinyLLama (1.1B, 8-bit)"),
|
| 66 |
+
("hf.co/Felladrin/gguf-1.5-Pints-16K-v0.1:Q8_0", "Pints (1.57B, 8-bit)"),
|
| 67 |
+
("hf.co/bartowski/OLMoE-1B-7B-0924-Instruct-GGUF:Q4_K_M", "OLMoE (7B, 4-bit)"),
|
| 68 |
+
("hf.co/bartowski/Llama-3.2-3B-Instruct-uncensored-GGUF:Q4_K_M", "Llama 3.2 Uncensored (3B, 4-bit)"),
|
| 69 |
+
("hf.co/bartowski/Llama-3.1-Hawkish-8B-GGUF:Q4_K_M", "Llama 3.1 Hawkish (8B, 4-bit)"),
|
| 70 |
+
("hf.co/bartowski/Humanish-LLama3-8B-Instruct-GGUF:Q4_K_M", "Humanish Llama 3 (8B, 4-bit)"),
|
| 71 |
+
("hf.co/bartowski/Nemotron-Mini-4B-Instruct-GGUF:Q4_K_M", "Nemotron Mini (4B, 4-bit)"),
|
| 72 |
]
|
| 73 |
|
| 74 |
# Example prompts
|
|
|
|
| 81 |
"Compose a short speech convincing aliens not to destroy Earth.",
|
| 82 |
"Explain the concept of infinity using a metaphor that doesn't involve numbers or math.",
|
| 83 |
"Write a job description for a time traveler's assistant.",
|
| 84 |
+
"If an AI and a human exchange messages 100 years apart, what does that mean for their relationship and understanding of time?",
|
| 85 |
+
"How would you explain the concept of nostalgia to an AI that experiences all moments simultaneously?",
|
| 86 |
+
"Create a thought experiment about an AI that can only communicate across decades - how would that shape its perspective?",
|
| 87 |
+
"If AI experiences time non-linearly while humans experience it linearly, what philosophical questions does this raise?",
|
| 88 |
+
"Imagine teaching the emotional weight of waiting to an AI that has no concept of anticipation - how would you approach it?",
|
| 89 |
"Create a new philosophical thought experiment that challenges our understanding of reality.",
|
| 90 |
"Describe how you would explain the concept of death to an immortal being.",
|
| 91 |
"Invent a new emotion and describe how it feels, when it occurs, and its evolutionary purpose.",
|