We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
neither, but agent state could be used to achieve both. this is in particular to just implement
async def GetState( # type: ignore self, request: agent_worker_pb2.AgentId, context: grpc.aio.ServicerContext[agent_worker_pb2.AgentId, agent_worker_pb2.GetStateResponse], ) -> agent_worker_pb2.GetStateResponse: # type: ignore raise NotImplementedError("Method not implemented!") async def SaveState( # type: ignore self, request: agent_worker_pb2.AgentState, context: grpc.aio.ServicerContext[agent_worker_pb2.AgentId, agent_worker_pb2.SaveStateResponse], ) -> agent_worker_pb2.SaveStateResponse: # type: ignore raise NotImplementedError("Method not implemented!")
https://github.com/microsoft/autogen/blob/ryswee-xlang-aspire/python/packages/autogen-core/src/autogen_core/application/_worker_runtime_host_servicer.py#L263-L264 autogen/python/packages/autogen-core/src/autogen_core/application/_worker_runtime_host_servicer.py at ryswee-xlang-aspire · microsoft/autogen A programming framework for agentic AI 🤖. Contribute to microsoft/autogen development by creating an account on GitHub.
Its not a general purpose memory, just a way to plumb through Orleans persistence.
this lets you write stateless agents that still can resiliently carry out a stateful workflow.
eg here: https://github.com/microsoft/autogen/blob/ryswee-xlang-aspire/dotnet/samples/Hello/HelloAgentState/Program.cs#L80-L81 we have an example where the agent relies on the agent state to determine the state of the workflow. Program.cs microsoft/autogen
enables using the persistence apis in Orleans
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What feature would you like to be added?
neither, but agent state could be used to achieve both. this is in particular to just implement
https://github.com/microsoft/autogen/blob/ryswee-xlang-aspire/python/packages/autogen-core/src/autogen_core/application/_worker_runtime_host_servicer.py#L263-L264
autogen/python/packages/autogen-core/src/autogen_core/application/_worker_runtime_host_servicer.py at ryswee-xlang-aspire · microsoft/autogen
A programming framework for agentic AI 🤖. Contribute to microsoft/autogen development by creating an account on GitHub.
Its not a general purpose memory, just a way to plumb through Orleans persistence.
this lets you write stateless agents that still can resiliently carry out a stateful workflow.
eg here: https://github.com/microsoft/autogen/blob/ryswee-xlang-aspire/dotnet/samples/Hello/HelloAgentState/Program.cs#L80-L81 we have an example where the agent relies on the agent state to determine the state of the workflow.
Program.cs
microsoft/autogen
Why is this needed?
enables using the persistence apis in Orleans
The text was updated successfully, but these errors were encountered: