feat: integrate AgentSpeak with semantic belief extraction
ref: N25B-429
This commit is contained in:
14
src/control_backend/schemas/belief_list.py
Normal file
14
src/control_backend/schemas/belief_list.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
from control_backend.schemas.program import Belief as ProgramBelief
|
||||
|
||||
|
||||
class BeliefList(BaseModel):
|
||||
"""
|
||||
Represents a list of beliefs, separated from a program. Useful in agents which need to
|
||||
communicate beliefs.
|
||||
|
||||
:ivar: beliefs: The list of beliefs.
|
||||
"""
|
||||
|
||||
beliefs: list[ProgramBelief]
|
||||
Reference in New Issue
Block a user