@baseUrl = http://0.0.0.0:10502 @model = gpt-4o # Health Check GET {{baseUrl}}/health ### # Test 1: Simple Non-Streaming Chat Completion POST {{baseUrl}}/v1/chat/completions Content-Type: application/json { "model": "{{model}}", "messages": [ { "role": "user", "content": "Hello! Can you help me understand what machine learning is?" } ] } ### # Test 2: Simple Streaming Chat Completion POST {{baseUrl}}/v1/chat/completions Content-Type: application/json { "model": "{{model}}", "messages": [ { "role": "user", "content": "Explain the concept of artificial intelligence in simple terms." } ], "stream": true } ### Test 3 POST http://localhost:8001/v1/chat/completions Content-Type: application/json { "model": "{{model}}", "messages": [ { "role": "user", "content": "what is the effective date of the master agreement for arcadyan" } ] }