From 4f8cde37d843219be4bc478ad768416ea2e64e89 Mon Sep 17 00:00:00 2001 From: xiezhouwei Date: Sun, 21 Jun 2026 16:40:24 +0800 Subject: [PATCH] refactor: replace api.tokendance.space with api.turingtoken.ai on homepage --- web/src/pages/Home/index.jsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/web/src/pages/Home/index.jsx b/web/src/pages/Home/index.jsx index c44f74e..7f6f223 100644 --- a/web/src/pages/Home/index.jsx +++ b/web/src/pages/Home/index.jsx @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 2025 QuantumNous This program is free software: you can redistribute it and/or modify @@ -216,7 +216,7 @@ function HeroSection() {
-              {`curl https://api.tokendance.space/v1/chat/completions \\
+              {`curl https://api.turingtoken.ai/v1/chat/completions \\
   -H "Authorization: Bearer \$YOUR_API_KEY" \\
   -H "Content-Type: application/json" \\
   -d '{
@@ -259,7 +259,7 @@ function HeroSection() {
     titleKey: '多协议兼容',
     descKey:
       '原生支持 OpenAI、Claude、Gemini 文本协议,覆盖图像 / 视频 / 文本转语音生成。无需修改代码,切换 Base URL 即可接入。',
-    code: 'baseURL: "api.tokendance.space"',
+    code: 'baseURL: "api.turingtoken.ai"',
   },
   {
     titleKey: '智能路由',
@@ -408,7 +408,7 @@ const LANG_LABELS = { curl: 'cURL', python: 'Python', nodejs: 'Node.js' };
 
 const CODE_SAMPLES = {
   openai: {
-    curl: `curl https://api.tokendance.space/v1/chat/completions \\
+    curl: `curl https://api.turingtoken.ai/v1/chat/completions \\
   -H "Authorization: Bearer $OPENAI_API_KEY" \\
   -H "Content-Type: application/json" \\
   -d '{
@@ -418,7 +418,7 @@ const CODE_SAMPLES = {
     python: `from openai import OpenAI
 
 client = OpenAI(
-    base_url="https://api.tokendance.space",
+    base_url="https://api.turingtoken.ai",
     api_key="sk-your-key"
 )
 
@@ -430,7 +430,7 @@ print(response.choices[0].message.content)`,
     nodejs: `import OpenAI from "openai";
 
 const client = new OpenAI({
-  baseURL: "https://api.tokendance.space",
+  baseURL: "https://api.turingtoken.ai",
   apiKey: "sk-your-key",
 });
 
@@ -441,7 +441,7 @@ const response = await client.chat.completions.create({
 console.log(response.choices[0].message.content);`,
   },
   claude: {
-    curl: `curl https://api.tokendance.space/v1/messages \\
+    curl: `curl https://api.turingtoken.ai/v1/messages \\
   -H "x-api-key: sk-your-key" \\
   -H "anthropic-version: 2023-06-01" \\
   -H "Content-Type: application/json" \\
@@ -453,7 +453,7 @@ console.log(response.choices[0].message.content);`,
     python: `import anthropic
 
 client = anthropic.Anthropic(
-    base_url="https://api.tokendance.space",
+    base_url="https://api.turingtoken.ai",
     api_key="sk-your-key"
 )
 
@@ -466,7 +466,7 @@ print(response.content[0].text)`,
     nodejs: `import Anthropic from "@anthropic-ai/sdk";
 
 const client = new Anthropic({
-  baseURL: "https://api.tokendance.space",
+  baseURL: "https://api.turingtoken.ai",
   apiKey: "sk-your-key",
 });
 
@@ -478,7 +478,7 @@ const response = await client.messages.create({
 console.log(response.content[0].text);`,
   },
   gemini: {
-    curl: `curl "https://api.tokendance.space/v1beta/models/gemini-2.0-flash:generateContent?key=sk-your-key" \\
+    curl: `curl "https://api.turingtoken.ai/v1beta/models/gemini-2.0-flash:generateContent?key=sk-your-key" \\
   -H "Content-Type: application/json" \\
   -d '{
     "contents": [{"parts":[{"text": "Hello!"}]}]