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