Skip to content

Commit

Permalink
Merge pull request #4 from aaronpowell/aaronpowell/issue-3
Browse files Browse the repository at this point in the history
Making the `ModelName` property public for read-only access.
  • Loading branch information
QuantumNightmare authored Aug 13, 2024
2 parents 80c22dc + 94bf83c commit 1922dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Raygun.Aspire.Hosting.Ollama/OllamaResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public OllamaResource(string name, string modelName)
ModelName = modelName;
}

internal string ModelName { get; set; }
public string ModelName { get; internal set; }

/// <summary>
/// Gets the endpoint for the Ollama server.
Expand Down

0 comments on commit 1922dd4

Please sign in to comment.