feat: rename .NET package to Neo4j.AgentFramework.GraphRAG#2
Merged
Conversation
Rename from Neo4j.AgentFramework to Neo4j.AgentFramework.GraphRAG to distinguish from the separate Neo4j Memory provider (neo4j-agent-memory). Matches the Python naming where agent-framework-neo4j is specifically the GraphRAG retrieval provider. Renames: directories, csproj files, PackageId, namespaces, solution references, sample usings, CI/CD paths, and all documentation.
There was a problem hiding this comment.
Pull request overview
Renames the .NET Neo4j GraphRAG provider package to Neo4j.AgentFramework.GraphRAG to clearly differentiate it from other Neo4j Agent Framework-related packages (e.g., the separate memory provider), aligning naming intent across languages.
Changes:
- Renamed the .NET library/test project directories and updated the solution/project references accordingly.
- Updated namespaces/usings across library, tests, and samples to
Neo4j.AgentFramework.GraphRAG(and.Retrieval). - Updated packaging/release documentation and the NuGet pack/publish workflow to target the renamed project/package.
Reviewed changes
Copilot reviewed 27 out of 27 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| dotnet/tests/Neo4j.AgentFramework.Tests/GlobalUsings.cs | Removes old test project global usings as part of test project rename/removal. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/VectorRetrieverTests.cs | Updates namespace/imports to new GraphRAG namespaces. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/StopWordsTests.cs | Updates test namespace to GraphRAG. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/ResultFormattingTests.cs | Updates namespace/imports to GraphRAG retrieval. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/Neo4jContextProviderTests.cs | Updates namespace/imports to GraphRAG retrieval. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/Neo4jContextProviderOptionsTests.cs | Updates test namespace to GraphRAG. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/Neo4j.AgentFramework.GraphRAG.Tests.csproj | Points tests to renamed library project reference. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/HybridRetrieverTests.cs | Updates namespace/imports to GraphRAG retrieval. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/GlobalUsings.cs | Adds GraphRAG global using for tests. |
| dotnet/tests/Neo4j.AgentFramework.GraphRAG.Tests/FulltextRetrieverTests.cs | Updates namespace/imports to GraphRAG retrieval. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/StopWords.cs | Moves stop words utility into GraphRAG namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Retrieval/VectorRetriever.cs | Moves retriever into GraphRAG.Retrieval namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Retrieval/RetrieverResult.cs | Moves result types into GraphRAG.Retrieval namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Retrieval/IRetriever.cs | Moves interface into GraphRAG.Retrieval namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Retrieval/HybridRetriever.cs | Moves hybrid retriever into GraphRAG.Retrieval namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Retrieval/FulltextRetriever.cs | Moves fulltext retriever into GraphRAG.Retrieval namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Neo4jSettings.cs | Moves settings into GraphRAG namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Neo4jContextProviderOptions.cs | Moves options into GraphRAG namespace. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Neo4jContextProvider.cs | Updates provider namespace and retrieval using to GraphRAG. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/Neo4j.AgentFramework.GraphRAG.csproj | Updates PackageId and InternalsVisibleTo to the renamed test assembly. |
| dotnet/src/Neo4j.AgentFramework.GraphRAG/IndexType.cs | Moves IndexType enum into GraphRAG namespace. |
| dotnet/samples/Neo4j.Samples/Program.cs | Updates sample import to GraphRAG namespace. |
| dotnet/samples/Neo4j.Samples/Neo4j.Samples.csproj | Updates sample project reference to renamed library. |
| dotnet/README.md | Updates install instructions, sample using, repo structure, and pack command to new package/project name. |
| dotnet/neo4j-provider.sln | Updates solution project entries to renamed library and test projects. |
| CLAUDE.md | Updates documented paths and commands to the renamed library/test project. |
| .github/workflows/release.yml | Updates dotnet pack path and NuGet package URL to Neo4j.AgentFramework.GraphRAG. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or 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
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.
Summary
Rename the .NET package from
Neo4j.AgentFrameworktoNeo4j.AgentFramework.GraphRAGto distinguish it from the separate Neo4j Memory provider (neo4j-agent-memory).This matches the Python naming intent where
agent-framework-neo4jis specifically the GraphRAG retrieval provider, as documented in microsoft/agent-framework#4010.Changes
Neo4j.AgentFramework→Neo4j.AgentFramework.GraphRAGNeo4j.AgentFramework.GraphRAGTest plan
dotnet build— succeedsdotnet test— 48 tests passing