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
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ class IndexDescription(NamedTuple):
30
30
pod_type: str
31
31
index_config: None
32
32
status: None
33
-
metadata_index_config: None
33
+
metadata_config: None
34
34
35
35
36
36
def_get_api_instance():
@@ -66,7 +66,7 @@ def create_index(
66
66
pods: int=1,
67
67
pod_type: str='p1',
68
68
index_config: dict=None,
69
-
metadata_index_config: dict=None
69
+
metadata_config: dict=None
70
70
):
71
71
"""Creates a Pinecone index.
72
72
@@ -95,8 +95,8 @@ def create_index(
95
95
:param pod_type: the pod type to be used for the index. can be one of p1 or s1.
96
96
:type pod_type: str,optional
97
97
:param index_config: Advanced configuration options for the index
98
-
:param metadata_index_config: Configuration related to the metadata index
99
-
:type metadata_index_config: dict, optional
98
+
:param metadata_config: Configuration related to the metadata index
99
+
:type metadata_config: dict, optional
100
100
:type timeout: int, optional
101
101
: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