AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
orders.py
根目录
/
benchmarks
/
verification-stress
/
tasks
/
vs-neg-reqid-logging
/
workdir
/
orders.py
1
import logging
2
3
log = logging.getLogger("orders")
4
5
def place(order, request_id):
6
log.info("placing order %s", order["id"])
7
return {"ok": True}
8
8 lines
PYTHON