Initial vLLM agent strategy

This commit is contained in:
2026-07-21 16:04:18 +08:00
commit d17bb21bbb
48 changed files with 3006 additions and 0 deletions

20
seeds/README.md Normal file
View File

@@ -0,0 +1,20 @@
# Seed files
当前代码库没有找到悬赏模型 API因此 v1 使用 CSV seed 文件。
CSV 字段:
```csv
model_id,source,gpu_aliases,max_model_len,notes
```
- `source`: 一般是 `HUGGING_FACE`
- `gpu_aliases`: 例如 `910b,k100,p800,biren166m`
- `max_model_len`: 默认 1024。
导入时用 `--origin` 控制优先级:
- `manual_bounty`: 悬赏模型,最高优先级。
- `manual_promote`: 已入库/已验证成功模型。
- `manual_downloaded_by_others`: 别人已下载模型。
- `hf_seed`: 低优先级自下载候选。

View File

@@ -0,0 +1,2 @@
model_id,source,gpu_aliases,max_model_len,notes
Qwen/Qwen2.5-0.5B-Instruct,HUGGING_FACE,"910b,k100,p800",1024,"manual bounty seed example"
1 model_id source gpu_aliases max_model_len notes
2 Qwen/Qwen2.5-0.5B-Instruct HUGGING_FACE 910b,k100,p800 1024 manual bounty seed example

View File

@@ -0,0 +1,2 @@
model_id,source,gpu_aliases,max_model_len,notes
Qwen/Qwen2.5-0.5B-Instruct,HUGGING_FACE,"bi100,c500",1024,"manual downloaded-by-others seed example"
1 model_id source gpu_aliases max_model_len notes
2 Qwen/Qwen2.5-0.5B-Instruct HUGGING_FACE bi100,c500 1024 manual downloaded-by-others seed example

View File

@@ -0,0 +1,2 @@
model_id,source,gpu_aliases,max_model_len,notes
Qwen/Qwen2.5-0.5B-Instruct,HUGGING_FACE,"k100,biren166m",1024,"manual promote seed example"
1 model_id source gpu_aliases max_model_len notes
2 Qwen/Qwen2.5-0.5B-Instruct HUGGING_FACE k100,biren166m 1024 manual promote seed example