pinecone 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/pinecone.rb +2 -44
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b99d69de7f1fb2cf2afbe928b8e48fd0d10c641e33515e4cdde22180d7d9d8b
4
- data.tar.gz: f7688c5c74abbfedf560db22ae9f20980c2080e3b414639f99251676c8a3f323
3
+ metadata.gz: fbad389aa69ef30fb84c23a3f35097daf741984fd17248bff03ffb1fbc0b1e80
4
+ data.tar.gz: fb84e007e55cb7cb614de5d095878e6dfa310e4f17dc63b340d15dd058203ac0
5
5
  SHA512:
6
- metadata.gz: bf5375603748aa96e744ba92110a5a3b4548f3d58c9388a1e76c4847e16c1fe3e069755df5dc8d87a7bcd1e2e8369589b5b3e37c2389251324489bd2e58b1a03
7
- data.tar.gz: 88bc2b14f05e5e80380ebae0824667e4e9a0a4a35c482359e00bf58f9db2e623f00bacfd6b5123aaf738938dc48900379c2e615d6cc549904684c3d6e9bdec98
6
+ metadata.gz: f6560ed5b805e5e9de4e9149def0046318f6921cb162b4037993973596db4834432a6e6caba3be1ec3bc7d7df4919c309e2170a9f28950518af482934e1cd79e
7
+ data.tar.gz: aafb6ab8087f2d1c89278ec9d06880a270c7ea726773fd921e28170f839629eac9c3ad7eb43097c17323d91ce8996713b29d469d5a38f2bdb5f2f42647c34ef1
data/lib/pinecone.rb CHANGED
@@ -3,6 +3,7 @@ require "httparty"
3
3
  require "pinecone/client"
4
4
  require "pinecone/index"
5
5
  require "pinecone/vector"
6
+ require "pinecone/collection"
6
7
  require "pinecone/version"
7
8
 
8
9
  module Pinecone
@@ -47,47 +48,4 @@ module Pinecone
47
48
  def self.configure
48
49
  yield(configuration)
49
50
  end
50
- end
51
-
52
- # Vector Operations
53
-
54
- # # GET Describe Index Stats
55
- # https://index_name-project_id.svc.environment.pinecone.io/describe_index_stats
56
-
57
- # # POST Describe Index Stats
58
- # https://index_name-project_id.svc.environment.pinecone.io/describe_index_stats
59
-
60
- # # DELETE Delete Vectors
61
- # https://index_name-project_id.svc.environment.pinecone.io/vectors/delete
62
-
63
- # # POST Delete Vectors
64
- # # The Delete operation deletes vectors, by id, from a single namespace.
65
- # https://index_name-project_id.svc.environment.pinecone.io/vectors/delete
66
-
67
- # # GET Fetch
68
- # # The Fetch operation looks up and returns vectors, by ID, from a single namespace.
69
- # https://index_name-project_id.svc.environment.pinecone.io/vectors/fetch
70
-
71
- # # POST Update
72
- # # The Update operation updates vector in a namespace.
73
- # # If a value is included, it will overwrite the previous value.
74
- # https://index_name-project_id.svc.environment.pinecone.io/vectors/update
75
-
76
- # # GET list_collections
77
- # https://controller.unknown.pinecone.io/collections
78
-
79
- # POST create_collection
80
-
81
- # GET describe_collection
82
-
83
- # DELETE delete_collection
84
-
85
- # GET list_indexes
86
-
87
- # POST create_index
88
-
89
- # GET describe_index
90
-
91
- # DELETEdelete_index
92
-
93
- # Patch configure_index
51
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pinecone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Carleton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-21 00:00:00.000000000 Z
11
+ date: 2023-04-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Ruby client library which includes index and vector operations to upload
14
14
  embeddings into Pinecone and do similarity searches on them.