python-agentspeak
python-agentspeak copied to clipboard
A Python-based interpreter for the agent-oriented programming language JASON
Hi Niklas, Thank you for releasing python-agentspeak! I've been watching LLM-based Autonomous Agents take off. One thing that bothers me is the control flow for the agents seems quite simple....
I'm writing code with your implementation and as it stands I have some questions about how everything works. I want to add path1(list) to the agent. How can I do...
A belief containing a list as an argument can be constructed by passing tuples representing the list to the Literal constructor. e.g ``` my_literal = Literal("my_functor", ((12, 45), )) ```...
Hi Niklas, could you briefly explain what freezing a literal means and what part the intention scope plays? Does intention scope refer to the context which describes where a goal...
I was just testing pyson with some examples, such as a variation of the blocks world, when I just realized that the '|' operator to deal with the "rest" of...
Something like that: ``` #!/usr/bin/env python import os import random import agentspeak.runtime import agentspeak.stdlib from agentspeak import Literal, GoalType, Trigger from agentspeak.runtime import Intention # Combine standard library actions with...