Skip to main content

Core SuperDuperDB usage

In this section we walk through how to perform the key operations with SuperDuperDB. There are three key patterns C-A-E:

Connect

from superduperdb import superduper
db = superduper('<data-connection>')

Apply

db.apply(<ai_component>)

Execute

to_execute = <build_your_database_query_or_model_prediction>
db.execute(to_execute)