ggbetz commited on
Commit
edda987
1 Parent(s): accf23f

Update _name to "arcee-ai/SuperNova-Medius"

Browse files

When trying to serve this model with vllm, model loaded fine, but I got error:

```
{"object":"error","message":"The model `arcee-ai/SuperNova-Medius` does not exist.","type":"NotFoundError","param":null,"code":404}++ curl --write-out '%{http_code}' --silent --output /dev/null -H 'Content-Type: application/json' -d '{
"model": "arcee-ai/SuperNova-Medius",
"messages": [{"role": "user", "content": "Say this is a test!"}],
"max_tokens": 7,
"temperature": 0
}' http://localhost:8080/v1/chat/completions
```

This hopefully fixes that.

Files changed (1) hide show
  1. config.json +1 -1
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "Qwen/Qwen2.5-14B",
3
  "architectures": [
4
  "Qwen2ForCausalLM"
5
  ],
 
1
  {
2
+ "_name_or_path": "arcee-ai/SuperNova-Medius",
3
  "architectures": [
4
  "Qwen2ForCausalLM"
5
  ],