42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
from uuid import UUID
|
|
|
|
from fastapi import APIRouter, HTTPException
|
|
from pydantic import BaseModel, Field
|
|
|
|
from memgpt.server.rest_api.interface import QueuingInterface
|
|
from memgpt.server.server import SyncServer
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
class AuthResponse(BaseModel):
|
|
uuid: UUID = Field(..., description="UUID of the user")
|
|
|
|
|
|
class AuthRequest(BaseModel):
|
|
password: str = Field(None, description="Admin password provided when starting the MemGPT server")
|
|
|
|
|
|
def setup_auth_router(server: SyncServer, interface: QueuingInterface, password: str) -> APIRouter:
|
|
@router.post("/auth", tags=["auth"], response_model=AuthResponse)
|
|
def authenticate_user(request: AuthRequest) -> AuthResponse:
|
|
"""
|
|
Authenticates the user and sends response with User related data.
|
|
|
|
Currently, this is a placeholder that simply returns a UUID placeholder
|
|
"""
|
|
interface.clear()
|
|
try:
|
|
if request.password != password:
|
|
# raise HTTPException(status_code=400, detail="Incorrect credentials")
|
|
response = server.api_key_to_user(api_key=request.password)
|
|
else:
|
|
response = server.authenticate_user()
|
|
except HTTPException:
|
|
raise
|
|
except Exception as e:
|
|
raise HTTPException(status_code=500, detail=f"{e}")
|
|
return AuthResponse(uuid=response)
|
|
|
|
return router
|