You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pinecone/manage.py
+1-11Lines changed: 1 addition & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,6 @@ class IndexDescription(NamedTuple):
27
27
replicas: int
28
28
dimension: int
29
29
shards: int
30
-
pods: int
31
-
pod_type: str
32
30
index_config: None
33
31
status: None
34
32
@@ -64,8 +62,6 @@ def create_index(
64
62
metric: str="cosine",
65
63
replicas: int=1,
66
64
shards: int=1,
67
-
pods: int=1,
68
-
pod_type: str='p1',
69
65
index_config: dict=None
70
66
):
71
67
"""Creates a Pinecone index.
@@ -90,10 +86,6 @@ def create_index(
90
86
:param shards: the number of shards per index, defaults to 1.
91
87
Use 1 shard per 1GB of vectors
92
88
:type shards: int,optional
93
-
:param pods: Total number of pods to be used by the index. pods = shard*replicas
94
-
:type pods: int,optional
95
-
:param pod_type: the pod type to be used for the index. can be one of p1 or s1.
96
-
:type pod_type: str,optional
97
89
:param index_config: Advanced configuration options for the index
98
90
:type timeout: int, optional
99
91
:param timeout: Timeout for wait until index gets ready. If None, wait indefinitely; if >=0, time out after this many seconds; if -1, return immediately and do not wait. Default: None
0 commit comments