Skip to content

Commit f66b42b

Browse files
authored
[ce] update codegen to include control plane (#523)
## Problem Describe the purpose of this change. What problem is being solved and why? ## Solution Describe the approach you took. Link to any relevant bugs, issues, docs, or other resources. ## Type of Change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update - [ ] Infrastructure change (CI configs, etc) - [ ] Non-code change (docs, etc) - [ ] None of the above: (explain here) ## Test Plan Describe specific steps for validating this change.
1 parent def9413 commit f66b42b

33 files changed

+3629
-119
lines changed

pinecone/core/openapi/ckb_knowledge_data/models/__init__.py

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# flake8: noqa
2+
3+
"""
4+
Pinecone Control Plane API for Repositories
5+
6+
Pinecone Repositories make it easy to search and retrieve billions of documents using lexical and semantic search. # noqa: E501
7+
8+
This file is @generated using OpenAPI.
9+
10+
The version of the OpenAPI document: unstable
11+
Contact: support@pinecone.io
12+
"""
13+
14+
__version__ = "1.0.0"
15+
16+
# import ApiClient
17+
from pinecone.openapi_support.api_client import ApiClient
18+
19+
# import Configuration
20+
from pinecone.config.openapi_configuration import Configuration
21+
22+
# import exceptions
23+
from pinecone.openapi_support.exceptions import PineconeException
24+
from pinecone.openapi_support.exceptions import PineconeApiAttributeError
25+
from pinecone.openapi_support.exceptions import PineconeApiTypeError
26+
from pinecone.openapi_support.exceptions import PineconeApiValueError
27+
from pinecone.openapi_support.exceptions import PineconeApiKeyError
28+
from pinecone.openapi_support.exceptions import PineconeApiException
29+
30+
API_VERSION = "unstable"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# do not import all apis into this module because that uses a lot of memory and stack frames
22
# if you need the ability to import all apis from one package, import them with
3-
# from pinecone.core.openapi.ckb_knowledge_data.apis import DocumentOperationsApi
3+
# from pinecone.core.openapi.repository_control.apis import ManageRepositoriesApi

0 commit comments

Comments
 (0)