Merge remote-tracking branch 'origin/develop' into release/async
This commit is contained in:
@@ -14,7 +14,7 @@ class IVideoGeneratorService(ABC):
|
||||
]
|
||||
|
||||
@abstractmethod
|
||||
async def create_video(self, text: str, avatar: str):
|
||||
async def create_video(self, text: str, avatar: str, title: str):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import logging
|
||||
import os
|
||||
import random
|
||||
import re
|
||||
import uuid
|
||||
import random
|
||||
from typing import Dict, List, Optional
|
||||
|
||||
from app.repositories.abc import IFileStorage, IDocumentStore
|
||||
from app.services.abc import ISpeakingService, ILLMService, IVideoGeneratorService, ISpeechToTextService
|
||||
from app.configs.constants import (
|
||||
FieldsAndExercises, GPTModels, TemperatureSettings,
|
||||
FilePaths
|
||||
)
|
||||
from app.helpers import TextHelper
|
||||
from app.repositories.abc import IFileStorage, IDocumentStore
|
||||
from app.services.abc import ISpeakingService, ILLMService, IVideoGeneratorService, ISpeechToTextService
|
||||
|
||||
|
||||
class SpeakingService(ISpeakingService):
|
||||
|
||||
Reference in New Issue
Block a user