Skip to content

Commit

Permalink
fix margin
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzeyu91 committed Aug 16, 2024
1 parent b5f2d85 commit 15a3a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GraphRag.Net/Domain/Service/SemanticService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace GraphRag.Net.Domain.Service
[ServiceDescription(typeof(ISemanticService), ServiceLifetime.Scoped)]
public class SemanticService(Kernel _kernel) : ISemanticService
{
public async Task<string> CreateGraphAsync(string input)
public async Task<GraphModel> CreateGraphAsync(string input)
{
var retryPolicy = Policy.Handle<Exception>().RetryAsync(GraphSysOption.RetryCounnt, (ex, count) =>
{
Expand Down

0 comments on commit 15a3a21

Please sign in to comment.