Minsoo Cheong
06/12/2023, 1:32 AMkqr
06/12/2023, 6:49 AMMinsoo Cheong
06/12/2023, 7:10 AMRaimund Klein
06/12/2023, 8:08 AMMinsoo Cheong
06/12/2023, 8:25 AMenum class PostType {
GENERAL,
QUESTION,
DEBATE,
...
;
}
data class Post(
... // some Post class that you use in your application
)
interface PostClassificationService {
fun classifyPost(post: Post): PostType
}
And in the future - who knows? maybe AI will evolve to become fast and precise enough to replace written implementations too