Skip to content

Commit 2fd8b09

Browse files
authored
Merge pull request #31 from gotmike/typos-only
2 parents 0cfbd73 + 785b6a4 commit 2fd8b09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

OpenAI_API/OpenAIAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public OpenAIAPI(APIAuthentication apiKeys = null)
4444
/// <summary>
4545
/// The API lets you do semantic search over documents. This means that you can provide a query, such as a natural language question or a statement, and find documents that answer the question or are semantically related to the statement. The “documents” can be words, sentences, paragraphs or even longer documents. For example, if you provide documents "White House", "hospital", "school" and query "the president", you’ll get a different similarity score for each document. The higher the similarity score, the more semantically similar the document is to the query (in this example, “White House” will be most similar to “the president”).
4646
/// </summary>
47-
[Obsolete("OpenAI no long supports the Search endpoint")]
47+
[Obsolete("OpenAI no longer supports the Search endpoint")]
4848
public SearchEndpoint Search { get; }
4949

5050

OpenAI_API/Search/SearchEndpoint.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace OpenAI_API
1414
/// <summary>
1515
/// The API lets you do semantic search over documents. This means that you can provide a query, such as a natural language question or a statement, and find documents that answer the question or are semantically related to the statement. The “documents” can be words, sentences, paragraphs or even longer documents. For example, if you provide documents "White House", "hospital", "school" and query "the president", you’ll get a different similarity score for each document. The higher the similarity score, the more semantically similar the document is to the query (in this example, “White House” will be most similar to “the president”).
1616
/// </summary>
17-
[Obsolete("OpenAI no long supports the Search endpoint")]
17+
[Obsolete("OpenAI no longer supports the Search endpoint")]
1818
public class SearchEndpoint
1919
{
2020
OpenAIAPI Api;

0 commit comments

Comments
 (0)