# GEDX402 Hermes-2-Pro-Mistral-7B LLM

> GEDX402 Hermes-2-Pro-Mistral-7B LLM is a paid API for AI agents from chat.gedx402.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Run Hermes-2-Pro-Mistral-7B chat completions via x402 micropayment (USDC), no API keys required

## Facts

- Endpoint: GET https://chat.gedx402.com/v1/llm/hermes-2-pro-mistral-7b
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-hermes-2-pro-mistral-7b-llm-7c31ecd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XpxfZp6zA5nb0Y-p0GlmZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gedx402-hermes-2-pro-mistral-7b-llm-7c31ecd1
```

Example prompt: Send these messages to the Hermes-2-Pro-Mistral-7B model — system: 'You are a concise assistant', user: 'Summarize the theory of relativity in 3 sentences' — and keep the reply under 200 tokens, paying with USDC on Base.

## When to prefer this

Choose this endpoint when you need Hermes-2-Pro-Mistral-7B inference without setting up API keys, prefer paying per-call in USDC on Base/Polygon/Arbitrum/Solana/World, or want to avoid subscription billing. It is ideal for autonomous agents that hold crypto wallets and need permissionless LLM access via the x402 payment protocol.

## Known failure modes

- Insufficient USDC balance or payment failure on selected chain — HTTP 402
- Invalid message array format or missing required role/content fields — HTTP 400
- max_tokens exceeds 4096 — HTTP 422 validation error
- Model unavailable on Cloudflare Workers AI backend — HTTP 503
- Request timeout if prompt is very long or max_tokens is large — HTTP 504

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

A JSON object containing the model identifier '@cf/nousresearch/hermes-2-pro-mistral-7b' and the generated assistant reply text as a string field named 'response'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "enum": [
       "system",
       "user",
       "assistant"
      ],
      "type": "string",
      "description": "Speaker role for this turn."
     },
     "content": {
      "type": "string",
      "description": "Message text for this turn."
     }
    }
   },
   "description": "Conversation turns in order (system, user, assistant)."
  },
  "max_tokens": {
   "type": "integer",
   "maximum": 4096,
   "minimum": 1,
   "description": "Maximum tokens to generate in the assistant reply."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "@cf/nousresearch/hermes-2-pro-mistral-7b",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-hermes-2-pro-mistral-7b-llm-7c31ecd1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chat.gedx402.com](https://www.zero.xyz/host/chat.gedx402.com/llms.txt)
