fix
This commit is contained in:
parent
398c853b80
commit
22097ca2b3
|
|
@ -55,7 +55,6 @@ def main():
|
||||||
# Test AI video module import
|
# Test AI video module import
|
||||||
print("\n🧪 Testing AI video module import...")
|
print("\n🧪 Testing AI video module import...")
|
||||||
try:
|
try:
|
||||||
sys.path.append('python_core')
|
|
||||||
from ai_video import VideoGenerator
|
from ai_video import VideoGenerator
|
||||||
print("✅ AI video module imported successfully!")
|
print("✅ AI video module imported successfully!")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ import time
|
||||||
from typing import Dict, Any, Optional, Callable
|
from typing import Dict, Any, Optional, Callable
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
||||||
from ..config import settings
|
from ..config import settings
|
||||||
from ..utils import setup_logger
|
from ..utils import setup_logger
|
||||||
logger = setup_logger(__name__)
|
logger = setup_logger(__name__)
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ from typing import Union
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
||||||
|
|
||||||
from config import settings
|
from config import settings
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue