benchmark/embedding/benchmark_http.py [81:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                async with session.post(
                    self.api_url,
                    json=request_body,
                    headers={"Content-Type": "application/json"},
                ) as response:
                    if response.status != 200:
                        error_text = await response.text()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



benchmark/embedding/benchmark_http.py [115:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            async with session.post(
                self.api_url,
                json=request_body,
                headers={"Content-Type": "application/json"},
            ) as response:
                if response.status != 200:
                    error_text = await response.text()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



