|
| 1 | +# EXAMPLE: query_combined |
| 2 | +# HIDE_START |
| 3 | +import json |
| 4 | +import numpy as np |
| 5 | +import redis |
| 6 | +import warnings |
| 7 | +from redis.commands.json.path import Path |
| 8 | +from redis.commands.search.field import NumericField, TagField, TextField, VectorField |
| 9 | +from redis.commands.search.indexDefinition import IndexDefinition, IndexType |
| 10 | +from redis.commands.search.query import Query |
| 11 | +from sentence_transformers import SentenceTransformer |
| 12 | + |
| 13 | + |
| 14 | +def embed_text(model, text): |
| 15 | + return np.array(model.encode(text)).astype(np.float32).tobytes() |
| 16 | + |
| 17 | +warnings.filterwarnings("ignore", category=FutureWarning, message=r".*clean_up_tokenization_spaces.*") |
| 18 | +model = SentenceTransformer('sentence-transformers/all-MiniLM-L6-v2') |
| 19 | +query = "Bike for small kids" |
| 20 | +query_vector = embed_text(model, query) |
| 21 | + |
| 22 | +r = redis.Redis(decode_responses=True) |
| 23 | + |
| 24 | +# create index |
| 25 | +schema = ( |
| 26 | + TextField("$.description", no_stem=True, as_name="model"), |
| 27 | + TagField("$.condition", as_name="condition"), |
| 28 | + NumericField("$.price", as_name="price"), |
| 29 | + VectorField( |
| 30 | + "$.description_embeddings", |
| 31 | + "FLAT", |
| 32 | + { |
| 33 | + "TYPE": "FLOAT32", |
| 34 | + "DIM": 384, |
| 35 | + "DISTANCE_METRIC": "COSINE", |
| 36 | + }, |
| 37 | + as_name="vector", |
| 38 | + ), |
| 39 | +) |
| 40 | + |
| 41 | +index = r.ft("idx:bicycle") |
| 42 | +index.create_index( |
| 43 | + schema, |
| 44 | + definition=IndexDefinition(prefix=["bicycle:"], index_type=IndexType.JSON), |
| 45 | +) |
| 46 | + |
| 47 | +# load data |
| 48 | +with open("data/query_vector.json") as f: |
| 49 | + bicycles = json.load(f) |
| 50 | + |
| 51 | +pipeline = r.pipeline(transaction=False) |
| 52 | +for bid, bicycle in enumerate(bicycles): |
| 53 | + pipeline.json().set(f'bicycle:{bid}', Path.root_path(), bicycle) |
| 54 | +pipeline.execute() |
| 55 | +# HIDE_END |
| 56 | + |
| 57 | +# STEP_START combined1 |
| 58 | +q = Query("@price:[500 1000] @condition:{new}") |
| 59 | +res = index.search(q) |
| 60 | +print(res.total) # >>> 1 |
| 61 | +# REMOVE_START |
| 62 | +assert res.total == 1 |
| 63 | +# REMOVE_END |
| 64 | +# STEP_END |
| 65 | + |
| 66 | +# STEP_START combined2 |
| 67 | +q = Query("kids @price:[500 1000] @condition:{used}") |
| 68 | +res = index.search(q) |
| 69 | +print(res.total) # >>> 1 |
| 70 | +# REMOVE_START |
| 71 | +assert res.total == 1 |
| 72 | +# REMOVE_END |
| 73 | +# STEP_END |
| 74 | + |
| 75 | +# STEP_START combined3 |
| 76 | +q = Query("(kids | small) @condition:{used}") |
| 77 | +res = index.search(q) |
| 78 | +print(res.total) # >>> 2 |
| 79 | +# REMOVE_START |
| 80 | +assert res.total == 2 |
| 81 | +# REMOVE_END |
| 82 | +# STEP_END |
| 83 | + |
| 84 | +# STEP_START combined4 |
| 85 | +q = Query("@description:(kids | small) @condition:{used}") |
| 86 | +res = index.search(q) |
| 87 | +print(res.total) # >>> 0 |
| 88 | +# REMOVE_START |
| 89 | +assert res.total == 0 |
| 90 | +# REMOVE_END |
| 91 | +# STEP_END |
| 92 | + |
| 93 | +# STEP_START combined5 |
| 94 | +q = Query("@description:(kids | small) @condition:{new | used}") |
| 95 | +res = index.search(q) |
| 96 | +print(res.total) # >>> 0 |
| 97 | +# REMOVE_START |
| 98 | +assert res.total == 0 |
| 99 | +# REMOVE_END |
| 100 | +# STEP_END |
| 101 | + |
| 102 | +# STEP_START combined6 |
| 103 | +q = Query("@price:[500 1000] -@condition:{new}") |
| 104 | +res = index.search(q) |
| 105 | +print(res.total) # >>> 2 |
| 106 | +# REMOVE_START |
| 107 | +assert res.total == 2 |
| 108 | +# REMOVE_END |
| 109 | +# STEP_END |
| 110 | + |
| 111 | +# STEP_START combined7 |
| 112 | +q = Query("(@price:[500 1000] -@condition:{new})=>[KNN 3 @vector $query_vector]").dialect(2) |
| 113 | +# put query string here |
| 114 | +res = index.search(q,{ 'query_vector': query_vector }) |
| 115 | +print(res.total) # >>> 2 |
| 116 | +# REMOVE_START |
| 117 | +assert res.total == 2 |
| 118 | +# REMOVE_END |
| 119 | +# STEP_END |
| 120 | + |
| 121 | +# REMOVE_START |
| 122 | +# destroy index and data |
| 123 | +r.ft("idx:bicycle").dropindex(delete_documents=True) |
| 124 | +# REMOVE_END |
0 commit comments