Replies: 2 comments 2 replies
-
Actually, this function already exists in the codebase with the name Lines 181 to 187 in 262fa00 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I haven't double checked to see if the CLI |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The idea here is to add a
run()
function toagentos.Component
.Signature would be something like:
agentos.Component.run(entry_point: str, params: dict) -> agentos.Run
Under the hood, this would do what the CLI
agentos run
command currently does, but via the python API. Then we can make the CLI version just call this function.Specifically, the function does something like:
Beta Was this translation helpful? Give feedback.
All reactions