(ctx context.Context, in *pb.PredictOptions, f func(reply *pb.Reply), opts ...ggrpc.CallOption)
| 111 | } |
| 112 | |
| 113 | func (c *InFlightTrackingClient) PredictStream(ctx context.Context, in *pb.PredictOptions, f func(reply *pb.Reply), opts ...ggrpc.CallOption) error { |
| 114 | defer c.track(ctx)() |
| 115 | return c.reconcile(c.inner.PredictStream(ctx, in, f, opts...)) |
| 116 | } |
| 117 | |
| 118 | func (c *InFlightTrackingClient) Embeddings(ctx context.Context, in *pb.PredictOptions, opts ...ggrpc.CallOption) (*pb.EmbeddingResult, error) { |
| 119 | defer c.track(ctx)() |
nothing calls this directly
no test coverage detected