feat: implement AI model API proxy service
This commit is contained in:
13
backend/app/models/client_key.py
Normal file
13
backend/app/models/client_key.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Client API Key model."""
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@dataclass
|
||||
class ClientKey:
|
||||
"""Client API key for authentication."""
|
||||
id: int
|
||||
key: str
|
||||
name: Optional[str]
|
||||
is_active: bool
|
||||
created_at: str
|
||||
Reference in New Issue
Block a user