fix: add pydantic_settings to requirements
This commit is contained in:
@@ -8,6 +8,11 @@ Central configuration management for the MixVideo V2 application.
|
||||
import os
|
||||
from pathlib import Path
|
||||
from typing import Dict, Any
|
||||
try:
|
||||
from pydantic_settings import BaseSettings
|
||||
from pydantic import Field
|
||||
except ImportError:
|
||||
# Fallback for older pydantic versions
|
||||
from pydantic import BaseSettings, Field
|
||||
|
||||
|
||||
|
||||
@@ -65,3 +65,5 @@ loguru>=0.7.0
|
||||
# Configuration
|
||||
pydantic>=2.0.0
|
||||
pyyaml>=6.0
|
||||
|
||||
pydantic_settings
|
||||
|
||||
Reference in New Issue
Block a user