Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rag2111 committed May 8, 2024
1 parent 7493006 commit 347a199
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenAI.Plugin.FSI/CompareProductsPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public CompareProductsPlugin(ILoggerFactory loggerFactory, Kernel kernel)
_kernel = kernel;
}

[Function("Compare Finantial Products Plugin")]
[OpenApiOperation(operationId: "CompareProductsPlugin", tags: new[] { "CompareProductsPlugin" }, Description = "Compares a given financial product with those avialable in the market")]
[Function("Compare Financial Products Plugin")]
[OpenApiOperation(operationId: "CompareProductsPlugin", tags: new[] { "CompareProductsPlugin" }, Description = "Compares a given financial product with those avialable in the market")]
[OpenApiRequestBody("application/json", typeof(ExecuteFunctionRequest), Description = "Variables to use when executing the specified function.", Required = true)]
[OpenApiResponseWithBody(statusCode: HttpStatusCode.OK, contentType: "application/json", bodyType: typeof(ExecuteFunctionResponse), Description = "Returns the response from the AI.")]
[OpenApiResponseWithBody(statusCode: HttpStatusCode.BadRequest, contentType: "application/json", bodyType: typeof(ErrorResponse), Description = "Returned if the request body is invalid.")]
Expand Down

0 comments on commit 347a199

Please sign in to comment.