26 lines
818 B
Python
26 lines
818 B
Python
#!/usr/bin/env python3
|
|
"""测试 Dify 直接通过 IP 访问"""
|
|
import httpx
|
|
import asyncio
|
|
|
|
async def test_by_ip():
|
|
async with httpx.AsyncClient(timeout=30) as client:
|
|
# 直接通过 IP 访问
|
|
print("=== Direct IP: 10.80.0.240 ===")
|
|
try:
|
|
r = await client.post(
|
|
"http://10.80.0.240/v1/chat-messages",
|
|
json={"query": "hello", "user": "test"},
|
|
headers={
|
|
"Authorization": "Bearer app-7jkRkAzvX4QM9v9SM3P8mMEO",
|
|
"Content-Type": "application/json"
|
|
}
|
|
)
|
|
print(f"Status: {r.status_code}")
|
|
print(f"Response: {r.text[:300]}")
|
|
except Exception as e:
|
|
print(f"Error: {e}")
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(test_by_ip())
|