This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Marketplace Facets</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
display: flex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"code": 1, "title": "The Shawshank Redemption", "genre": ["Drama"], "director": "Frank Darabont", "actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"], "description": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", "year": 1994, "runtime": "142 min", "rating": 9.3, "votes": 2343110, "revenue": "28,341,469", "metascore": 80, "certificate": "A", "avatar": "https://m.media-amazon.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg"} | |
, | |
{"code": 2, "title": "The Godfather", "genre": ["Crime", "Drama"], "director": "Francis Ford Coppola", "actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"], "description": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.", "year": 1972, "runtime": "175 min", "rating": 9.2, "votes": 1620367, "revenue": "134,966,411", "metascore": 100, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import openai | |
from elasticsearch import Elasticsearch | |
from elasticsearch.helpers import bulk | |
es = Elasticsearch( | |
[{'host': 'localhost', 'port': 9200, 'scheme': 'http'}]) | |
openai.api_key = 'key' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"code": 1, "title": "The Shawshank Redemption", "genre": ["Drama"], "director": "Frank Darabont", "actors": ["Tim Robbins", "Morgan Freeman", "Bob Gunton", "William Sadler"], "description": "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", "year": 1994, "runtime": "142 min", "rating": 9.3, "votes": 2343110, "revenue": "28,341,469", "metascore": 80, "certificate": "A", "avatar": "https://m.media-amazon.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg"} | |
, | |
{"code": 2, "title": "The Godfather", "genre": ["Crime", "Drama"], "director": "Francis Ford Coppola", "actors": ["Marlon Brando", "Al Pacino", "James Caan", "Diane Keaton"], "description": "An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.", "year": 1972, "runtime": "175 min", "rating": 9.2, "votes": 1620367, "revenue": "134,966,411", "metascore": 100, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"index":{}} | |
{"name":"Mercedes-benz C 180","category":"Cars and Motorcycle/Cars and Vans/Mercedes-Benz/Class C"} | |
{"index":{}} | |
{"name":"Honda Fit 1.5 LX","category":"Cars and Motorcycle/Cars and Pickup truck/Honda/Fit"} | |
{"index":{}} | |
{"name":"Honda City Sedan DX","category":"Cars and Motorcycle/Cars and Pickup truck/Honda/City"} | |
{"index":{}} | |
{"name":"Mercedes-Benz Sprinter Van","category":"Cars and Motorcycle/Cars and Vans/Mercedes-Benz/Sprinter Van"} | |
{"index":{}} | |
{"name":"Sprinter Van 2.2 Cdi","category":"Cars and Motorcycle/Cars and Vans/Mercedes-Benz/Sprinter Van"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"coordinates": [ | |
[ | |
[ | |
-63.170695, | |
-5.7905056 | |
], | |
[ | |
-63.1679484, | |
-5.7946045 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"coordinates": [ | |
[ | |
[ | |
-62.9015375, | |
-4.8826388 | |
], | |
[ | |
-62.9248835, | |
-4.8894803 | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST test/_doc | |
{ | |
"category_suggest": { | |
"input": [ | |
"Automotive", | |
"Auto" | |
] | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package javahighclient.searchafter; | |
import java.io.IOException; | |
import java.util.Arrays; | |
import java.util.Objects; | |
import java.util.stream.Collectors; | |
import javahighclient.RestClientUtils; | |
import org.elasticsearch.action.search.SearchRequest; | |
import org.elasticsearch.action.search.SearchResponse; | |
import org.elasticsearch.client.RequestOptions; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"settings": { | |
"analysis": { | |
"analyzer": { | |
"en_analyzer": { | |
"tokenizer": "standard", | |
"filter": [ | |
"lowercase","stop" ] | |
}, | |
"shingle_analyzer": { |
NewerOlder