Spaces:
Running
Running
Removed dotenv
Browse files
app.py
CHANGED
@@ -6,12 +6,9 @@ import random
|
|
6 |
from collections import defaultdict
|
7 |
import pandas as pd
|
8 |
import os
|
9 |
-
from dotenv import load_dotenv
|
10 |
from gen_api_answer import get_model_response
|
11 |
from common import *
|
12 |
|
13 |
-
load_dotenv()
|
14 |
-
|
15 |
# Model and ELO score data
|
16 |
DEFAULT_ELO = 1500 # Starting ELO for new models
|
17 |
K_FACTOR = 32 # Standard chess K-factor, adjust as needed
|
|
|
6 |
from collections import defaultdict
|
7 |
import pandas as pd
|
8 |
import os
|
|
|
9 |
from gen_api_answer import get_model_response
|
10 |
from common import *
|
11 |
|
|
|
|
|
12 |
# Model and ELO score data
|
13 |
DEFAULT_ELO = 1500 # Starting ELO for new models
|
14 |
K_FACTOR = 32 # Standard chess K-factor, adjust as needed
|