You've already forked RekomenciBackend
add resume
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from abc import abstractmethod
|
||||
from typing import Protocol
|
||||
|
||||
|
||||
class ResumeEmbeddingVectorGenerator(Protocol):
|
||||
@abstractmethod
|
||||
async def generate(
|
||||
self,
|
||||
position: str,
|
||||
about_me: str,
|
||||
key_skills: list[str],
|
||||
) -> list[float]:
|
||||
raise NotImplementedError
|
||||
Reference in New Issue
Block a user