Connect to the inference service.
(endpoint: &str)
| 554 | |
| 555 | /// Connect to the inference service. |
| 556 | async fn connect_inference(endpoint: &str) -> Result<InferenceClient<AuthedChannel>> { |
| 557 | let channel = connect_channel(endpoint).await?; |
| 558 | Ok(InferenceClient::new(channel)) |
| 559 | } |
| 560 | |
| 561 | /// Fetch sandbox policy from `OpenShell` server via gRPC. |
| 562 | /// |
no test coverage detected