Skip to content

orca_sdk#

OrcaSDK is a Python library for building and using retrieval augmented models in the OrcaCloud.

UNSET module-attribute #

UNSET = _UnsetSentinel()

Default value to indicate that no update should be applied to a field and it should not be set to None

CreateMode module-attribute #

CreateMode = Literal['error', 'open']

Mode for creating a resource.

Options:

  • "error": raise an error if a resource with the same name already exists
  • "open": open the resource with the same name if it exists

DropMode module-attribute #

DropMode = Literal['error', 'ignore']

Mode for deleting a resource.

Options:

  • "error": raise an error if the resource does not exist
  • "ignore": do nothing if the resource does not exist