added aihorde community models

This commit is contained in:
Luxferre
2026-09-08 19:45:35 +03:00
parent 358c89c901
commit dff52627f1
2 changed files with 31 additions and 0 deletions
+3
View File
@@ -20,6 +20,9 @@ $REQ https://api.kilo.ai/api/openrouter/models | jq -r '.data | map(select(.isFr
# Write LLM7 API models, heavily rate-limited
$REQ https://api.llm7.io/v1/models | jq -r '.data | map(select(.usage_based_only | not) | .id) | .[]' | awk '{printf("%s,-,https://api.llm7.io/v1,\n",$0)}' >> "$TCONFIG"
# Write AIHorde models, slow but community-powered
$REQ https://oai.aihorde.net/v1/models | jq -r '.data | .[] | .id' | awk '{printf("%s,0000000000,https://oai.aihorde.net/v1,\n",$0)}' >> "$TCONFIG"
## Write some independent gateways found on HF
$REQ https://mmoranguito-openai-nim-proxy.hf.space/v1/models | jq -r '.data | .[] | .id' | awk '{printf("%s,-,https://mmoranguito-openai-nim-proxy.hf.space/v1,\n",$0)}' >> "$TCONFIG"