Rename process to stream (#1053)

* rename process to stream

* remove /image and add webrtc_stream_video scaffolding

* remove _image
This commit is contained in:
Harisreedhar
2026-02-26 15:21:19 +05:30
committed by henryruhs
parent 078041461d
commit 1ba2adc10b
3 changed files with 11 additions and 5 deletions
@@ -58,7 +58,7 @@ def before_each() -> None:
asset_store.clear()
def test_process_image(test_client : TestClient) -> None:
def test_stream_image(test_client : TestClient) -> None:
create_session_response = test_client.post('/session', json =
{
'client_version': metadata.get('version')
@@ -88,7 +88,7 @@ def test_process_image(test_client : TestClient) -> None:
assert select_response.status_code == 200
with test_client.websocket_connect('/process/image', subprotocols =
with test_client.websocket_connect('/stream', subprotocols =
[
'access_token.' + access_token
]) as websocket: