1
0
mirror of https://github.com/imartinez/privateGPT.git synced 2025-05-07 07:47:15 +00:00
privateGPT/tests
lopagela aa70d3d9f0
Add simple Basic auth ()
* Add simple Basic auth

To enable the basic authentication, one must set `server.auth.enabled`
to true.

The static string defined in `server.auth.secret` must be set in the
header `Authorization`.

The health check endpoint will always be accessible, no matter the API
auth configuration.

* Fix linting and type check

* Fighting with mypy being too restrictive

Had to disable mypy in the `auth` as we are not using the same signature
for the authenticated method.

mypy was complaining that the signatures of `authenticated` must be
identical, no matter in which logical branch we are.
Given that fastapi is accomodating itself of method signatures (it will
inject the dependencies in the method call), this warning of mypy is
actually preventing us to do something legit.

mypy doc: https://mypy.readthedocs.io/en/stable/common_issues.html

* Write tests to verify that the simple auth is working
2023-11-12 19:05:00 +01:00
..
fixtures Add simple Basic auth () 2023-11-12 19:05:00 +01:00
server Add simple Basic auth () 2023-11-12 19:05:00 +01:00
settings fix: fix pytorch version to avoid wheel bug () 2023-10-27 20:27:40 +02:00
__init__.py Next version of PrivateGPT () 2023-10-19 16:04:35 +02:00
conftest.py Next version of PrivateGPT () 2023-10-19 16:04:35 +02:00