Skip to content

Commit

Permalink
Corrected typos in documentation of OllamaApiClient
Browse files Browse the repository at this point in the history
  • Loading branch information
osasseville authored and awaescher committed Sep 11, 2024
1 parent 098e0a2 commit 9d05a47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/OllamaApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class OllamaApiClient : IOllamaApiClient
public string SelectedModel { get; set; }

/// <summary>
/// Creates a new instace of the Ollama API client
/// Creates a new instance of the Ollama API client
/// </summary>
/// <param name="uriString">The uri of the Ollama API endpoint</param>
/// <param name="defaultModel">The default model that should be used with Ollama</param>
Expand All @@ -52,7 +52,7 @@ public OllamaApiClient(string uriString, string defaultModel = "")
}

/// <summary>
/// Creates a new instace of the Ollama API client
/// Creates a new instance of the Ollama API client
/// </summary>
/// <param name="uri">The uri of the Ollama API endpoint</param>
/// <param name="defaultModel">The default model that should be used with Ollama</param>
Expand All @@ -62,7 +62,7 @@ public OllamaApiClient(Uri uri, string defaultModel = "")
}

/// <summary>
/// Creates a new instace of the Ollama API client
/// Creates a new instance of the Ollama API client
/// </summary>
/// <param name="config">The configuration for the Ollama API client</param>
public OllamaApiClient(Configuration config)
Expand All @@ -71,7 +71,7 @@ public OllamaApiClient(Configuration config)
}

/// <summary>
/// Creates a new instace of the Ollama API client
/// Creates a new instance of the Ollama API client
/// </summary>
/// <param name="client">The Http client to access the Ollama API with</param>
/// <param name="defaultModel">The default model that should be used with Ollama</param>
Expand Down

0 comments on commit 9d05a47

Please sign in to comment.