-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
Refactoring the services and implementing an in-memory runtime for .NET #4005
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet/src/Microsoft.AutoGen/Abstractions/IAgentWorkerRuntime.cs
Outdated
Show resolved
Hide resolved
dotnet/src/Microsoft.AutoGen/Agents/InMemory/InMemoryAgentWorkerRuntime.cs
Outdated
Show resolved
Hide resolved
dotnet/src/Microsoft.AutoGen/Agents/InMemory/InMemoryAgentWorkerRuntime.cs
Outdated
Show resolved
Hide resolved
dotnet/src/Microsoft.AutoGen/Agents/InMemory/InMemoryAgentWorkerRuntime.cs
Outdated
Show resolved
Hide resolved
dotnet/src/Microsoft.AutoGen/Agents/InMemory/InMemoryAgentWorkerRuntime.cs
Outdated
Show resolved
Hide resolved
rysweet
changed the title
starting to implement an in-memory only runtime
Refactoring the services and implementing an in-memory runtime for .NET
Oct 31, 2024
dotnet/src/Microsoft.AutoGen/Abstractions/Microsoft.AutoGen.Abstractions.csproj
Outdated
Show resolved
Hide resolved
dotnet/src/Microsoft.AutoGen/Agents/Services/InProcess/InMemoryMessageQueue.cs
Outdated
Show resolved
Hide resolved
LittleLittleCloud
approved these changes
Nov 12, 2024
MohMaz
pushed a commit
to MohMaz/autogen
that referenced
this pull request
Nov 15, 2024
…ET (microsoft#4005) closes microsoft#3950 closes microsoft#3702 What this is doing: I am refactoring the services on the .NET runtime and attempting to clarify the naming and organization. I added this doc to help capture the naming and concepts. AgentRuntime / Worker should work similar to the python version and enables running the whole agent system in one process. For remote the system uses the versions of the services in the grpc folder. lots of other bug fixes/threading cleanup - passing cancellation token throughout Services update clarifies the naming and roles: Worker: Hosts the Agents and is a client to the Gateway Gateway: -- RPC gateway for the other services APIs -- Provides an RPC bridge between the workers and the Event Bus Registry: keeps track of the agents in the system and which events they can handle AgentState: persistent state for agents
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#3950 #3702
What this is doing:
Services update clarifies the naming and roles:
-- RPC gateway for the other services APIs
-- Provides an RPC bridge between the workers and the Event Bus
Checks