You've already forked RekomenciBackend
11 lines
204 B
Python
11 lines
204 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class ResumeEmbeddingVectorGenerator:
|
|
@abstractmethod
|
|
async def generate(
|
|
self,
|
|
text: str,
|
|
) -> list[float]:
|
|
raise NotImplementedError
|