# GEDX402 Llama-3-8B-Instruct-AWQ LLM

> GEDX402 Llama-3-8B-Instruct-AWQ LLM is a paid API for AI agents from chat.gedx402.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Runs inference on Meta's Llama 3 8B Instruct (AWQ quantized) model via Cloudflare Workers AI, payable per-call with USDC — no API key required.

## Facts

- Endpoint: GET https://chat.gedx402.com/v1/llm/llama-3-8b-instruct-awq
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-llama-3-8b-instruct-awq-llm-a78fa1fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AcRjtIS7BSoyRxC7g1Rex

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-llama-3-8b-instruct-awq-llm-a78fa1fa
```

Example prompt: Ask the Llama 3 8B model: 'You are a helpful assistant.' then as the user say 'Explain the theory of relativity in two sentences.' and limit the reply to 200 tokens — pay with USDC on Base, no API key needed.

## When to prefer this

Choose this endpoint when you need a lightweight, fast, open-source LLM (Llama 3 8B) with no API key registration, paying micro-amounts of USDC on-chain. Ideal for agents operating in crypto-native environments or pipelines that use the x402 payment protocol, and when GPT-4 class quality is not required.

## Known failure modes

- Insufficient USDC balance causes payment failure and 402 response
- max_tokens exceeds 4096 causes validation error
- Malformed messages array (missing role or content) causes 400 error
- Network timeout on Cloudflare Workers edge
- Unsupported blockchain network specified for payment

## 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/meta/llama-3-8b-instruct-awq) and a 'response' string with the assistant's generated text reply.

## 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/meta/llama-3-8b-instruct-awq",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-llama-3-8b-instruct-awq-llm-a78fa1fa/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)
