Dotnet SDK has the option for getting EntityState from the client -
private readonly DurableTaskClient _client;
EntityMetadata<DurableAgentState>? entityResponse = await this._client.Entities.GetEntityAsync<DurableAgentState>(
this.SessionId,
cancellation: cancellationToken);
But I dont see anything similar in TaskHubGrpcClient for Python
This looks like a feature gap, can we get a similar API to how Dotnet SDK currently supports?