diff --git a/docs/examples/custom_destination_lancedb/custom_destination_lancedb.py b/docs/examples/custom_destination_lancedb/custom_destination_lancedb.py index c0ead4f751..459fcedfbd 100644 --- a/docs/examples/custom_destination_lancedb/custom_destination_lancedb.py +++ b/docs/examples/custom_destination_lancedb/custom_destination_lancedb.py @@ -145,22 +145,11 @@ def lancedb_destination(items: TDataItems, table: TTableSchema) -> None: row_counts = pipeline.last_trace.last_normalize_info - print(row_counts) - print("------") - - print(load_info) - - print("------") - print("------") - # Showcase vector search capabilities over our dataset with lancedb. # Perform brute force search while we have small data. query = "French AI scientist with Lex, talking about AGI and Meta and Llama" table_to_query = "lex_fridman" - print(f"Query: {query}") - print(f"Querying table: {table_to_query}") - tbl = db.open_table(table_to_query) results = tbl.search(query=query).to_list()