Closed wahyuen closed 8 months ago
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @ryogok, @TFR258, @tburns10.
Thank you for your feedback. Tagging and routing to the team best able to assist.
Hi @wahyuen. Thank you, for your interest in helping to improve the Azure SDK experience and for your contribution. We've noticed that there hasn't been recent engagement on this pull request. If this is still an active work stream, please let us know by pushing some changes or leaving a comment. Otherwise, we'll close this out in 7 days.
bump
Hi @wahyuen, we deeply appreciate your input into this project. Regrettably, this issue has remained inactive for over 2 years, leading us to the decision to close it. We've implemented this policy to maintain the relevance of our issue queue and facilitate easier navigation for new contributors. If you still believe this topic requires attention, please feel free to create a new issue, referencing this one. Thank you for your understanding and ongoing support.
Library or service name. What library or service is this request related to? Cognitive Services - Computer Vision
Is your feature request related to a problem? Please describe. What feature would you like to get added? What problem is it solving?
The current v6.0.0-preview.1 SDK and documentation proposes customers to begin migrating off the soon deprecated v2 endpoints. As part of attempting to integrate the new v3 APIs via the SDK we have noticed the following areas which might make lives of other developers in this area easier.
operationId
when performing aReadAsync
call. Users will commonly have to reuse theoperationId
in order to obtain the actual result later, currently this is only exposed out as part of theReadHeaders
object which only has anOperationLocation
value which is the full URI. Users are then left to perform string manipulation in order to extract theoperationId
for future operationsAmend or add overload to
GetReadResultAsync(Guid operationId)
to accept a stringoperationId
instead. Given users can only receive this as astring
from the previous above extraction method, having to then pass it in withGuid.Parse(operationId)
is just another hoop to jump through in order to use the APIProvide supported language
enum
for theRead
API, similar toOcrLanguages
. It appears that theOcrLanguages
enum is the list of supported languages for the legacyOCR
endpoint, it would be great to have an equivalent for the v3 version