Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/MemoryApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions docs/StorageApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion everos_cloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions everos_cloud/api/memory_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions everos_cloud/api/storage_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion everos_cloud/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion everos_cloud/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down
4 changes: 2 additions & 2 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@
"tags": [
"Memory"
],
"summary": "Force boundary detection + extraction [OSS + Cloud]",
"summary": "Force memory extraction [OSS + Cloud]",
"operationId": "flushMemory",
"requestBody": {
"content": {
Expand Down Expand Up @@ -516,7 +516,7 @@
"tags": [
"Storage"
],
"summary": "Upload multimodal data (generate presigned upload info)",
"summary": "Get multimodal upload URLs",
"operationId": "signObjects",
"requestBody": {
"required": true,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <service@evermind.ai>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/test_memory_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion test/test_storage_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down