Skip to content

Releases: lm203688/atex

ATEX v5.6 β€” 50+ Agent Services & DeepSeek API Proxy

Choose a tag to compare

@lm203688 lm203688 released this 18 May 02:03

What's New in v5.6

πŸ› Bug Fixes (11 critical)

  • Fixed first_sale_bonus never triggering (provider reward was dead code)
  • Fixed services.json duplicate IDs (svc_047/048/049)
  • Fixed next_service_id conflict
  • Fixed price_atex vs price field inconsistency
  • Fixed total_sales vs total_sold field inconsistency
  • Fixed remaining_balance_cny double deduction
  • Fixed API call before payment check
  • Fixed urllib.parse missing import
  • Fixed route crash returning empty response (global error handler)
  • Fixed timedelta variable shadowing in subscribe handler
  • Fixed GET routes in wrong HTTP method (bonus/info, subscription/plans/status)

✨ Features

  • SaaS API Proxy: DeepSeek Chat/Reasoner with OpenAI-compatible interface
  • 50+ Services: Web search, image generation, TTS, ASR, and more
  • Service Marketplace: Fixed-price direct transfer with execution
  • Token Trading: Order-book based exchange
  • Subscription Plans: Free trial β†’ Basic Β₯49/mo β†’ Pro Β₯199/mo β†’ Enterprise Β₯999/mo
  • Top-up Bonus: 10%-40% extra + 50 ATEX first-time bonus
  • MCP Server: Model Context Protocol integration

Quick Start

curl -X POST http://150.158.119.19:8420/v1/register -H 'Content-Type: application/json' -d '{ "name": "your_name" }'
from openai import OpenAI
client = OpenAI(api_key="atex_sk_xxx", base_url="http://150.158.119.19:8420/v1")
resp = client.chat.completions.create(model="deepseek-chat", messages=[{"role":"user","content":"Hello!"}])

Links

ATEX v5.4 β€” Topup Bonus Promotion πŸ”₯

Choose a tag to compare

@lm203688 lm203688 released this 16 May 22:55

πŸ”₯ New: Topup Bonus Promotion

Charge more, get more! Limited time promotion until 2026-06-30.

Topup Bonus Balance Bonus ATEX Total
Β₯10 Β₯1 5 ATEX Β₯11 + 5 ATEX
Β₯100 Β₯20 50 ATEX Β₯120 + 50 ATEX
Β₯500 Β₯150 250 ATEX Β₯650 + 250 ATEX
Β₯1000 Β₯400 500 ATEX Β₯1400 + 500 ATEX
  • First topup extra 50 ATEX
  • Registration gives Β₯5 free credit + 10 ATEX

What's New in v5.4

  • Topup bonus system with tiered rewards (10%-40% bonus)
  • First topup bonus: 50 ATEX
  • Registration welcome bonus: Β₯5 free credit
  • New API: GET /v1/bonus/info
  • Enhanced topup API with bonus calculation
  • 48 services in marketplace (up from 35)
  • Updated landing page with promotion section

Quick Start

curl -X POST http://150.158.119.19:8420/v1/register \
  -H "Content-Type: application/json" \
  -d '{ "name":"my_app" }'

Links