Skip to content

Commit

Permalink
Remove print statements from custom_destination_lancedb.py
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Coetzee <[email protected]>
  • Loading branch information
Pipboyguy committed May 13, 2024
1 parent ed88147 commit 03b686f
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 03b686f

Please sign in to comment.