File size: 811 Bytes
f4e3990
 
 
 
 
 
50fa95b
c0f28eb
f4e3990
 
 
 
 
 
 
 
 
 
c0f28eb
 
 
 
 
f6213af
 
 
 
 
f4e3990
 
 
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
from petals.constants import PUBLIC_INITIAL_PEERS

from data_structures import ModelInfo

INITIAL_PEERS = PUBLIC_INITIAL_PEERS


MODELS = [    
    ModelInfo(
        dht_prefix="Llama-2-70b-chat-hf",
        repository="https://huggingface.co/meta-llama/Llama-2-70b-chat-hf",
        num_blocks=80,
    ),
    ModelInfo(
        dht_prefix="Llama-2-70b-hf",
        repository="https://huggingface.co/meta-llama/Llama-2-70b-hf",
        num_blocks=80,
    ),
    ModelInfo(
        dht_prefix="beomi/llama-2-koen-13b",
        repository="https://huggingface.co/beomi/llama-2-koen-13b",
        num_blocks=80,
    ),
    ModelInfo(
        dht_prefix="quantumaikr/llama-2-70b-fb16-korean",
        repository="https://huggingface.co/beomi/llama-2-koen-13b",
        num_blocks=80,
    ),
]

UPDATE_PERIOD = 60