55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
"""Test Dify approval intent detection API directly."""
|
|
import json
|
|
import sys
|
|
import httpx
|
|
|
|
BASE_URL = "http://yw-dify.dc.servyou-it.com/dify2openai"
|
|
API_KEY = "app-JWI7u1LTn9XPVe95KL6dHzPx"
|
|
|
|
url = f"{BASE_URL.rstrip('/')}/v1/chat/completions"
|
|
body = {
|
|
"model": "dify",
|
|
"messages": [
|
|
{"role": "system", "content": "你是IT服务台审批意图识别器。"},
|
|
{"role": "user", "content": "我要申请VPN"},
|
|
],
|
|
"temperature": 0,
|
|
}
|
|
headers = {
|
|
"Authorization": f"Bearer {API_KEY}",
|
|
"Content-Type": "application/json",
|
|
}
|
|
|
|
print(f"URL: {url}")
|
|
print(f"Body: {json.dumps(body, ensure_ascii=False)}")
|
|
print("---")
|
|
|
|
try:
|
|
resp = httpx.post(url, json=body, headers=headers, timeout=30.0)
|
|
print(f"HTTP Status: {resp.status_code}")
|
|
print(f"Response Headers: {dict(resp.headers)}")
|
|
print(f"Response Body (raw): {resp.text[:2000]}")
|
|
print("---")
|
|
|
|
# Try parsing as JSON
|
|
try:
|
|
data = resp.json()
|
|
print(f"Response JSON: {json.dumps(data, ensure_ascii=False, indent=2)[:2000]}")
|
|
choices = data.get("choices") or []
|
|
if choices:
|
|
content = choices[0].get("message", {}).get("content", "")
|
|
print(f"Content: {content[:500]}")
|
|
# Try parsing content as JSON
|
|
try:
|
|
parsed = json.loads(content)
|
|
print(f"Parsed: {json.dumps(parsed, ensure_ascii=False, indent=2)}")
|
|
except json.JSONDecodeError as e:
|
|
print(f"Content is NOT valid JSON: {e}")
|
|
else:
|
|
print("No choices in response")
|
|
except Exception as e:
|
|
print(f"Response is not JSON: {e}")
|
|
except Exception as e:
|
|
print(f"Request FAILED: {type(e).__name__}: {e}")
|