mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-24 17:04:55 +00:00
Fix bad merge
This commit is contained in:
parent
0aaf59fc9a
commit
6e9405ba95
3 changed files with 3 additions and 3 deletions
|
|
@ -90,9 +90,9 @@ class ServerManager:
|
|||
api_key="x",
|
||||
)
|
||||
)
|
||||
self.servers = [OpenAIServer(config) for config in openai_configs]
|
||||
self.servers = [server_class(config) for config in openai_configs]
|
||||
elif not slurm:
|
||||
self.servers = [OpenAIServer(config) for config in configs]
|
||||
self.servers = [server_class(config) for config in configs]
|
||||
else:
|
||||
nodelist = (
|
||||
os.popen(f'scontrol show hostnames {os.environ["SLURM_JOB_NODELIST"]}')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue