feat: Add P-Reinforce 00_Raw Auto-structure logic

This commit is contained in:
Jay
2026-04-16 11:25:40 +09:00
parent 1c3db89016
commit 7a80314862
9 changed files with 363 additions and 22 deletions
+9
View File
@@ -0,0 +1,9 @@
import requests
import json
try:
res = requests.post('http://127.0.0.1:4825/api/evaluate', json={"prompt": "1+1은?"})
print(res.status_code)
print(res.text)
except Exception as e:
print(e)