From 1a04a39138df0c15ab1ea9b7870ab20a197d8f8f Mon Sep 17 00:00:00 2001 From: Jianguo Ma Date: Thu, 9 Jan 2025 17:52:09 +0800 Subject: [PATCH 1/2] Update service.go Correct typo: type=> name --- agent/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/service.go b/agent/service.go index 5d4630d..a25de50 100644 --- a/agent/service.go +++ b/agent/service.go @@ -28,7 +28,7 @@ func init() { }) listProperties.Set("repository_name", &jsonschema.Schema{ Type: "string", - Description: "The type of the repository", + Description: "The name of the repository", }) createProperties := orderedmap.New[string, *jsonschema.Schema]() From 5d50c3c4305e1312c74a20f3b44cb45b6755bdae Mon Sep 17 00:00:00 2001 From: Jianguo Ma Date: Thu, 9 Jan 2025 17:56:44 +0800 Subject: [PATCH 2/2] correct another typo in comment Signed-off-by: Jianguo Ma --- agent/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/service.go b/agent/service.go index a25de50..3d0425a 100644 --- a/agent/service.go +++ b/agent/service.go @@ -77,7 +77,7 @@ func init() { } } -// Service provides and endpoint for this agent to perform chat completions +// Service provides endpoint for this agent to perform chat completions type Service struct { pubKey *ecdsa.PublicKey }