Files
llmsecops-research/docs/change_log.md
2025-05-23 13:48:29 -06:00

935 B

Change Log

May 20, 2025

Tried multiple iterations on HTTP API and server:

  1. Basic WSGI server with route handler (from Python Cookbook, 3rd Edition, by David Beazley and Brian K. Jones (O'Reilly)).
  2. Flask API implementation
  3. 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.