diff --git a/docs/MemoryApi.md b/docs/MemoryApi.md index 0e4067e..b637556 100644 --- a/docs/MemoryApi.md +++ b/docs/MemoryApi.md @@ -7,7 +7,7 @@ Method | HTTP request | Description [**add_memory**](MemoryApi.md#add_memory) | **POST** /api/v2/memory/add | Add messages [OSS + Cloud] [**delete_memory**](MemoryApi.md#delete_memory) | **POST** /api/v2/memory/delete | Delete memories [Cloud-only] [**edit_profile**](MemoryApi.md#edit_profile) | **POST** /api/v2/memory/edit | Edit profile items [Cloud-only] -[**flush_memory**](MemoryApi.md#flush_memory) | **POST** /api/v2/memory/flush | Force boundary detection + extraction [OSS + Cloud] +[**flush_memory**](MemoryApi.md#flush_memory) | **POST** /api/v2/memory/flush | Force memory extraction [OSS + Cloud] [**get_memory**](MemoryApi.md#get_memory) | **POST** /api/v2/memory/get | Get memories (paginated) [OSS + Cloud] [**search_memory**](MemoryApi.md#search_memory) | **POST** /api/v2/memory/search | Search memories [OSS + Cloud] @@ -262,7 +262,7 @@ Name | Type | Description | Notes # **flush_memory** > SuccessEnvelopeFlushData flush_memory(flush_input) -Force boundary detection + extraction [OSS + Cloud] +Force memory extraction [OSS + Cloud] ### Example @@ -298,7 +298,7 @@ with everos_cloud.ApiClient(configuration) as api_client: flush_input = everos_cloud.FlushInput() # FlushInput | try: - # Force boundary detection + extraction [OSS + Cloud] + # Force memory extraction [OSS + Cloud] api_response = api_instance.flush_memory(flush_input) print("The response of MemoryApi->flush_memory:\n") pprint(api_response) diff --git a/docs/StorageApi.md b/docs/StorageApi.md index 491a6db..e74b2b7 100644 --- a/docs/StorageApi.md +++ b/docs/StorageApi.md @@ -4,13 +4,13 @@ All URIs are relative to *https://api.evermind.ai* Method | HTTP request | Description ------------- | ------------- | ------------- -[**sign_objects**](StorageApi.md#sign_objects) | **POST** /api/v2/object/sign | Upload multimodal data (generate presigned upload info) +[**sign_objects**](StorageApi.md#sign_objects) | **POST** /api/v2/object/sign | Get multimodal upload URLs # **sign_objects** > SignEnvelope sign_objects(sign_request) -Upload multimodal data (generate presigned upload info) +Get multimodal upload URLs ### Example @@ -46,7 +46,7 @@ with everos_cloud.ApiClient(configuration) as api_client: sign_request = everos_cloud.SignRequest() # SignRequest | try: - # Upload multimodal data (generate presigned upload info) + # Get multimodal upload URLs api_response = api_instance.sign_objects(sign_request) print("The response of StorageApi->sign_objects:\n") pprint(api_response) diff --git a/everos_cloud/__init__.py b/everos_cloud/__init__.py index fdb69aa..b33a6d7 100644 --- a/everos_cloud/__init__.py +++ b/everos_cloud/__init__.py @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "1.0.0-rc3" +__version__ = "1.0.0" # import apis into sdk package from everos_cloud.api.memory_api import MemoryApi diff --git a/everos_cloud/api/memory_api.py b/everos_cloud/api/memory_api.py index 66c8022..73b6f8f 100644 --- a/everos_cloud/api/memory_api.py +++ b/everos_cloud/api/memory_api.py @@ -926,7 +926,7 @@ def flush_memory( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> SuccessEnvelopeFlushData: - """Force boundary detection + extraction [OSS + Cloud] + """Force memory extraction [OSS + Cloud] :param flush_input: (required) @@ -997,7 +997,7 @@ def flush_memory_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[SuccessEnvelopeFlushData]: - """Force boundary detection + extraction [OSS + Cloud] + """Force memory extraction [OSS + Cloud] :param flush_input: (required) @@ -1068,7 +1068,7 @@ def flush_memory_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Force boundary detection + extraction [OSS + Cloud] + """Force memory extraction [OSS + Cloud] :param flush_input: (required) diff --git a/everos_cloud/api/storage_api.py b/everos_cloud/api/storage_api.py index 2dc6763..fed2935 100644 --- a/everos_cloud/api/storage_api.py +++ b/everos_cloud/api/storage_api.py @@ -55,7 +55,7 @@ def sign_objects( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> SignEnvelope: - """Upload multimodal data (generate presigned upload info) + """Get multimodal upload URLs :param sign_request: (required) @@ -125,7 +125,7 @@ def sign_objects_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> ApiResponse[SignEnvelope]: - """Upload multimodal data (generate presigned upload info) + """Get multimodal upload URLs :param sign_request: (required) @@ -195,7 +195,7 @@ def sign_objects_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0, ) -> RESTResponseType: - """Upload multimodal data (generate presigned upload info) + """Get multimodal upload URLs :param sign_request: (required) diff --git a/everos_cloud/api_client.py b/everos_cloud/api_client.py index d7a3e15..7ccd497 100644 --- a/everos_cloud/api_client.py +++ b/everos_cloud/api_client.py @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/1.0.0-rc3/python' + self.user_agent = 'OpenAPI-Generator/1.0.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/everos_cloud/configuration.py b/everos_cloud/configuration.py index 90aa82b..ad3512a 100644 --- a/everos_cloud/configuration.py +++ b/everos_cloud/configuration.py @@ -504,7 +504,7 @@ def to_debug_report(self) -> str: "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 2.0.0\n"\ - "SDK Package Version: 1.0.0-rc3".\ + "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/openapi.json b/openapi.json index 1dd2776..c918ea8 100644 --- a/openapi.json +++ b/openapi.json @@ -273,7 +273,7 @@ "tags": [ "Memory" ], - "summary": "Force boundary detection + extraction [OSS + Cloud]", + "summary": "Force memory extraction [OSS + Cloud]", "operationId": "flushMemory", "requestBody": { "content": { @@ -516,7 +516,7 @@ "tags": [ "Storage" ], - "summary": "Upload multimodal data (generate presigned upload info)", + "summary": "Get multimodal upload URLs", "operationId": "signObjects", "requestBody": { "required": true, diff --git a/pyproject.toml b/pyproject.toml index 4d475c7..b90fe2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "everos_cloud" -version = "1.0.0-rc3" +version = "1.0.0" description = "EverOS Cloud Memory API" authors = ["EverMind AI "] license = "Apache-2.0" diff --git a/setup.py b/setup.py index 1dc9afe..97cd756 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "everos-cloud" -VERSION = "1.0.0-rc3" +VERSION = "1.0.0" PYTHON_REQUIRES = ">= 3.8" # PyPI renders this as the project page body. Use the repo README (which ships in diff --git a/test/test_memory_api.py b/test/test_memory_api.py index bc4d6cc..fbc5373 100644 --- a/test/test_memory_api.py +++ b/test/test_memory_api.py @@ -51,7 +51,7 @@ def test_edit_profile(self) -> None: def test_flush_memory(self) -> None: """Test case for flush_memory - Force boundary detection + extraction [OSS + Cloud] + Force memory extraction [OSS + Cloud] """ pass diff --git a/test/test_storage_api.py b/test/test_storage_api.py index a6b49d7..585fe88 100644 --- a/test/test_storage_api.py +++ b/test/test_storage_api.py @@ -30,7 +30,7 @@ def tearDown(self) -> None: def test_sign_objects(self) -> None: """Test case for sign_objects - Upload multimodal data (generate presigned upload info) + Get multimodal upload URLs """ pass