translation demo for iluvatar mr

This commit is contained in:
aiyueqi
2025-09-15 11:47:12 +08:00
commit a0e041052c
7 changed files with 609 additions and 0 deletions

31
test.py Normal file
View File

@@ -0,0 +1,31 @@
import requests
url = "http://127.0.0.1:10078/v1/translate"
body = [
{"Text": "生活就像一块巧克力"},
{"Text": "你来自哪里"},
{"Text": "你吃饭了吗"},
]
headers = {
"Content-Type": "application/json",
"Accept": "application/json"
}
try:
response = requests.post(
url,
json=body,
headers=headers
)
if response.status_code == 200:
print("Succeed!")
print("Response:", response.json())
else:
print(f"Failedcode: {response.status_code}")
print("Error detail:", response.text)
except requests.exceptions.RequestException as e:
print("request error:", str(e))