Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.GitHub.Models/GitHubModelsExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static IResourceBuilder<GitHubModelResource> AddGitHubModel(this IDistrib
State = new ResourceStateSnapshot(KnownResourceStates.Running, KnownResourceStateStyles.Success),
Properties =
[
new(CustomResourceKnownProperties.Source, "Github Models")
new(CustomResourceKnownProperties.Source, "GitHub Models")
]
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private static async Task<HealthCheckResult> HandleErrorCode(HttpResponseMessage
{
}

return HealthCheckResult.Unhealthy($"GitHub Models returned an unsupported resonse: ({response.StatusCode}) {errorResponse?.Error?.Message}");
return HealthCheckResult.Unhealthy($"GitHub Models returned an unsupported response: ({response.StatusCode}) {errorResponse?.Error?.Message}");
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.GitHub.Models/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var chat = builder.AddGitHubModel("chat", "openai/gpt-4o-mini")
.WithApiKey(apiKey);
```

The in user secrets:
Then in user secrets:

```json
{
Expand Down