-
Notifications
You must be signed in to change notification settings - Fork 2
feat(ai-image): expose the per-user generation history #89
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -155,6 +155,7 @@ public static void Map(WebApplication app) | |
| app.MapPost("/private-api/boosted-post", PrivateApi.BoostedPost); | ||
| app.MapPost("/private-api/ai-generate-price", PrivateApi.AiGeneratePrice); | ||
| app.MapPost("/private-api/ai-generate-image", PrivateApi.AiGenerateImage); | ||
| app.MapPost("/private-api/ai-images", PrivateApi.AiImagesHistory); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2. ai-images lacks parity artifacts The PR adds the observable POST /private-api/ai-images endpoint without a corresponding dotnet/parity/KNOWN_DIVERGENCES entry or an automated endpoint test. Both artifacts are required for HTTP-visible route changes. Agent Prompt
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Parity artifacts added in 2f5a086: an AI_IMAGES_DIVERGENCE entry for the three generated probes, mirroring the dictation-route precedent for additive endpoints. On tests: the repo's convention unit-tests extractable request-construction logic (BuildTranscribeContent), while thin validate-and-pipe handlers like the sibling AI price routes have no endpoint harness; this handler has no extractable logic beyond the upstream URL, and the username-from-validated-code property is exercised by the parity badcode probe answering 401. |
||
| app.MapPost("/private-api/ai-assist-price", PrivateApi.AiAssistPrice); | ||
| app.MapPost("/private-api/ai-assist", PrivateApi.AiAssist); | ||
| app.MapPost("/private-api/ai-transcribe-price", PrivateApi.AiTranscribePrice); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.