refactor: switch to free-trial/private-deploy/buyout pricing, fix feature gaps, add SEO landing + deploy config

This commit is contained in:
TradeMate Dev
2026-07-12 08:09:28 +08:00
parent 9ca5d79d8a
commit 04924e3bc4
36 changed files with 1026 additions and 975 deletions
+7
View File
@@ -136,3 +136,10 @@ export async function generateKeywords(productName, description, count = 10) {
body: { product_name: productName, description, count, language: 'en' },
});
}
/** Extract structured customer info from pasted text */
export async function extractInfo(text, extractType = 'auto') {
return request('/api/v1/translate/extract', {
body: { text, extract_type: extractType },
});
}