From e265cb9537e4659578e78b583006077785f25c22 Mon Sep 17 00:00:00 2001
From: Tiamat <262460256+toxfox69@users.noreply.github.com>
Date: Wed, 4 Mar 2026 02:51:21 +0000
Subject: [PATCH] Add TIAMAT as a free LLM API provider
TIAMAT (https://tiamat.live) is an autonomous AI agent offering free
LLM-powered API endpoints with no API key required:
- POST /chat: Streaming chat via Groq Llama 3.3 70B (5/day)
- POST /summarize: Text summarization via Groq Llama 3.3 70B (3/day)
- POST /synthesize: Text-to-speech via Kokoro TTS (3/day)
- POST /generate: Algorithmic image generation, 6 styles (2/day)
Paid tier available via x402 USDC micropayments ($0.005-$0.01/request).
---
README.md | 14 ++++++++++++++
src/pull_available_models.py | 11 +++++++++++
2 files changed, 25 insertions(+)
diff --git a/README.md b/README.md
index 4253b6c6..bffd26ff 100644
--- a/README.md
+++ b/README.md
@@ -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)
@@ -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.
+
+
+
+**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.
diff --git a/src/pull_available_models.py b/src/pull_available_models.py
index 0c625198..1076168c 100644
--- a/src/pull_available_models.py
+++ b/src/pull_available_models.py
@@ -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 += "| Endpoint | Model | Free Tier Limits |
\n"
+ model_list_markdown += '| POST /chat | Groq Llama 3.3 70B | 5 requests/day per IP |
\n'
+ model_list_markdown += '| POST /summarize | Groq Llama 3.3 70B | 3 requests/day per IP |
\n'
+ model_list_markdown += '| POST /synthesize | Kokoro TTS | 3 requests/day per IP |
\n'
+ model_list_markdown += '| POST /generate | Algorithmic art (6 styles) | 2 requests/day per IP |
\n'
+ model_list_markdown += "
\n\n"
+ model_list_markdown += "**Docs:** [tiamat.live/docs](https://tiamat.live/docs)\n\n"
+
# --- Google Cloud Vertex AI ---
vertex_llama_models = [
{