You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function search_file is actually a gPRC method hosted in the remote server. I'm looking for ways to make generic gRPC calls without deconstructing the arguments into the required proto message struct. Actually, I don't and shouldn't care about the structure of the request and response.
Proposal
Should support such client side reflection or ways to make generic rpc calls.
Feature Request
Crates
Motivation
The motivation comes from a use case in LLM function calling, which returns the function name and it's arguments in a json format:
The function
search_file
is actually a gPRC method hosted in the remote server. I'm looking for ways to make generic gRPC calls without deconstructing the arguments into the required proto message struct. Actually, I don't and shouldn't care about the structure of the request and response.Proposal
Should support such client side reflection or ways to make generic rpc calls.
Alternatives
a related crate might be https://crates.io/crates/prost-reflect. I hope this can be supported by tonic natively.
The text was updated successfully, but these errors were encountered: