-
Notifications
You must be signed in to change notification settings - Fork 916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix key for FastapiContextDataProvider context data provider #3890
base: main
Are you sure you want to change the base?
Conversation
Hi, thank you for your interest in helping to improve the prompt flow 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. |
Still an issue to fix. This PR shows how to fix it. |
Is it possible to have a comment/look from a maintainer :) ? |
Hi, thank you for your interest in helping to improve the prompt flow 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. |
Description
Hello,
with v2 fastapi + managed online endpoint with AML, the data collector can't write anything because in
FlowMonitor
input_data are requested withinput_data = self.context_data_provider.get_request_data()
. This method looks for a key calledinput_data
inFastapiContextDataProvider
.But the value of this key is
None
because we don't set it correctly inget_score_router()
(see changes is PR).Maybe i'm wrong ?