use req/resp from hermesllm in llm gateway

This commit is contained in:
Adil Hafeez 2025-06-03 15:57:30 -07:00
parent f10e0fcece
commit b0c1e97dc5
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
6 changed files with 35 additions and 14 deletions

View file

@ -64,6 +64,8 @@ def docker_start_archgw_detached(
item for volume in volume_mappings for item in ("-v", volume)
]
print("using custom release path")
options = [
"docker",
"run",
@ -76,6 +78,7 @@ def docker_start_archgw_detached(
"--add-host",
"host.docker.internal:host-gateway",
ARCHGW_DOCKER_IMAGE,
"/Users/adilhafeez/src/intelligent-prompt-gateway/crates/target/wasm32-wasip1/release:/etc/envoy/proxy-wasm-plugins:ro",
]
result = subprocess.run(options, capture_output=True, text=True, check=False)