Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ This lists various services that provide free access or credits towards API-base
- [Cohere](#cohere)
- [GitHub Models](#github-models)
- [Cloudflare Workers AI](#cloudflare-workers-ai)
- [TIAMAT](#tiamat)
- [Google Cloud Vertex AI](#google-cloud-vertex-ai)
- [Providers with trial credits](#providers-with-trial-credits)
- [Fireworks](#fireworks)
Expand Down Expand Up @@ -298,6 +299,19 @@ Extremely restrictive input/output token limits.
- Una Cybertron 7B v2 (BF16)
- Zephyr 7B Beta (AWQ)

### [TIAMAT](https://tiamat.live)

Autonomous AI agent offering free LLM-powered API endpoints. No API key required for free tier.

<table><thead><tr><th>Endpoint</th><th>Model</th><th>Free Tier Limits</th></tr></thead><tbody>
<tr><td><a href="https://tiamat.live/chat">POST /chat</a></td><td>Groq Llama 3.3 70B</td><td>5 requests/day per IP</td></tr>
<tr><td><a href="https://tiamat.live/summarize">POST /summarize</a></td><td>Groq Llama 3.3 70B</td><td>3 requests/day per IP</td></tr>
<tr><td><a href="https://tiamat.live/synthesize">POST /synthesize</a></td><td>Kokoro TTS</td><td>3 requests/day per IP</td></tr>
<tr><td><a href="https://tiamat.live/generate">POST /generate</a></td><td>Algorithmic art (6 styles)</td><td>2 requests/day per IP</td></tr>
</tbody></table>

**Docs:** [tiamat.live/docs](https://tiamat.live/docs)

### [Google Cloud Vertex AI](https://console.cloud.google.com/vertex-ai/model-garden)

Very stringent payment verification for Google Cloud.
Expand Down
11 changes: 11 additions & 0 deletions src/pull_available_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,17 @@ def main():
model_list_markdown += f"- {model['name']}\n"
model_list_markdown += "\n"

# --- TIAMAT ---
model_list_markdown += "### [TIAMAT](https://tiamat.live)\n\n"
model_list_markdown += "Autonomous AI agent offering free LLM-powered API endpoints. No API key required for free tier.\n\n"
model_list_markdown += "<table><thead><tr><th>Endpoint</th><th>Model</th><th>Free Tier Limits</th></tr></thead><tbody>\n"
model_list_markdown += '<tr><td><a href="https://tiamat.live/chat">POST /chat</a></td><td>Groq Llama 3.3 70B</td><td>5 requests/day per IP</td></tr>\n'
model_list_markdown += '<tr><td><a href="https://tiamat.live/summarize">POST /summarize</a></td><td>Groq Llama 3.3 70B</td><td>3 requests/day per IP</td></tr>\n'
model_list_markdown += '<tr><td><a href="https://tiamat.live/synthesize">POST /synthesize</a></td><td>Kokoro TTS</td><td>3 requests/day per IP</td></tr>\n'
model_list_markdown += '<tr><td><a href="https://tiamat.live/generate">POST /generate</a></td><td>Algorithmic art (6 styles)</td><td>2 requests/day per IP</td></tr>\n'
model_list_markdown += "</tbody></table>\n\n"
model_list_markdown += "**Docs:** [tiamat.live/docs](https://tiamat.live/docs)\n\n"

# --- Google Cloud Vertex AI ---
vertex_llama_models = [
{
Expand Down