Added UncloseAI to the free endpoint list

This commit is contained in:
Luxferre
2026-09-08 20:19:54 +03:00
parent dff52627f1
commit 0e56985b04
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -20,9 +20,13 @@ $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 UncloseAI models
$REQ https://hermes.ai.unturf.com/v1/models | jq -r '.data | .[] | .id' | awk '{printf("%s,-,https://hermes.ai.unturf.com/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"