mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-02-12 14:42:48 +00:00
935 B
935 B
Change Log
May 20, 2025
Tried multiple iterations on HTTP API and server:
- Basic WSGI server with route handler (from Python Cookbook, 3rd Edition, by David Beazley and Brian K. Jones (O'Reilly)).
- Flask API implementation
- FastAPI implementation
The original WSGI server seemed to be the most performant, with this run producing a successful garak test run against the Phi-3 model.
Other implementations seem to break down during the garak testing. For example, FastAPI failed to handle the garak tests in this workflow run.
Refactoring to return to the original, simply WSGI server, as seen in this commit.