auto-sync: 2026-04-29 20:15:25

This commit is contained in:
cfdaily
2026-04-29 20:15:25 +08:00
parent b1b8e5f447
commit 29e5b37ac3
89 changed files with 1 additions and 0 deletions
@@ -0,0 +1,17 @@
import requests
import json
BASE_URL = "http://localhost:7891/api"
print("Testing create session...")
r = requests.post(
f"{BASE_URL}/court-discuss/start",
json={
'topic': '测试朝堂议政功能',
'officials': ['zhongshu', 'menxia', 'shangshu']
}
)
print("Status code:", r.status_code)
print("Response:", r.text)