import videodb
conn = videodb.connect(api_key="your_api_key")
coll = conn.get_collection()
video = coll.get_videos()[0]
# The spoken word index is automatically created when indexing
# Access it through search operations
results = video.search("example query")
print(f"Index is active and searchable")
print(f"Found {len(results.docs)} results for the query")