From dfa7eedde2f42a6b7ae3fd64441fa0cea57f3a13 Mon Sep 17 00:00:00 2001 From: Scott Euser Date: Sat, 15 Nov 2025 06:32:07 +0000 Subject: [PATCH 1/2] Add attribution --- src/Client.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 1407075..f150617 100644 --- a/src/Client.php +++ b/src/Client.php @@ -69,7 +69,8 @@ protected function defaultHeaders(): array return [ 'Api-Key' => $this->apiKey, 'Accept' => 'application/json;', - 'Content-Type' => 'application/json' + 'Content-Type' => 'application/json', + 'User-Agent' => 'probots-io--pinecone-php' ]; } From 61165c294e9b545c60b57d5a9960b1be86b08c97 Mon Sep 17 00:00:00 2001 From: Scott Euser Date: Sat, 15 Nov 2025 06:57:53 +0000 Subject: [PATCH 2/2] Fix format to match specs --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index f150617..e57fa44 100644 --- a/src/Client.php +++ b/src/Client.php @@ -70,7 +70,7 @@ protected function defaultHeaders(): array 'Api-Key' => $this->apiKey, 'Accept' => 'application/json;', 'Content-Type' => 'application/json', - 'User-Agent' => 'probots-io--pinecone-php' + 'User-Agent' => 'probots_io:pinecone_php' ]; }