feat: fully implemented visual emotion recognition agent in pipeline

ref: N25B-393
This commit is contained in:
Storm
2026-01-16 13:26:53 +01:00
parent 0771b0d607
commit 05804c158d
6 changed files with 67 additions and 29 deletions

View File

@@ -8,11 +8,13 @@ class Belief(BaseModel):
:ivar name: The functor or name of the belief (e.g., 'user_said').
:ivar arguments: A list of string arguments for the belief.
:ivar replace: If True, existing beliefs with this name should be replaced by this one.
:ivar remove: If True, this belief should be removed from the belief base.
"""
name: str
arguments: list[str]
replace: bool = False
remove: bool = False
class BeliefMessage(BaseModel):