This commit is contained in:
root 2025-07-10 17:10:52 +08:00
parent 398c853b80
commit 22097ca2b3
3 changed files with 0 additions and 3 deletions

View File

@ -55,7 +55,6 @@ def main():
# Test AI video module import
print("\n🧪 Testing AI video module import...")
try:
sys.path.append('python_core')
from ai_video import VideoGenerator
print("✅ AI video module imported successfully!")
except Exception as e:

View File

@ -12,7 +12,6 @@ import time
from typing import Dict, Any, Optional, Callable
import sys
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from ..config import settings
from ..utils import setup_logger
logger = setup_logger(__name__)

View File

@ -7,7 +7,6 @@ from typing import Union
import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from config import settings