11 lines
213 B
Python
11 lines
213 B
Python
import marqo
|
|
|
|
mq = marqo.Client(url='http://localhost:8882')
|
|
|
|
|
|
results = mq.index("my-first-index").search(
|
|
q="What is the best outfit to wear on the moon?", searchable_attributes=["Title", "Description"]
|
|
)
|
|
|
|
|