mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 23:23:55 +08:00
13 lines
267 B
Python
13 lines
267 B
Python
from abc import ABC, abstractmethod
|
|
from config.logger import setup_logging
|
|
|
|
TAG = __name__
|
|
logger = setup_logging()
|
|
|
|
|
|
class VLLMProviderBase(ABC):
|
|
@abstractmethod
|
|
def response(self, question, base64_image):
|
|
"""VLLM response generator"""
|
|
pass
|