-
Notifications
You must be signed in to change notification settings - Fork 0
UPSTREAM PR #1166: feat: add example Python web client #7
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
base: master
Are you sure you want to change the base?
Conversation
|
Explore the complete analysis inside the Version Insights Perfect! I've retrieved the summary report for your project. Here's what the analysis shows: Summary Report for stable-diffusion.cpp (PR #7)Key Findings: ✅ No Performance Issues Detected - The analysis found that no modified functions showed performance changes greater than 2% in either response time or throughput time. Project Information:
Conclusion: |
3e2648e to
178a7d8
Compare
dde51f7 to
2d36236
Compare
|
Explore the complete analysis inside the Version Insights Perfect! I've retrieved the summary report for your project. Here are the key findings: Summary Report for stable-diffusion.cpp (PR #7)Good News: The analysis shows that no modified functions were found with performance changes greater than 2% between the base and target versions. Project Information:
Version Comparison:
Performance Analysis Results:✅ No performance regressions detected This indicates that Pull Request #7 maintains stable performance characteristics and doesn't introduce any performance issues to the codebase. All modified functions show changes within the acceptable 2% threshold. |
1f909e5 to
027a37e
Compare
e31dd7d to
cf91470
Compare
2d36236 to
c011835
Compare
|
Based on the analysis results, no functions were identified with meaningful performance changes between the base and target versions. The function insights for both response time and throughput time returned empty results, indicating that the code modifications did not produce measurable performance impacts. This suggests that the changes between versions are either non-performance-affecting (such as documentation updates, refactoring without algorithmic changes, or minor bug fixes), or the modifications are too small in scope to register significant differences in execution time metrics. Conclusion: No meaningful performance changes occurred between the analyzed versions. See the complete breakdown in Version Insights |
Mirrored from leejet/stable-diffusion.cpp#1166
Adds a basic Python command-line client for the sd-server API.
I've tried to keep it compatible with the
sd-clicommand line, to make it easier to use from user scripts already expecting that interface; so unsupported arguments are ignored, and the server URL can be specified with an environment variable. It uses supported API fields when available, and propagates all other server supported flags viasd_cpp_extra_args.It's mostly useful for testing the server itself, and as reference code for third-party implementations.