The python client for S2Search API.
Project description
Marqo
Neural search for humans
A deep-learning powered, open-source search engine which seamlessly integrates with your applications, websites, and workflow.
Applications built with Marqo enjoy the following features out-of-the-box:
⚡ Performance
- Intuitive design pattern for high-performance microservices.
- Run Marqo at scale - horizontal scalability by design.
- Duplex streaming between client and server.
- Async and non-blocking data processing over dynamic flows.
🍳 Ease of use
- Setup in three lines.
- Plug and play functionality with machine learning models and parsers.
☁️ Cloud-native
- Use Marqo in high availability with Opensearch backend.
- Serverless deployment with Marqo cloud (coming soon!).
Get started
- Marqo requires docker. To install docker go to https://docs.docker.com/get-docker/
- Use docker to run Opensearch.
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" opensearchproject/opensearch:2.0.0
- Start indexing and searching! Try the example below.
Simple example
Let's look at a simple example below:
import marqo
mq = marqo.Client(url='https://localhost:9200', main_user="admin", main_password="admin")
mq.index("my-first-index").add_documents([
{
"Title": "The Travels of Marco Polo",
"Description": "A 13th-century travelogue describing Polo's travels"
},
{
"Title": "Extravehicular Mobility Unit (EMU)",
"Description": "The EMU is a spacesuit that provides environmental protection, "
"mobility, life support, and communications for astronauts",
"_id": "article_591"
}]
)
results = mq.index("my-first-index").search(
q="What is the best outfit to wear on the moon?"
)
mq
is the client that wraps themarqo
APIadd_documents()
takes a list of documents, represented as python dicts, for indexingadd_documents()
creates an index with default settings, if one does not already exist- You can optionally set a document's ID with the special
_id
field. Otherwise, marqo will generate one.
Pretty printing results
outputs a dict like this:
{
'hits': [
{
'Title': 'Extravehicular Mobility Unit (EMU)',
'Description': 'The EMU is a spacesuit that provides environmental protection, mobility, life support, and'
'communications for astronauts',
'_highlights': {
'Description': 'The EMU is a spacesuit that provides environmental protection, '
'mobility, life support, and communications for astronauts'
},
'_id': 'article_591',
'_score': 1.2387788
},
{
'Title': 'The Travels of Marco Polo',
'Description': "A 13th-century travelogue describing Polo's travels",
'_highlights': {'Title': 'The Travels of Marco Polo'},
'_id': 'e00d1a8d-894c-41a1-8e3b-d8b2a8fce12a',
'_score': 1.2047464
}
],
'limit': 10,
'processingTimeMs': 49,
'query': 'What is the best outfit to wear on the moon?'
}
- Each hit corresponds to a document that matched the search query
- They are ordered from most to least matching
limit
is the maximum number of hits to be returned. This can be set as a parameter during search- Each hit has a
_highlights
field. This was the part of the document that matched the query the best
Warning
Note that you should not run other applications on the Opensearch cluster as Marqo automatically changes and adapts the settings on the cluster.
Contributors
Marqo is a community project with the goal of making neural search accessible to the wider developer community. We are glad that you are interested in helping out! Please read this to get started
Dev set up
- Create a virtual env
- Install requirements from the requirements file:
pip install -r requirements.txt
- Activate the virtual environment
- Run tests by running the tox file. CD into this dir and then run "tox"
- If you update dependencies, make sure to delete the .tox dir and rerun
Merge instructions:
- Run the full test suite (by using the command
tox
in this dir) - Merge to main
- If you think that the change is significant, run the large data test. The large data test will build Marqo from the main branch and fill indices with data. Go through and test queries against this data. https://github.com/S2Search/NeuralSearchLargeDataTest
Support
- Join our Slack community and chat with other community members about ideas.
- Join our Engineering all hands/community meeting meet-up to discuss your use case and learn Jina's new features.
- When? [TODO]
- Where? Zoom (see our public events calendar [INSERT OUR ZOOM]/.ical) and live stream on YouTube
- Subscribe to the latest video tutorials on our YouTube channel
Join Us
- marqo is backed by S2Search and licensed under MIT.
- We are actively hiring [INSERT HIRING LINK] AI engineers, solution engineers to build the next neural search ecosystem in open source.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file marqo-0.1.1.tar.gz
.
File metadata
- Download URL: marqo-0.1.1.tar.gz
- Upload date:
- Size: 46.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.27.1 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71a7a92707bf0229defee1d133c1beda96c6f5bc09296d4c80481207f9efb8d |
|
MD5 | 773d8de539b96dfd2672d1cbe69fbef3 |
|
BLAKE2b-256 | 9196e1e9c6efacf9cd1e5c2f032b3726395e73407b03d484007d8882fc4daee4 |