All Products
Search
Document Center

OpenSearch:Implement RAG for OpenSearch Retrieval Engine Edition

Last Updated:Apr 21, 2025

This topic describes how to provide retrieval-augmented generation (RAG) capabilities for an OpenSearch Retrieval Engine Edition instance by using an OpenSearch LLM-Based Conversational Search Edition instance.

Important

This topic is suitable for OpenSearch Retrieval Engine Edition instances of the classic version (instances created before June 2024). For information about how to provide RAG capabilities for an OpenSearch Retrieval Engine Edition instance created after June 2024, see Implement RAG for OpenSearch Retrieval Engine Edition of the new version.

If you already have an OpenSearch Retrieval Engine Edition instance, you need to only purchase an OpenSearch LLM-Based Conversational Search Edition instance. The two instances provide the following functionalities:

OpenSearch Retrieval Engine Edition instance:

  • Stores original document data and vector data.

  • Retrieves original document data and vector data.

OpenSearch LLM-Based Conversational Search Edition instance:

  • Optional. Performs text segmentation and word embedding on original documents.

  • Optional. Performs word embedding on original queries.

  • Performs inference and summarization on the retrieved results.

The following figure shows the implementation procedure.

image

1. Create and configure instances

1.1. Create and configure an OpenSearch Retrieval Engine Edition instance

1.1.1. Purchase an OpenSearch Retrieval Engine Edition instance

If you already have an OpenSearch Retrieval Engine Edition instance, you do not need to purchase a new one.

For more information about how to purchase an OpenSearch Retrieval Engine Edition instance, see Purchase an OpenSearch Retrieval Engine Edition instance.

1.1.2. Configure the OpenSearch Retrieval Engine Edition instance

If you do not want to modify the query and retrieval logic of an existing OpenSearch Retrieval Engine Edition instance, you need to only call the knowledge-llm operation of OpenSearch LLM-Based Conversational Search Edition to perform inference and summarization on the retrieved results. For more information, see the "Perform inference and summarization by calling the knowledge-llm operation" section of this topic.

If you want to perform text segmentation and word embedding on the data of an existing OpenSearch Retrieval Engine Edition instance, you need to modify the configurations of the instance.

On the Instances page, find the instance that you want to manage and click Configure in the Actions column, as shown in the following figure.

image

1.1.2.1. Configure a data source

Click Add Data Source. In the panel that appears, select API Data Source as Data Source Type.

image

Parameter:

  • Data Source Name: the name of the data source. You can enter a custom name.

Click Verify. In the message that appears, click OK. The data source is displayed in the data source list. Click Next to configure the index schema.

1.1.2.2. Configure the index schema

To store the chunk data and vector data, make sure that your table schema contains the following fields:

  • The primary key field of a document, such as the doc_id field in the following figure.

  • The field that stores the chunks obtained after text segmentation, such as the split_content field in the following figure.

  • The field that stores the vectors of the chunk content obtained after word embedding, such as the split_content_embedding field in the following figure. You must define this field as a vector field and separate multiple values of the vector field with commas (,).

In addition to the preceding required fields, you can add custom fields and use these fields for document search, sorting, and filtering based on your business requirements. The following figure shows an example.

image.png

Take note of the following items when you configure the index settings:

  • Configure a PRIMARYKEY64 index for the doc_id field.

  • Configure a PACK or TEXT index for the content and split_content fields.

  • Configure a vector index for the split_content_embedding field. Set the number of vector dimensions to 1536 and use the default values for other parameters.

The following figure shows an example.

image

After the configurations are complete, click Publish. In the message that appears, click OK. The table schema and indexes on the specified fields are generated.

Click Next to rebuild the indexes.

1.1.2.3. Rebuild the indexes

Select the API data source that you added. Click Enter Current Time.

Click Next. The configurations are complete.

You can click Change History in the left-side navigation pane to view the reindexing progress. After the progress is complete, the table is ready, and you can perform subsequent operations.

1.2. Create and configure an OpenSearch LLM-Based Conversational Search Edition instance

1.2.1. Purchase and configure an OpenSearch LLM-Based Conversational Search Edition instance

For more information, see Implement enterprise-specific conversational search.

After you purchase an OpenSearch LLM-Based Conversational Search Edition instance, you can use the instance without the need to configure the instance.

2. Push data to the OpenSearch Retrieval Engine Edition instance

2.1. Perform text segmentation and word embedding on original documents

If the original documents are large in size, you cannot directly call the knowledge-llm operation of OpenSearch LLM-Based Conversational Search Edition to perform inference and summarization on the retrieved original documents.

In this case, you need to send a request to an endpoint of the OpenSearch LLM-Based Conversational Search Edition instance to perform text segmentation and word embedding on the original documents.

For more information, see the "Sample code of the SDK for Java" section of this topic or the following topic:

Text segmentation and vectorization

2.2. Push the results obtained after text segmentation and word embedding to the OpenSearch Retrieval Engine Edition instance

In the returned results of Step 2.1:

  • The chunk_id parameter indicates the ID of the chunk after text segmentation. Concatenate the chunk ID and the ID of the original document to generate the value of the primary key field for the chunk. This primary key field is doc_id.

  • The chunk parameter indicates the chunk content after text segmentation, which must be pushed to the split_content field.

  • The embedding parameter indicates the vector of the chunk content after word embedding, which must be pushed to the split_content_embedding field.

Push the preceding results to the OpenSearch Retrieval Engine Edition instance.

For more information about the endpoint and API of the OpenSearch Retrieval Engine Edition instance, see the "Sample code of the SDK for Java" section of this topic or the following topic:

Data push demo

3. Perform conversational searches

3.1. Perform word embedding on original queries

Perform word embedding on original queries.

For more information about the endpoint and API of the OpenSearch LLM-Based Conversational Search Edition instance, see the "Sample code of the SDK for Java" section of this topic or the following topic:

EmbeddingDoc

3.2. Retrieve the vector results

  • Use the vectors of the original queries to retrieve data in the OpenSearch Retrieval Engine Edition instance.

  • In addition to vector-based retrieval, you can use other fields to retrieve data and sort and filter the retrieval results.

For more information about the endpoint and API of the OpenSearch Retrieval Engine Edition instance, see the "Sample code of the SDK for Java" section of this topic or the following topic:

Document search demo

3.3. Perform inference and summarization by calling the knowledge-llm operation

Perform inference and summarization on the results retrieved from the OpenSearch Retrieval Engine Edition instance by calling the knowledge-llm operation provided by OpenSearch LLM-Based Conversational Search Edition.

For more information, see the "Sample code of the SDK for Java" section of this topic or the following topic:

knowledge-llm

4. Sample code of the SDK for Java

The following sample code provides an example on how to use the SDK for Java to push data and perform conversational searches.

Maven dependencies:

<dependency>
  <groupId>com.aliyun</groupId>
  <artifactId>aliyun-sdk-ha3engine</artifactId>
  <version>1.3.6</version>
</dependency>
<dependency>
  <groupId>com.aliyun.opensearch</groupId>
  <artifactId>aliyun-sdk-opensearch</artifactId>
  <version>4.0.0</version>
</dependency>

Sample code of the SDK for Java:

import com.aliyun.ha3engine.Client;
import com.aliyun.ha3engine.models.*;

import com.aliyun.ha3engine.vector.models.QueryRequest;
import com.aliyun.opensearch.OpenSearchClient;
import com.aliyun.opensearch.sdk.generated.OpenSearch;
import com.aliyun.opensearch.sdk.generated.commons.OpenSearchResult;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;

import java.util.*;

public class RetrievalWithLLMDemo {

    /**
     * The name of the OpenSearch LLM-Based Conversational Search Edition instance.
     */
    private static String llmAppName = "xxxx";
    /**
     * The endpoint of the OpenSearch LLM-Based Conversational Search Edition instance.
     */
    private static String llmHost = "http://opensearch-cn-shanghai.aliyuncs.com";
    /**
     * The AccessKey ID that is used to access the OpenSearch LLM-Based Conversational Search Edition instance.
     */
    private static String llmAccessKey = "xxx";
    /**
     * The AccessKey secret that is used to access the OpenSearch LLM-Based Conversational Search Edition instance.
     */
    private static String llmAccessSecret = "xxx";



    /**
     * The API endpoint of the OpenSearch Retrieval Engine Edition instance.
     */
    private static String retrievalEndpoint = "ha-cn-xxx.public.ha.aliyuncs.com";
    /**
     * The name of the OpenSearch Retrieval Engine Edition instance.
     */
    private static String retrievalInstanceId = "ha-cn-xxx";
    /**
     * The name of the document data table in the OpenSearch Retrieval Engine Edition instance.
     */
    private static String retrievalTableName = "ha-cn-xxx";


 
    /**
     * The primary key field of the documents pushed to the OpenSearch Retrieval Engine Edition instance.
     */
    private static String retrievalPkField = "doc_id";
    /**
     * The username that is used to access the OpenSearch Retrieval Engine Edition instance.
     */
    private static String retrievalUserName = "xxx";
    /**
     * The password that is used to access the OpenSearch Retrieval Engine Edition instance.
     */
    private static String retrievalPassword = "xxx";



    public static void main(String[] args) throws Exception {

        // Create an object to access the OpenSearch LLM-Based Conversational Search Edition instance.
        // Create an OpenSearch object.
        OpenSearch openSearch = new OpenSearch(llmAccessKey, llmAccessSecret, llmHost);
        // Use the OpenSearch object as a parameter to create an OpenSearchClient object.
        OpenSearchClient llmClient = new OpenSearchClient(openSearch);

        // Create an object to access the OpenSearch Retrieval Engine Edition instance.
        Config config = new Config();
        config.setEndpoint(retrievalEndpoint);
        config.setInstanceId(retrievalInstanceId);
        config.setAccessUserName(retrievalUserName);
        config.setAccessPassWord(retrievalPassword);
        Client retrievalClient = new Client(config);



        // Perform text segmentation and word embedding on the content.
        Map<String, String> splitParams = new HashMap<String, String>() {{
            put("format", "full_json");
            put("_POST_BODY", "{\"content\":\"OpenSearch serves as an all-in-one platform used to develop commercial intelligent search services. It is built based on a large-scale distributed search engine platform developed by Alibaba. OpenSearch provides mid-end services for the core search business of Alibaba Group, including Taobao, Tmall, and Cainiao." +
                    "Thanks to years of search experience in various industries and the capabilities of handling traffic peaks during Double 11, OpenSearch releases a set of service editions that offers high performance, efficiency, availability, and stability. The released service editions include LLM-Based Conversational Search Edition, Industry Algorithm Edition, High-performance Search Edition, Vector Search Edition, and Retrieval Engine Edition. This helps meet search requirements in a variety of industries." +
                    "OpenSearch is a PaaS that simplifies the use of search technologies and lowers the technical threshold and costs. OpenSearch allows you to implement search features and fast iterations for your services at a low cost. This prevents search technologies from being your business bottleneck.\",\"use_embedding\":true}");
        }};
        String splitPath =  String.format("/apps/%s/actions/knowledge-split", llmAppName);
        OpenSearchResult openSearchResult = llmClient.callAndDecodeResult(splitPath, splitParams, "POST");
        System.out.println("split result:" + openSearchResult.getResult());
        JsonArray array =  JsonParser.parseString(openSearchResult.getResult()).getAsJsonArray();
        // The outer structure that specifies document operations. You can specify one or more document operations in the structure.
        ArrayList<Map<String, ?>> documents = new ArrayList<>();
        // For example, the primary key value of the original document is 001.
        String doc_raw_id="001";
        for(JsonElement element:array){
            JsonObject object = element.getAsJsonObject();
            // Upload the document.
            Map<String, Object> add2Document = new HashMap<>();
            Map<String, Object> add2DocumentFields = new HashMap<>();
            // Insert the content of the document. Keys must be paired with values.
            // The value of the field_pk field must be the same as the value of the pkField field.
            add2DocumentFields.put("doc_id", doc_raw_id+"_"+object.get("chunk_id").getAsString());
            add2DocumentFields.put("doc_raw_id", doc_raw_id);
            List<Float> vectors = new ArrayList();
            for(String str: object.get("embedding").getAsString().split(",")){
                vectors.add(Float.parseFloat(str));
            }
            add2DocumentFields.put("split_content_embedding", vectors);
            add2DocumentFields.put("split_content", object.get("chunk"));
            // Add the document content to an add2Document structure.
            add2Document.put("fields", add2DocumentFields);
            // Run the add command to upload the document.
            add2Document.put("cmd", "add");
            documents.add(add2Document);
        }
        System.out.println("push docs:"+documents.toString());


        // Push the data to the OpenSearch Retrieval Engine Edition instance.
        PushDocumentsRequestModel request = new PushDocumentsRequestModel();
        request.setBody(documents);
        PushDocumentsResponseModel response = retrievalClient.pushDocuments(retrievalTableName, retrievalPkField, request);
        String responseBody = response.getBody();
        System.out.println("push result:" + responseBody);


        // Perform word embedding on the original query.
        Map<String, String> embeddingParams = new HashMap<String, String>() {
            {
                put("format", "full_json");
                put("_POST_BODY", "{\"content\":\"What is OpenSearch\",\"query\":true}");
            }};
        String embeddingPath =  String.format("/apps/%s/actions/knowledge-embedding", llmAppName);
        openSearchResult = llmClient.callAndDecodeResult(embeddingPath, embeddingParams, "POST");
        System.out.println("query embedding:"+openSearchResult.getResult());
        String embedding = openSearchResult.getResult();



        SearchRequestModel haQueryRequestModel = new SearchRequestModel();
        SearchQuery haRawQuery = new SearchQuery();
        haRawQuery.setQuery("query=split_content_embedding:'"+embedding+"'&&config=start:0,hit:5,format:json&&cluster=general");
        haQueryRequestModel.setQuery(haRawQuery);
        // The request method. Only the GET and POST methods are supported. Default value: GET. If the length of the query exceeds 30 KB, use the POST method.
        haQueryRequestModel.setMethod("POST");


        SearchResponseModel searchResponse = retrievalClient.Search(haQueryRequestModel);
        System.out.println("Search results:" + searchResponse.getBody());
        JsonObject recallResult =  JsonParser.parseString(searchResponse.getBody()).getAsJsonObject().get("result").getAsJsonObject();
        long hits = recallResult.get("totalHits").getAsLong();
        List<String> list = new ArrayList<>();
        if(hits <=0){
            System.out.println("No results found.");
            return ;
        }else{
            JsonArray items = recallResult.get("items").getAsJsonArray();
            for(JsonElement element:items) {
                JsonObject object = element.getAsJsonObject();
                String splitContent = object.get("fields").getAsJsonObject().get("split_content").getAsString();
                list.add(splitContent);
            }
        }


        // Perform inference and summarization on the retrieved results by using the OpenSearch LLM-Based Conversational Search Edition instance.
        StringBuffer sb =new StringBuffer();
        sb.append("{  \"question\" : \"What is OpenSearch\" ,");
        sb.append(" \"type\" : \"text\",");
        sb.append("  \"content\" : [");
        for(String str:list){
            sb.append("\"");
            sb.append(str);
            sb.append("\"");
            sb.append(",");
        }
        sb.deleteCharAt(sb.lastIndexOf(","));
        sb.append("]}");

        Map<String, String> llmParams = new HashMap<String, String>() {{
            put("format", "full_json");
            put("_POST_BODY", sb.toString());
        }};
        System.out.println("llm request params:"+llmParams);
        String llmPath = String.format("/apps/%s/actions/knowledge-llm", llmAppName);
        openSearchResult = llmClient.callAndDecodeResult(llmPath, llmParams, "POST");
        System.out.println("llm result:"+openSearchResult.getResult());

    }
}

Sample result of a conversational search:

split result:[{"chunk":"OpenSearch serves as an all-in-one platform used to develop commercial intelligent search services. It is built based on a large-scale distributed search engine platform developed by Alibaba. OpenSearch provides mid-end services for the core search business of Alibaba Group, including Taobao, Tmall, and Cainiao. Thanks to years of search experience in various industries and the capabilities of handling traffic peaks during Double 11, OpenSearch releases a set of service editions that offers high performance, efficiency, availability, and stability. The released service editions include LLM-Based Conversational Search Edition, Industry Algorithm Edition, High-performance Search Edition, Vector Search Edition, and Retrieval Engine Edition. This helps meet search requirements in a variety of industries. OpenSearch is a PaaS that simplifies the use of search technologies and lowers the technical threshold and costs. OpenSearch allows you to implement search features and fast iterations for your services at a low cost. This prevents search technologies from being your business bottleneck.","embedding":"0.058944,0.016041,-0.022979,-0.006843,-0.011453,-0.005364,0.012683,0.003753,-0.010473,-0.035882,0.022777,0.013684,0.019789,0.059289,0.032136,0.013853,0.005775,-0.023095,-0.013779,-0.048795,0.013637,0.003875,0.027101,-0.012953,-0.000451,0.015116,0.007961,0.013838,-0.024333,-0.015643,0.012063,-0.033473,-0.027398,-0.012608,0.008691,0.006517,-0.009050,0.034951,-0.017741,0.005856,-0.025882,0.020528,0.017820,0.023583,-0.020903,-0.011930,-0.001455,-0.022176,-0.027808,-0.012451,-0.000285,0.016633,0.031935,0.005498,0.004535,-0.024839,-0.007486,-0.001793,0.037985,0.037073,-0.003052,0.005487,0.058171,0.002551,-0.049560,0.004262,0.000998,-0.011665,0.011154,0.007822,-0.006605,0.012623,-0.005449,0.036748,0.005853,0.032359,-0.010664,0.060133,-0.029952,-0.018085,-0.039066,-0.023734,-0.008935,-0.030978,0.012594,-0.009963,-0.003284,-0.052731,-0.030818,-0.024357,-0.018427,-0.007740,0.006670,-0.014451,-0.000664,0.008632,0.000559,0.012988,0.004708,-0.008997,-0.022217,-0.033333,-0.002771,0.013360,0.023618,0.020576,0.039840,-0.041438,0.009526,0.005578,-0.008668,-0.040868,-0.005239,-0.006126,0.007439,-0.010292,-0.014757,-0.001831,0.005164,-0.004219,0.011690,-0.003136,0.027368,-0.004122,0.024626,-0.046067,-0.001822,0.030602,0.000035,-0.008202,0.014946,0.025007,-0.019733,-0.013456,0.013455,0.009003,-0.010062,0.003313,-0.036908,0.002963,-0.005490,-0.004916,-0.008260,0.028805,-0.036924,-0.035734,-0.018335,-0.040179,-0.000700,-0.010041,0.035285,-0.037650,-0.013899,-0.005100,0.009535,-0.020877,0.003292,0.026104,0.012935,-0.019031,-0.015493,0.006942,-0.010082,0.007186,0.005751,0.009706,-0.001548,-0.004717,0.001332,0.005460,-0.000254,0.006103,-0.006998,-0.015627,-0.003294,0.036717,0.023722,0.006250,0.031267,0.028969,0.020644,0.023850,-0.000235,-0.010401,-0.028416,-0.010289,0.013980,0.000310,0.001578,-0.004772,0.015677,-0.011431,-0.017962,-0.059418,0.053901,-0.005269,0.013720,-0.009200,0.024597,0.030213,-0.006000,-0.051636,-0.020080,0.000582,-0.017588,0.014337,-0.003650,-0.038575,0.001348,-0.011479,-0.030456,-0.004576,0.027020,0.020403,-0.030577,0.000924,0.016515,0.021700,-0.019656,-0.000553,-0.008552,0.021116,0.004622,0.016680,-0.005470,0.026639,0.017934,-0.016988,-0.045637,0.018315,0.008231,0.000986,0.076720,-0.039596,0.039906,0.009762,0.033039,-0.015902,-0.051254,-0.012486,-0.035336,0.030111,0.002910,0.012114,0.013676,-0.015705,0.025196,0.000945,0.000032,0.022682,0.009286,-0.058777,0.013028,0.007378,0.006240,0.036437,0.022709,-0.000606,0.017103,-0.008234,-0.024911,-0.031984,-0.005921,-0.010479,0.020574,0.028760,0.010287,0.006815,-0.010195,0.000891,-0.012835,0.013409,-0.011244,0.010466,-0.002619,-0.009653,0.043739,0.029876,-0.017749,0.001653,-0.007074,0.011950,-0.018465,0.019452,0.009606,0.008071,0.022715,-0.006980,-0.012311,-0.002198,0.077244,-0.026081,-0.009663,0.032682,0.028942,0.032478,0.016002,0.034459,0.026564,0.036447,0.001212,-0.015135,-0.000262,0.013329,0.007557,0.013665,-0.028317,-0.006802,0.001975,0.047904,0.013738,0.004747,-0.016571,-0.005546,0.001384,0.042958,-0.058476,0.000407,0.020693,0.020031,0.019088,-0.001783,0.026118,-0.010239,-0.011400,-0.015466,-0.005209,0.056623,0.034536,0.024929,-0.041197,0.005566,-0.035302,0.015315,-0.018480,-0.024686,0.012943,-0.013503,0.031096,0.029340,0.034304,0.033843,-0.006230,-0.054450,0.036966,0.008684,-0.047479,-0.027772,-0.019249,-0.001877,0.041575,0.108421,0.025857,0.021436,-0.016784,0.027012,0.002843,-0.015071,-0.015743,0.020331,0.000903,0.007280,0.024153,0.001139,-0.000152,0.001794,-0.022988,0.006714,-0.019876,0.036943,-0.012260,0.058072,-0.002742,-0.008995,0.013568,-0.000003,0.013275,0.010664,0.013439,0.032533,-0.023252,0.006897,-0.015789,-0.018147,0.051673,-0.004469,0.003458,-0.060190,-0.016511,-0.009987,-0.025745,-0.006735,0.020604,0.000736,0.007278,-0.014283,-0.010318,-0.024091,0.016370,0.008874,0.007203,-0.009760,-0.070398,-0.004111,-0.019276,-0.025142,-0.035966,0.049473,-0.001262,-0.007618,-0.030426,-0.002003,-0.016901,-0.016566,0.011555,0.035330,0.041299,0.015202,-0.013583,0.003022,0.046380,-0.024215,0.002514,0.017591,0.021717,0.062761,-0.019273,0.000746,0.037473,0.008214,-0.025372,-0.018800,0.003300,0.026028,0.028216,0.003292,0.031008,0.002166,-0.016555,0.023480,-0.026133,-0.016744,-0.009429,0.001149,-0.032788,-0.038672,-0.019281,-0.017241,-0.015163,-0.012736,-0.232926,0.012288,0.000272,0.024807,-0.019443,-0.009439,-0.012627,-0.041117,-0.018058,0.000263,0.006151,0.014347,0.027431,0.037084,-0.015275,-0.010482,-0.028173,-0.010884,0.012272,0.026355,0.005604,0.002275,-0.003145,-0.008207,-0.006014,-0.042401,0.012313,-0.001519,0.002943,-0.041678,-0.018343,0.010107,0.004622,-0.015459,-0.015083,0.013414,0.000470,0.003985,-0.027847,0.000734,0.012179,0.002649,0.016468,-0.002922,-0.019698,0.000898,0.003615,-0.010387,-0.025029,-0.045330,0.053376,-0.015829,-0.027444,-0.005744,-0.007750,0.025253,-0.005146,-0.005949,-0.009604,-0.004570,0.003609,-0.001431,-0.000285,-0.066066,-0.024670,0.008417,0.025607,-0.006470,-0.020497,0.003962,-0.003923,-0.020909,-0.035671,0.000501,-0.029121,0.011058,-0.003056,0.028272,0.005947,0.010732,-0.026431,0.030766,0.040207,-0.012959,0.007407,0.005184,0.023602,-0.003974,-0.011604,-0.016104,0.025625,-0.015911,-0.012558,0.028491,-0.005471,0.023728,-0.015681,0.018293,-0.027668,0.018082,0.010058,0.021446,-0.057776,-0.013246,0.028383,-0.014394,0.018649,-0.011509,0.029067,-0.000697,0.041417,0.014481,0.034178,-0.031103,-0.015341,0.007939,-0.026275,0.001882,0.032737,-0.040242,0.029016,0.035044,-0.013236,-0.052490,-0.006897,0.044281,-0.009305,0.020164,0.021243,-0.034081,-0.010894,0.003634,-0.044416,-0.017559,0.027155,-0.018531,0.022965,-0.048360,0.008937,0.010912,0.036382,0.015889,-0.001813,-0.000007,-0.015349,0.012174,0.018061,-0.027353,-0.032039,-0.010001,0.005769,0.034046,-0.007467,-0.021028,-0.023586,0.002104,0.022797,-0.006151,0.010181,-0.012785,0.009996,-0.009342,-0.016487,0.022159,0.031559,0.007423,-0.007615,-0.031414,0.007909,0.002282,0.040214,0.019681,-0.006510,0.025835,0.032997,0.014599,-0.003558,0.007910,-0.048382,0.021192,-0.000170,0.084858,-0.017622,0.015057,-0.015039,-0.029091,-0.062443,-0.003653,0.020595,-0.012483,0.023215,0.071216,0.004772,0.029568,0.008530,0.039306,-0.006601,0.010798,0.009222,-0.023677,-0.018440,0.001022,0.021633,-0.026131,-0.026464,0.027015,-0.029310,0.005696,-0.008796,0.011726,0.020735,0.014511,0.017494,-0.021458,0.022514,0.037438,0.014769,0.004284,0.000630,-0.011560,0.006499,-0.008250,0.017817,-0.028769,0.022045,0.019720,0.007334,0.008717,0.015892,0.061018,-0.005743,0.017947,0.003449,-0.017587,0.005602,-0.000786,-0.003356,0.003960,0.006705,0.023985,0.008339,0.005710,-0.007296,0.027172,0.009424,0.017042,0.054527,0.013545,0.026250,-0.009377,-0.039954,0.046764,0.026242,-0.021726,0.007405,0.026120,-0.018437,0.043712,-0.009306,0.028782,-0.007957,-0.033230,0.021192,0.004733,-0.019818,-0.037745,-0.020586,0.006497,-0.030998,-0.008631,0.025291,-0.040003,0.008166,0.012221,-0.004829,-0.014536,-0.023395,0.043710,0.017315,0.047018,-0.014828,-0.004538,-0.000804,0.020266,0.047262,-0.011388,-0.013702,-0.029922,-0.034573,-0.023005,0.054309,-0.031499,-0.010228,-0.024959,0.029076,-0.027788,-0.022067,0.032130,0.008417,0.041970,-0.024841,-0.000476,0.039601,-0.001732,-0.012076,-0.018452,-0.000596,-0.001436,0.002940,0.010290,0.019938,0.031889,0.019207,0.010139,-0.018392,-0.002966,0.004272,0.037334,0.001428,-0.001025,-0.028176,0.031609,-0.008596,-0.002416,0.078718,0.024388,0.002150,0.007059,-0.011778,-0.000761,-0.016378,0.004490,-0.004502,-0.005520,-0.014055,-0.007021,0.023622,0.023571,-0.018840,-0.005508,0.004186,-0.013665,0.009347,0.009071,-0.031999,-0.049258,-0.000640,0.010828,-0.007614,0.012460,-0.031687,-0.009271,0.011002,0.035410,0.003221,0.031121,0.025826,-0.003049,0.010242,-0.027914,-0.005464,-0.002642,0.025418,-0.000142,-0.000724,-0.034004,0.001346,-0.027193,0.046669,-0.020482,0.002774,0.015443,-0.005945,-0.013043,0.006392,-0.028343,0.023979,-0.023050,0.027387,-0.009677,-0.002377,0.015740,0.005365,-0.020158,-0.004276,-0.010488,0.003381,0.006904,0.012700,0.014227,-0.024879,0.021459,-0.019387,0.014229,0.033986,0.050560,0.002102,-0.008133,0.011356,-0.002189,0.056533,-0.030120,0.013971,-0.031195,0.010920,-0.003505,0.004371,0.001440,-0.007147,-0.017118,0.009156,0.028171,-0.037069,0.032282,0.013392,0.001464,0.004099,0.032574,-0.037686,0.011324,0.008729,-0.022222,0.026549,-0.032615,-0.013741,-0.012993,-0.003333,0.007118,0.012893,-0.038559,0.015136,-0.013635,0.010838,0.038146,-0.007165,-0.008727,-0.013066,0.009990,0.018753,0.036606,0.009816,-0.011227,0.032639,0.006945,0.026627,0.023046,0.012916,-0.026769,-0.041190,0.013665,0.025341,-0.005035,-0.013063,-0.029744,0.045071,-0.016412,-0.002362,-0.007768,0.009105,0.003848,-0.004606,0.005059,-0.079461,0.006763,-0.008734,-0.035932,-0.022069,0.021850,-0.007496,-0.018475,-0.046943,-0.014248,0.040450,0.011916,0.003646,-0.054256,-0.018010,-0.020331,-0.028947,0.017700,-0.008071,0.019939,0.007839,0.005601,-0.015412,-0.037996,-0.031772,-0.018614,-0.000257,0.018640,0.029622,-0.004232,0.078180,-0.018435,0.007394,0.048959,0.029674,-0.011449,-0.017009,0.008250,0.031218,0.041313,-0.031124,0.040128,0.013629,-0.008206,0.040990,-0.006748,0.022326,0.028284,-0.013805,-0.012407,0.008298,-0.057119,0.013245,-0.014545,0.000368,-0.013783,-0.004973,0.011253,-0.025476,-0.002864,0.015459,0.028335,0.016063,-0.012477,0.023530,0.021093,-0.050562,-0.021871,-0.001153,-0.003376,-0.007470,-0.022303,-0.003790,0.027838,-0.004322,0.026116,0.004042,0.005046,0.003391,0.021602,0.017936,-0.011424,-0.042226,-0.020899,-0.053995,0.006907,0.040415,0.002520,0.060698,0.016931,-0.046294,-0.025321,0.014166,-0.002419,0.005036,0.031215,0.004616,0.037337,0.009998,-0.008700,0.002463,0.024029,0.006174,0.044700,-0.010568,-0.011667,-0.043795,-0.022761,0.030816,-0.002601,-0.027664,-0.034978,0.034525,-0.061245,0.022145,-0.007397,0.010004,-0.046855,0.011633,0.008962,0.044551,-0.006484,-0.005631,0.045700,-0.126556,0.009459,0.010258,0.005919,-0.080068,0.020376,0.032901,0.043750,0.001311,-0.004869,-0.006052,0.009172,0.001228,0.001387,0.008740,-0.006041,0.026674,0.006371,-0.011788,0.003850,0.008447,-0.021379,-0.084556,0.010458,-0.008227,0.003990,-0.023570,0.035783,0.066321,-0.026925,0.027861,-0.001323,-0.031900,0.034412,-0.040019,0.004691,0.006261,-0.026191,0.001055,0.023727,-0.013352,0.002610,-0.018447,0.000692,-0.000961,-0.017404,-0.009285,0.023182,-0.007817,-0.002440,-0.009466,0.025555,0.001750,-0.020912,-0.010417,0.019965,-0.034412,-0.039644,0.024089,0.041611,0.032324,-0.011904,-0.031645,0.019306,-0.010829,-0.030661,0.013613,-0.008095,-0.006501,-0.003643,-0.021349,-0.011975,-0.002582,-0.008047,-0.032975,0.039012,0.010360,-0.038370,0.002820,0.055957,-0.032983,-0.001298,-0.041106,-0.019841,-0.015772,-0.014599,0.011708,-0.033495,0.004259,0.036991,-0.002957,-0.014828,-0.004173,0.040672,0.008419,-0.000364,-0.042463,-0.020880,-0.013524,0.004617,0.004520,0.003664,-0.033043,-0.031192,0.020308,-0.001591,-0.041029,-0.021538,-0.052107,-0.024194,-0.011382,-0.001033,-0.013883,0.010258,0.007556,0.016436,0.003164,-0.005684,-0.040936,0.011409,-0.020517,-0.023504,0.025928,-0.028263,0.026495,0.042317,0.000107,0.245660,0.036358,-0.022556,-0.030215,-0.011091,0.004053,-0.001412,-0.005913,-0.030847,-0.021214,0.007775,0.050385,0.006027,0.027889,0.067907,-0.020470,-0.019712,0.031602,0.009818,0.025369,0.033387,0.004266,0.006194,-0.033824,0.027432,-0.026028,0.009895,-0.007394,-0.012237,0.001887,0.024125,0.001791,-0.007441,-0.025444,0.029987,-0.036394,-0.006565,-0.026003,-0.041117,0.039541,0.045864,0.017632,0.029439,-0.000245,-0.016957,-0.025600,0.013657,0.016074,0.046530,-0.010875,0.017379,0.006846,0.007717,0.004708,0.005316,-0.006975,0.009147,-0.029892,-0.014211,-0.016155,-0.019417,-0.004657,0.014700,-0.002322,-0.024992,-0.040014,0.007966,-0.008675,0.010607,-0.008790,0.013281,-0.040513,-0.015679,-0.035150,0.032105,0.054248,-0.012088,0.029862,-0.003178,0.042197,0.015399,0.000385,0.036540,-0.017693,0.022390,-0.027710,-0.025340,0.050142,0.036265,-0.008159,-0.007360,-0.002490,0.009402,0.001134,-0.021154,0.003846,0.009157,0.019331,0.008505,-0.006871,0.031060,0.019751,0.012201,-0.019836,0.000465,0.013264,-0.017126,0.016906,-0.017095,-0.016356,0.005041,-0.017895,0.003731,-0.008477,0.018680,-0.015964,-0.013397,0.021936,-0.008366,0.043431,0.005761,-0.034215,-0.028917,0.016484,0.002057,-0.034505,0.006747,-0.034653,0.005483,-0.027685,0.016079,0.032641,0.030285,-0.001619,0.006673,0.003414,0.010434,-0.000531,-0.006740,-0.011358,0.007005,-0.024139,0.007147,0.013677,0.013194,0.062825,-0.008662,-0.006729,0.022879,0.014448,-0.021027,0.033209,0.034571,-0.026526,-0.008102,-0.021458,0.021626,-0.032371,-0.040210,0.012979,0.058696,-0.011130,-0.056270,-0.027651,0.010581,0.000189,0.031129,-0.003862,0.030464,-0.014996,0.031756,-0.013698,0.012315,0.033940,0.005749,-0.046122,-0.017994,0.026781,0.006142,-0.005648,0.046692,0.016839,0.010572,0.002498,-0.018649,-0.024938,-0.030281,0.015755,0.021024,0.025444,-0.008140,-0.009376,0.023339,0.031634,0.013591,-0.031017,0.019806,-0.009280,-0.000673,0.029636,0.014008,-0.011661,-0.014231,-0.016603,-0.005407,-0.040427,-0.044560,-0.011673,-0.031006,0.015388,-0.031582,0.001565,0.007911,-0.026223,0.012313,0.017325,0.008236,-0.018882,-0.023640,0.025792,-0.022991,-0.014098,-0.029587,-0.016471,0.012892,-0.026334,0.006804,-0.014531,-0.014660,-0.004509,0.051716,-0.023044,0.009204,0.006041,0.017072,0.015307,0.023241,-0.005984,0.011302,0.010177,0.025242,0.064692,0.037993,0.039085,0.004310,-0.016123,-0.031177,0.037710,-0.052912,0.003202,0.018976,-0.047109,0.030654,-0.001792,0.004625,-0.033835,0.012412,-0.008169,0.006057,-0.014922,-0.012097,-0.027555,0.014625,-0.012163,0.046348,-0.017465,-0.007873,0.000002,0.013451,0.001777,-0.032772,0.002679,0.027120,-0.005835,-0.018173,-0.032334,-0.004673,-0.051013,0.003055,-0.007380,-0.003466,0.009655,-0.013058,-0.001926,-0.027485,-0.003872,-0.013668,0.017120,0.000781,-0.012092,-0.020243,-0.023163,-0.000867,-0.008446,0.005901,-0.025803,0.022033,0.000968,0.046100,-0.028540,-0.013284,-0.010571,0.018783,0.000008,-0.013861,0.012077,-0.029714,0.057719,-0.018674,-0.001118,0.003320,-0.023280,0.046057,0.034659,-0.033313,0.031011,-0.036731,-0.016301,0.038335,-0.021914,0.016886,0.022662,-0.056195,0.011870,0.002741,0.023146,-0.008985,-0.017874,-0.044977,-0.004394,0.003963,0.022632,0.017069,0.013327,-0.029429,0.010053,-0.026801,0.023816,0.021166,0.007041,-0.001372,0.001159,0.012916,0.024608,-0.008222,0.014883,0.009930,0.034953,0.040960,-0.007708,0.002857,0.029912,-0.019932,-0.012394,-0.045241,-0.019988,0.008404,-0.011158,0.018687,0.003713,0.030915,0.006114,0.008312,0.015072,0.002301,-0.008728,0.014315,0.012511,-0.036631,-0.021858,-0.006753,-0.033092,-0.026720","type":"text","chunk_id":"1"}]
push docs:[{cmd=add, fields={split_content_embedding=[0.058944, 0.016041, -0.022979, -0.006843, -0.011453, -0.005364, 0.012683, 0.003753, -0.010473, -0.035882, 0.022777, 0.013684, 0.019789, 0.059289, 0.032136, 0.013853, 0.005775, -0.023095, -0.013779, -0.048795, 0.013637, 0.003875, 0.027101, -0.012953, -4.51E-4, 0.015116, 0.007961, 0.013838, -0.024333, -0.015643, 0.012063, -0.033473, -0.027398, -0.012608, 0.008691, 0.006517, -0.00905, 0.034951, -0.017741, 0.005856, -0.025882, 0.020528, 0.01782, 0.023583, -0.020903, -0.01193, -0.001455, -0.022176, -0.027808, -0.012451, -2.85E-4, 0.016633, 0.031935, 0.005498, 0.004535, -0.024839, -0.007486, -0.001793, 0.037985, 0.037073, -0.003052, 0.005487, 0.058171, 0.002551, -0.04956, 0.004262, 9.98E-4, -0.011665, 0.011154, 0.007822, -0.006605, 0.012623, -0.005449, 0.036748, 0.005853, 0.032359, -0.010664, 0.060133, -0.029952, -0.018085, -0.039066, -0.023734, -0.008935, -0.030978, 0.012594, -0.009963, -0.003284, -0.052731, -0.030818, -0.024357, -0.018427, -0.00774, 0.00667, -0.014451, -6.64E-4, 0.008632, 5.59E-4, 0.012988, 0.004708, -0.008997, -0.022217, -0.033333, -0.002771, 0.01336, 0.023618, 0.020576, 0.03984, -0.041438, 0.009526, 0.005578, -0.008668, -0.040868, -0.005239, -0.006126, 0.007439, -0.010292, -0.014757, -0.001831, 0.005164, -0.004219, 0.01169, -0.003136, 0.027368, -0.004122, 0.024626, -0.046067, -0.001822, 0.030602, 3.5E-5, -0.008202, 0.014946, 0.025007, -0.019733, -0.013456, 0.013455, 0.009003, -0.010062, 0.003313, -0.036908, 0.002963, -0.00549, -0.004916, -0.00826, 0.028805, -0.036924, -0.035734, -0.018335, -0.040179, -7.0E-4, -0.010041, 0.035285, -0.03765, -0.013899, -0.0051, 0.009535, -0.020877, 0.003292, 0.026104, 0.012935, -0.019031, -0.015493, 0.006942, -0.010082, 0.007186, 0.005751, 0.009706, -0.001548, -0.004717, 0.001332, 0.00546, -2.54E-4, 0.006103, -0.006998, -0.015627, -0.003294, 0.036717, 0.023722, 0.00625, 0.031267, 0.028969, 0.020644, 0.02385, -2.35E-4, -0.010401, -0.028416, -0.010289, 0.01398, 3.1E-4, 0.001578, -0.004772, 0.015677, -0.011431, -0.017962, -0.059418, 0.053901, -0.005269, 0.01372, -0.0092, 0.024597, 0.030213, -0.006, -0.051636, -0.02008, 5.82E-4, -0.017588, 0.014337, -0.00365, -0.038575, 0.001348, -0.011479, -0.030456, -0.004576, 0.02702, 0.020403, -0.030577, 9.24E-4, 0.016515, 0.0217, -0.019656, -5.53E-4, -0.008552, 0.021116, 0.004622, 0.01668, -0.00547, 0.026639, 0.017934, -0.016988, -0.045637, 0.018315, 0.008231, 9.86E-4, 0.07672, -0.039596, 0.039906, 0.009762, 0.033039, -0.015902, -0.051254, -0.012486, -0.035336, 0.030111, 0.00291, 0.012114, 0.013676, -0.015705, 0.025196, 9.45E-4, 3.2E-5, 0.022682, 0.009286, -0.058777, 0.013028, 0.007378, 0.00624, 0.036437, 0.022709, -6.06E-4, 0.017103, -0.008234, -0.024911, -0.031984, -0.005921, -0.010479, 0.020574, 0.02876, 0.010287, 0.006815, -0.010195, 8.91E-4, -0.012835, 0.013409, -0.011244, 0.010466, -0.002619, -0.009653, 0.043739, 0.029876, -0.017749, 0.001653, -0.007074, 0.01195, -0.018465, 0.019452, 0.009606, 0.008071, 0.022715, -0.00698, -0.012311, -0.002198, 0.077244, -0.026081, -0.009663, 0.032682, 0.028942, 0.032478, 0.016002, 0.034459, 0.026564, 0.036447, 0.001212, -0.015135, -2.62E-4, 0.013329, 0.007557, 0.013665, -0.028317, -0.006802, 0.001975, 0.047904, 0.013738, 0.004747, -0.016571, -0.005546, 0.001384, 0.042958, -0.058476, 4.07E-4, 0.020693, 0.020031, 0.019088, -0.001783, 0.026118, -0.010239, -0.0114, -0.015466, -0.005209, 0.056623, 0.034536, 0.024929, -0.041197, 0.005566, -0.035302, 0.015315, -0.01848, -0.024686, 0.012943, -0.013503, 0.031096, 0.02934, 0.034304, 0.033843, -0.00623, -0.05445, 0.036966, 0.008684, -0.047479, -0.027772, -0.019249, -0.001877, 0.041575, 0.108421, 0.025857, 0.021436, -0.016784, 0.027012, 0.002843, -0.015071, -0.015743, 0.020331, 9.03E-4, 0.00728, 0.024153, 0.001139, -1.52E-4, 0.001794, -0.022988, 0.006714, -0.019876, 0.036943, -0.01226, 0.058072, -0.002742, -0.008995, 0.013568, -3.0E-6, 0.013275, 0.010664, 0.013439, 0.032533, -0.023252, 0.006897, -0.015789, -0.018147, 0.051673, -0.004469, 0.003458, -0.06019, -0.016511, -0.009987, -0.025745, -0.006735, 0.020604, 7.36E-4, 0.007278, -0.014283, -0.010318, -0.024091, 0.01637, 0.008874, 0.007203, -0.00976, -0.070398, -0.004111, -0.019276, -0.025142, -0.035966, 0.049473, -0.001262, -0.007618, -0.030426, -0.002003, -0.016901, -0.016566, 0.011555, 0.03533, 0.041299, 0.015202, -0.013583, 0.003022, 0.04638, -0.024215, 0.002514, 0.017591, 0.021717, 0.062761, -0.019273, 7.46E-4, 0.037473, 0.008214, -0.025372, -0.0188, 0.0033, 0.026028, 0.028216, 0.003292, 0.031008, 0.002166, -0.016555, 0.02348, -0.026133, -0.016744, -0.009429, 0.001149, -0.032788, -0.038672, -0.019281, -0.017241, -0.015163, -0.012736, -0.232926, 0.012288, 2.72E-4, 0.024807, -0.019443, -0.009439, -0.012627, -0.041117, -0.018058, 2.63E-4, 0.006151, 0.014347, 0.027431, 0.037084, -0.015275, -0.010482, -0.028173, -0.010884, 0.012272, 0.026355, 0.005604, 0.002275, -0.003145, -0.008207, -0.006014, -0.042401, 0.012313, -0.001519, 0.002943, -0.041678, -0.018343, 0.010107, 0.004622, -0.015459, -0.015083, 0.013414, 4.7E-4, 0.003985, -0.027847, 7.34E-4, 0.012179, 0.002649, 0.016468, -0.002922, -0.019698, 8.98E-4, 0.003615, -0.010387, -0.025029, -0.04533, 0.053376, -0.015829, -0.027444, -0.005744, -0.00775, 0.025253, -0.005146, -0.005949, -0.009604, -0.00457, 0.003609, -0.001431, -2.85E-4, -0.066066, -0.02467, 0.008417, 0.025607, -0.00647, -0.020497, 0.003962, -0.003923, -0.020909, -0.035671, 5.01E-4, -0.029121, 0.011058, -0.003056, 0.028272, 0.005947, 0.010732, -0.026431, 0.030766, 0.040207, -0.012959, 0.007407, 0.005184, 0.023602, -0.003974, -0.011604, -0.016104, 0.025625, -0.015911, -0.012558, 0.028491, -0.005471, 0.023728, -0.015681, 0.018293, -0.027668, 0.018082, 0.010058, 0.021446, -0.057776, -0.013246, 0.028383, -0.014394, 0.018649, -0.011509, 0.029067, -6.97E-4, 0.041417, 0.014481, 0.034178, -0.031103, -0.015341, 0.007939, -0.026275, 0.001882, 0.032737, -0.040242, 0.029016, 0.035044, -0.013236, -0.05249, -0.006897, 0.044281, -0.009305, 0.020164, 0.021243, -0.034081, -0.010894, 0.003634, -0.044416, -0.017559, 0.027155, -0.018531, 0.022965, -0.04836, 0.008937, 0.010912, 0.036382, 0.015889, -0.001813, -7.0E-6, -0.015349, 0.012174, 0.018061, -0.027353, -0.032039, -0.010001, 0.005769, 0.034046, -0.007467, -0.021028, -0.023586, 0.002104, 0.022797, -0.006151, 0.010181, -0.012785, 0.009996, -0.009342, -0.016487, 0.022159, 0.031559, 0.007423, -0.007615, -0.031414, 0.007909, 0.002282, 0.040214, 0.019681, -0.00651, 0.025835, 0.032997, 0.014599, -0.003558, 0.00791, -0.048382, 0.021192, -1.7E-4, 0.084858, -0.017622, 0.015057, -0.015039, -0.029091, -0.062443, -0.003653, 0.020595, -0.012483, 0.023215, 0.071216, 0.004772, 0.029568, 0.00853, 0.039306, -0.006601, 0.010798, 0.009222, -0.023677, -0.01844, 0.001022, 0.021633, -0.026131, -0.026464, 0.027015, -0.02931, 0.005696, -0.008796, 0.011726, 0.020735, 0.014511, 0.017494, -0.021458, 0.022514, 0.037438, 0.014769, 0.004284, 6.3E-4, -0.01156, 0.006499, -0.00825, 0.017817, -0.028769, 0.022045, 0.01972, 0.007334, 0.008717, 0.015892, 0.061018, -0.005743, 0.017947, 0.003449, -0.017587, 0.005602, -7.86E-4, -0.003356, 0.00396, 0.006705, 0.023985, 0.008339, 0.00571, -0.007296, 0.027172, 0.009424, 0.017042, 0.054527, 0.013545, 0.02625, -0.009377, -0.039954, 0.046764, 0.026242, -0.021726, 0.007405, 0.02612, -0.018437, 0.043712, -0.009306, 0.028782, -0.007957, -0.03323, 0.021192, 0.004733, -0.019818, -0.037745, -0.020586, 0.006497, -0.030998, -0.008631, 0.025291, -0.040003, 0.008166, 0.012221, -0.004829, -0.014536, -0.023395, 0.04371, 0.017315, 0.047018, -0.014828, -0.004538, -8.04E-4, 0.020266, 0.047262, -0.011388, -0.013702, -0.029922, -0.034573, -0.023005, 0.054309, -0.031499, -0.010228, -0.024959, 0.029076, -0.027788, -0.022067, 0.03213, 0.008417, 0.04197, -0.024841, -4.76E-4, 0.039601, -0.001732, -0.012076, -0.018452, -5.96E-4, -0.001436, 0.00294, 0.01029, 0.019938, 0.031889, 0.019207, 0.010139, -0.018392, -0.002966, 0.004272, 0.037334, 0.001428, -0.001025, -0.028176, 0.031609, -0.008596, -0.002416, 0.078718, 0.024388, 0.00215, 0.007059, -0.011778, -7.61E-4, -0.016378, 0.00449, -0.004502, -0.00552, -0.014055, -0.007021, 0.023622, 0.023571, -0.01884, -0.005508, 0.004186, -0.013665, 0.009347, 0.009071, -0.031999, -0.049258, -6.4E-4, 0.010828, -0.007614, 0.01246, -0.031687, -0.009271, 0.011002, 0.03541, 0.003221, 0.031121, 0.025826, -0.003049, 0.010242, -0.027914, -0.005464, -0.002642, 0.025418, -1.42E-4, -7.24E-4, -0.034004, 0.001346, -0.027193, 0.046669, -0.020482, 0.002774, 0.015443, -0.005945, -0.013043, 0.006392, -0.028343, 0.023979, -0.02305, 0.027387, -0.009677, -0.002377, 0.01574, 0.005365, -0.020158, -0.004276, -0.010488, 0.003381, 0.006904, 0.0127, 0.014227, -0.024879, 0.021459, -0.019387, 0.014229, 0.033986, 0.05056, 0.002102, -0.008133, 0.011356, -0.002189, 0.056533, -0.03012, 0.013971, -0.031195, 0.01092, -0.003505, 0.004371, 0.00144, -0.007147, -0.017118, 0.009156, 0.028171, -0.037069, 0.032282, 0.013392, 0.001464, 0.004099, 0.032574, -0.037686, 0.011324, 0.008729, -0.022222, 0.026549, -0.032615, -0.013741, -0.012993, -0.003333, 0.007118, 0.012893, -0.038559, 0.015136, -0.013635, 0.010838, 0.038146, -0.007165, -0.008727, -0.013066, 0.00999, 0.018753, 0.036606, 0.009816, -0.011227, 0.032639, 0.006945, 0.026627, 0.023046, 0.012916, -0.026769, -0.04119, 0.013665, 0.025341, -0.005035, -0.013063, -0.029744, 0.045071, -0.016412, -0.002362, -0.007768, 0.009105, 0.003848, -0.004606, 0.005059, -0.079461, 0.006763, -0.008734, -0.035932, -0.022069, 0.02185, -0.007496, -0.018475, -0.046943, -0.014248, 0.04045, 0.011916, 0.003646, -0.054256, -0.01801, -0.020331, -0.028947, 0.0177, -0.008071, 0.019939, 0.007839, 0.005601, -0.015412, -0.037996, -0.031772, -0.018614, -2.57E-4, 0.01864, 0.029622, -0.004232, 0.07818, -0.018435, 0.007394, 0.048959, 0.029674, -0.011449, -0.017009, 0.00825, 0.031218, 0.041313, -0.031124, 0.040128, 0.013629, -0.008206, 0.04099, -0.006748, 0.022326, 0.028284, -0.013805, -0.012407, 0.008298, -0.057119, 0.013245, -0.014545, 3.68E-4, -0.013783, -0.004973, 0.011253, -0.025476, -0.002864, 0.015459, 0.028335, 0.016063, -0.012477, 0.02353, 0.021093, -0.050562, -0.021871, -0.001153, -0.003376, -0.00747, -0.022303, -0.00379, 0.027838, -0.004322, 0.026116, 0.004042, 0.005046, 0.003391, 0.021602, 0.017936, -0.011424, -0.042226, -0.020899, -0.053995, 0.006907, 0.040415, 0.00252, 0.060698, 0.016931, -0.046294, -0.025321, 0.014166, -0.002419, 0.005036, 0.031215, 0.004616, 0.037337, 0.009998, -0.0087, 0.002463, 0.024029, 0.006174, 0.0447, -0.010568, -0.011667, -0.043795, -0.022761, 0.030816, -0.002601, -0.027664, -0.034978, 0.034525, -0.061245, 0.022145, -0.007397, 0.010004, -0.046855, 0.011633, 0.008962, 0.044551, -0.006484, -0.005631, 0.0457, -0.126556, 0.009459, 0.010258, 0.005919, -0.080068, 0.020376, 0.032901, 0.04375, 0.001311, -0.004869, -0.006052, 0.009172, 0.001228, 0.001387, 0.00874, -0.006041, 0.026674, 0.006371, -0.011788, 0.00385, 0.008447, -0.021379, -0.084556, 0.010458, -0.008227, 0.00399, -0.02357, 0.035783, 0.066321, -0.026925, 0.027861, -0.001323, -0.0319, 0.034412, -0.040019, 0.004691, 0.006261, -0.026191, 0.001055, 0.023727, -0.013352, 0.00261, -0.018447, 6.92E-4, -9.61E-4, -0.017404, -0.009285, 0.023182, -0.007817, -0.00244, -0.009466, 0.025555, 0.00175, -0.020912, -0.010417, 0.019965, -0.034412, -0.039644, 0.024089, 0.041611, 0.032324, -0.011904, -0.031645, 0.019306, -0.010829, -0.030661, 0.013613, -0.008095, -0.006501, -0.003643, -0.021349, -0.011975, -0.002582, -0.008047, -0.032975, 0.039012, 0.01036, -0.03837, 0.00282, 0.055957, -0.032983, -0.001298, -0.041106, -0.019841, -0.015772, -0.014599, 0.011708, -0.033495, 0.004259, 0.036991, -0.002957, -0.014828, -0.004173, 0.040672, 0.008419, -3.64E-4, -0.042463, -0.02088, -0.013524, 0.004617, 0.00452, 0.003664, -0.033043, -0.031192, 0.020308, -0.001591, -0.041029, -0.021538, -0.052107, -0.024194, -0.011382, -0.001033, -0.013883, 0.010258, 0.007556, 0.016436, 0.003164, -0.005684, -0.040936, 0.011409, -0.020517, -0.023504, 0.025928, -0.028263, 0.026495, 0.042317, 1.07E-4, 0.24566, 0.036358, -0.022556, -0.030215, -0.011091, 0.004053, -0.001412, -0.005913, -0.030847, -0.021214, 0.007775, 0.050385, 0.006027, 0.027889, 0.067907, -0.02047, -0.019712, 0.031602, 0.009818, 0.025369, 0.033387, 0.004266, 0.006194, -0.033824, 0.027432, -0.026028, 0.009895, -0.007394, -0.012237, 0.001887, 0.024125, 0.001791, -0.007441, -0.025444, 0.029987, -0.036394, -0.006565, -0.026003, -0.041117, 0.039541, 0.045864, 0.017632, 0.029439, -2.45E-4, -0.016957, -0.0256, 0.013657, 0.016074, 0.04653, -0.010875, 0.017379, 0.006846, 0.007717, 0.004708, 0.005316, -0.006975, 0.009147, -0.029892, -0.014211, -0.016155, -0.019417, -0.004657, 0.0147, -0.002322, -0.024992, -0.040014, 0.007966, -0.008675, 0.010607, -0.00879, 0.013281, -0.040513, -0.015679, -0.03515, 0.032105, 0.054248, -0.012088, 0.029862, -0.003178, 0.042197, 0.015399, 3.85E-4, 0.03654, -0.017693, 0.02239, -0.02771, -0.02534, 0.050142, 0.036265, -0.008159, -0.00736, -0.00249, 0.009402, 0.001134, -0.021154, 0.003846, 0.009157, 0.019331, 0.008505, -0.006871, 0.03106, 0.019751, 0.012201, -0.019836, 4.65E-4, 0.013264, -0.017126, 0.016906, -0.017095, -0.016356, 0.005041, -0.017895, 0.003731, -0.008477, 0.01868, -0.015964, -0.013397, 0.021936, -0.008366, 0.043431, 0.005761, -0.034215, -0.028917, 0.016484, 0.002057, -0.034505, 0.006747, -0.034653, 0.005483, -0.027685, 0.016079, 0.032641, 0.030285, -0.001619, 0.006673, 0.003414, 0.010434, -5.31E-4, -0.00674, -0.011358, 0.007005, -0.024139, 0.007147, 0.013677, 0.013194, 0.062825, -0.008662, -0.006729, 0.022879, 0.014448, -0.021027, 0.033209, 0.034571, -0.026526, -0.008102, -0.021458, 0.021626, -0.032371, -0.04021, 0.012979, 0.058696, -0.01113, -0.05627, -0.027651, 0.010581, 1.89E-4, 0.031129, -0.003862, 0.030464, -0.014996, 0.031756, -0.013698, 0.012315, 0.03394, 0.005749, -0.046122, -0.017994, 0.026781, 0.006142, -0.005648, 0.046692, 0.016839, 0.010572, 0.002498, -0.018649, -0.024938, -0.030281, 0.015755, 0.021024, 0.025444, -0.00814, -0.009376, 0.023339, 0.031634, 0.013591, -0.031017, 0.019806, -0.00928, -6.73E-4, 0.029636, 0.014008, -0.011661, -0.014231, -0.016603, -0.005407, -0.040427, -0.04456, -0.011673, -0.031006, 0.015388, -0.031582, 0.001565, 0.007911, -0.026223, 0.012313, 0.017325, 0.008236, -0.018882, -0.02364, 0.025792, -0.022991, -0.014098, -0.029587, -0.016471, 0.012892, -0.026334, 0.006804, -0.014531, -0.01466, -0.004509, 0.051716, -0.023044, 0.009204, 0.006041, 0.017072, 0.015307, 0.023241, -0.005984, 0.011302, 0.010177, 0.025242, 0.064692, 0.037993, 0.039085, 0.00431, -0.016123, -0.031177, 0.03771, -0.052912, 0.003202, 0.018976, -0.047109, 0.030654, -0.001792, 0.004625, -0.033835, 0.012412, -0.008169, 0.006057, -0.014922, -0.012097, -0.027555, 0.014625, -0.012163, 0.046348, -0.017465, -0.007873, 2.0E-6, 0.013451, 0.001777, -0.032772, 0.002679, 0.02712, -0.005835, -0.018173, -0.032334, -0.004673, -0.051013, 0.003055, -0.00738, -0.003466, 0.009655, -0.013058, -0.001926, -0.027485, -0.003872, -0.013668, 0.01712, 7.81E-4, -0.012092, -0.020243, -0.023163, -8.67E-4, -0.008446, 0.005901, -0.025803, 0.022033, 9.68E-4, 0.0461, -0.02854, -0.013284, -0.010571, 0.018783, 8.0E-6, -0.013861, 0.012077, -0.029714, 0.057719, -0.018674, -0.001118, 0.00332, -0.02328, 0.046057, 0.034659, -0.033313, 0.031011, -0.036731, -0.016301, 0.038335, -0.021914, 0.016886, 0.022662, -0.056195, 0.01187, 0.002741, 0.023146, -0.008985, -0.017874, -0.044977, -0.004394, 0.003963, 0.022632, 0.017069, 0.013327, -0.029429, 0.010053, -0.026801, 0.023816, 0.021166, 0.007041, -0.001372, 0.001159, 0.012916, 0.024608, -0.008222, 0.014883, 0.00993, 0.034953, 0.04096, -0.007708, 0.002857, 0.029912, -0.019932, -0.012394, -0.045241, -0.019988, 0.008404, -0.011158, 0.018687, 0.003713, 0.030915, 0.006114, 0.008312, 0.015072, 0.002301, -0.008728, 0.014315, 0.012511, -0.036631, -0.021858, -0.006753, -0.033092, -0.02672], split_content="OpenSearch serves as an all-in-one platform used to develop commercial intelligent search services. It is built based on a large-scale distributed search engine platform developed by Alibaba. OpenSearch provides mid-end services for the core search business of Alibaba Group, including Taobao, Tmall, and Cainiao. Thanks to years of search experience in various industries and the capabilities of handling traffic peaks during Double 11, OpenSearch releases a set of service editions that offers high performance, efficiency, availability, and stability. The released service editions include LLM-Based Conversational Search Edition, Industry Algorithm Edition, High-performance Search Edition, Vector Search Edition, and Retrieval Engine Edition. This helps meet search requirements in a variety of industries. OpenSearch is a PaaS that simplifies the use of search technologies and lowers the technical threshold and costs. OpenSearch allows you to implement search features and fast iterations for your services at a low cost. This prevents search technologies from being your business bottleneck.", doc_id=001_1, doc_raw_id=001}}]
push result:{"code":200,"status":"OK"}
query embedding:0.056414,-0.022316,0.010131,0.005302,0.017147,0.012866,0.020635,0.002990,-0.011551,-0.017536,0.033513,0.008366,0.000743,0.082442,0.028011,0.017994,-0.003311,-0.016901,-0.003161,-0.065954,0.016879,-0.011615,0.007185,-0.018536,0.004095,0.018680,0.013143,0.000449,-0.012064,-0.026621,0.003594,-0.026498,-0.045380,-0.013837,0.020298,0.015480,-0.010647,0.035124,-0.036297,0.009420,-0.005497,0.026960,-0.002739,0.033723,-0.009811,-0.009803,0.023472,-0.029223,-0.031179,-0.007344,0.012104,0.017233,0.036242,0.003914,0.005541,-0.010390,-0.012137,-0.005124,0.044283,0.041862,0.006141,0.010111,0.047819,0.018967,-0.056115,-0.001064,-0.013286,-0.007137,-0.001297,0.009149,-0.019998,-0.021587,-0.005714,0.032587,-0.015143,0.037752,-0.005794,0.063205,0.000613,-0.001296,-0.063830,-0.006505,0.013590,-0.012934,0.004080,-0.002483,-0.001387,-0.039407,-0.016009,-0.014975,-0.016771,-0.002473,0.001599,-0.001538,0.007858,-0.002440,-0.005590,0.006705,-0.006388,0.005924,0.000481,-0.039477,-0.010844,0.025415,0.002841,0.009751,-0.000876,-0.032582,0.010386,-0.004858,0.013303,-0.044447,-0.017728,-0.005514,0.006261,-0.054879,0.000384,-0.014828,-0.018747,-0.002726,0.021045,-0.027046,0.014040,0.002742,0.037099,-0.050579,0.003681,0.045300,0.027011,-0.012032,0.015674,0.020459,-0.019364,-0.012965,0.010933,0.005469,-0.010584,-0.043218,-0.016830,-0.001939,0.012226,0.009255,0.002979,0.029354,-0.020233,-0.036744,-0.020275,-0.072750,-0.000006,0.012952,0.009265,-0.034606,-0.003879,-0.006647,0.016232,-0.017451,0.003329,0.024562,0.027625,-0.030067,-0.007579,0.019331,0.010164,0.010570,0.015492,0.010935,-0.029893,-0.018883,-0.001805,0.002515,0.007696,0.014985,-0.004947,-0.010700,-0.029992,0.056768,0.023832,0.004837,0.034197,0.003098,0.022153,0.029545,0.006824,0.007725,-0.005974,-0.021227,0.036555,0.008661,-0.017073,0.006449,-0.005281,-0.000009,-0.035119,-0.068549,0.039560,0.009352,0.020200,-0.025028,-0.004393,0.023395,-0.018949,-0.039619,-0.004969,0.001545,-0.003732,0.006838,-0.012485,-0.020832,-0.011410,-0.024313,0.002755,-0.010540,0.028533,0.039133,-0.051257,0.044938,0.017214,0.008646,-0.012567,-0.003606,-0.007287,0.009906,-0.006935,0.003865,-0.002348,0.026678,0.004607,-0.020790,-0.043009,-0.000327,0.010028,-0.023863,0.057944,-0.022543,-0.004821,-0.003625,0.034881,-0.012494,-0.077665,-0.017705,0.008537,0.023035,0.005589,0.019433,0.001879,-0.009554,0.022455,0.024711,-0.008676,0.012027,0.002025,-0.046425,0.004272,-0.004882,-0.015138,0.040661,0.050636,0.007342,0.016249,0.014417,-0.034462,-0.039542,0.016020,0.043569,0.019833,0.044731,-0.009854,0.002557,-0.003104,0.021545,-0.009434,0.021529,-0.010036,0.001891,-0.002385,-0.035879,0.021101,0.028946,-0.009606,0.012238,-0.005121,0.004048,-0.016160,0.039409,-0.000455,0.009960,0.004092,-0.002574,0.023729,-0.011896,0.101544,-0.011129,-0.016202,0.040401,0.045427,0.057686,0.015649,0.018926,0.015353,0.001641,-0.005969,-0.005367,0.008197,-0.002417,0.032149,0.003175,-0.018295,-0.009483,0.002329,0.060129,0.011694,0.010182,-0.023640,0.003411,-0.023881,0.034453,-0.059110,0.007735,0.021399,0.035113,0.029196,0.004721,0.049749,-0.026285,-0.008085,-0.004756,-0.020908,0.050579,0.033053,-0.004329,-0.033592,0.014605,-0.041136,0.002120,0.001835,-0.016924,0.002013,-0.010761,0.020168,0.039781,0.020910,0.043144,-0.006069,-0.039931,0.034409,0.026019,-0.033261,-0.030526,0.017666,-0.037568,0.035118,0.075688,0.007055,-0.001498,-0.007833,0.026573,0.010812,-0.037451,0.007417,0.013574,0.002600,-0.025040,0.021554,-0.006005,-0.013786,0.023595,-0.035621,0.017913,-0.031779,0.022115,-0.003499,0.017381,0.012881,-0.010001,0.022360,-0.003398,0.037157,-0.026128,-0.001159,0.018984,-0.015257,0.002115,0.030234,-0.027735,0.054515,-0.014552,0.014337,-0.062509,0.026009,-0.029246,-0.032823,0.012333,0.034109,0.019414,-0.000642,0.002427,0.019854,-0.034851,0.015230,-0.007467,0.014720,-0.022676,-0.066369,0.031316,-0.011283,-0.031672,-0.039142,0.042663,0.005632,-0.005773,-0.025250,0.002286,0.001514,0.002989,0.023804,0.012126,0.046210,0.024503,-0.026901,-0.025443,0.038415,0.034839,-0.001623,-0.001972,-0.012907,0.077373,0.013347,-0.010903,0.042860,-0.011905,-0.009691,0.018914,0.033523,-0.015503,0.024484,-0.006359,0.014174,-0.006934,-0.018370,0.012027,-0.021828,-0.025323,-0.048590,0.033485,-0.032729,-0.016852,-0.014580,-0.037440,-0.007198,0.004435,-0.016221,0.027661,-0.011975,0.041296,-0.017777,0.007021,0.004975,-0.051503,-0.006421,-0.019442,-0.002825,0.007377,0.009236,0.035616,-0.045329,0.003783,-0.034508,0.017475,0.005612,0.050812,0.008076,0.013873,-0.006339,-0.005363,0.005439,-0.042016,0.002138,-0.003302,0.005577,-0.043244,-0.018215,0.041534,0.003174,-0.026823,-0.014094,-0.006401,-0.024882,-0.000372,-0.037094,-0.008449,0.010204,0.001191,0.006225,-0.004290,-0.023924,-0.002398,-0.005635,0.009871,0.003443,-0.000612,0.014165,-0.016389,-0.006608,-0.025941,0.007377,0.021824,0.010515,-0.009839,-0.001087,0.000931,-0.016652,0.008564,-0.012521,-0.028307,-0.024560,0.014647,0.014058,0.002535,-0.035699,0.009433,-0.031077,-0.014503,-0.035961,0.008623,-0.011070,-0.010604,-0.000749,0.026939,-0.025372,0.038625,-0.017447,0.030448,0.072105,-0.014361,0.012055,0.003152,0.014429,-0.003019,0.028000,0.000293,0.027132,-0.026498,-0.004787,0.026652,0.002865,0.007397,-0.035148,0.043478,-0.009212,0.004005,0.045657,0.060512,-0.039452,-0.011903,0.015732,-0.022128,-0.003608,0.001893,0.049369,-0.015386,0.039117,0.017738,0.049663,-0.039481,0.001821,-0.009087,-0.002202,0.012776,0.001872,-0.060270,0.025902,0.038332,-0.001634,-0.065210,-0.015650,0.050419,-0.009900,0.025262,0.023236,-0.039261,-0.008812,0.014168,-0.028503,-0.009921,0.005163,-0.017227,0.044998,-0.038580,0.012103,0.012257,0.051808,0.019379,0.010934,0.000007,-0.040507,0.012967,0.013422,-0.043233,-0.032277,-0.016145,-0.009934,0.036287,-0.020833,-0.025390,-0.015235,-0.004227,0.042955,-0.026373,0.022806,-0.021462,0.030587,-0.030411,0.009063,-0.003637,0.026494,0.010314,-0.032345,-0.002896,0.002777,-0.010535,0.013087,0.013035,-0.008954,0.013579,-0.001971,0.015611,-0.011660,-0.001014,-0.039715,0.022808,0.012120,0.026776,-0.001558,-0.012755,-0.009761,0.013814,-0.071921,0.005575,0.009357,-0.018835,0.032419,0.060333,0.026351,0.044691,0.021370,0.030207,-0.020009,0.023998,0.003933,-0.003564,-0.007542,0.012494,0.037696,0.001524,0.020976,0.024267,-0.026777,-0.008941,-0.018012,0.013136,0.045717,0.029111,0.014842,-0.018505,0.044553,0.019891,0.008434,-0.012133,-0.003874,-0.001002,0.025255,-0.016752,0.030490,-0.003009,0.030861,0.001793,0.009848,0.042665,0.025918,0.051759,-0.008703,0.010838,0.013589,-0.038232,0.031705,-0.026165,0.018928,0.011280,0.006128,0.026505,0.029964,-0.022782,0.001586,0.009661,-0.008625,0.038399,0.050307,0.006385,-0.008639,0.008715,-0.047078,0.056494,0.012792,-0.025394,0.002256,0.016483,-0.004856,0.048362,-0.018507,0.011453,-0.004557,-0.034926,-0.002290,-0.012590,-0.002497,-0.037693,-0.003698,0.018974,-0.021788,0.005213,0.005136,-0.022095,-0.004885,0.007043,0.013902,-0.012453,-0.013030,0.048380,-0.001446,0.060132,-0.015469,-0.004802,-0.024091,0.003056,0.016866,-0.007176,-0.003629,-0.035704,-0.058316,0.020895,0.046419,-0.016380,-0.005262,-0.024991,0.007211,-0.005381,-0.017546,0.000786,0.006526,0.044135,-0.015458,-0.002397,0.015069,0.051929,-0.007940,-0.015496,0.021827,-0.012922,0.008675,0.020078,0.018980,0.054204,-0.013894,-0.010810,-0.011302,0.005320,-0.009923,0.038613,-0.001531,0.008941,-0.031683,0.043636,-0.010787,-0.010254,-0.061047,0.009008,0.013722,-0.024143,0.011272,-0.012337,-0.036002,-0.005620,-0.015966,-0.004811,-0.038225,0.000928,0.016605,0.014955,-0.012756,0.010297,0.019167,-0.004193,0.043000,0.024417,-0.001622,-0.050787,-0.004301,0.014013,0.005877,0.032383,-0.049128,-0.002777,-0.012473,0.023381,0.019350,0.017748,0.018918,-0.018837,0.024197,-0.036120,-0.006683,-0.010802,0.039652,-0.027106,0.000310,-0.024387,0.010470,-0.018623,0.011144,0.011837,-0.002355,0.007599,0.026650,0.007215,0.011312,-0.039711,0.019814,-0.017278,-0.001728,-0.008562,0.014516,0.014363,0.021273,-0.004885,-0.010890,-0.034907,0.025327,-0.000571,-0.003789,0.025277,-0.034580,0.001999,-0.002204,0.020039,0.040515,0.018865,0.017475,0.005331,0.039123,-0.015185,0.091900,-0.026621,0.002298,-0.048162,-0.005239,-0.027341,0.010493,0.007560,0.013454,-0.020133,0.018674,0.003465,-0.021251,0.006446,0.066190,-0.003377,-0.014985,0.034635,-0.057248,-0.004589,0.007639,-0.012517,0.006863,-0.043206,-0.021137,-0.009311,-0.011606,-0.009073,-0.018450,-0.004489,0.024455,-0.015685,-0.026326,0.034314,-0.011390,0.004216,-0.020272,0.001672,-0.018194,0.011200,-0.018577,-0.018944,0.037370,0.015705,0.049666,0.024994,0.036623,-0.017275,-0.050713,0.006012,0.021840,0.011133,-0.016204,-0.047365,0.045480,-0.037565,-0.019660,-0.006968,0.021906,0.016662,-0.010881,0.018273,-0.084792,-0.023017,-0.022128,-0.022654,0.000015,0.003079,0.002377,-0.002570,-0.043367,0.006898,0.047142,0.020929,0.010926,-0.058179,-0.041694,-0.006822,-0.043664,0.022643,-0.006073,0.010481,-0.001708,0.005289,-0.009244,-0.039569,-0.022814,-0.022706,0.012958,0.018576,0.053556,-0.017811,-0.002953,-0.037453,-0.003023,0.054998,0.023619,-0.001924,-0.034342,0.015073,0.039958,-0.020397,-0.023064,0.050725,0.015436,-0.036224,0.052874,0.014529,-0.014503,0.045360,-0.009050,-0.019765,0.035963,-0.049443,0.007713,-0.007461,0.006310,-0.022825,0.004672,0.014651,-0.005738,-0.002839,0.002599,0.022924,0.012885,0.007841,0.048654,0.025134,-0.037288,-0.022480,-0.012688,-0.004621,-0.009403,-0.029212,0.004282,0.042978,-0.000064,0.030704,0.008601,-0.006551,-0.018394,0.022131,-0.002068,-0.030728,-0.036263,-0.011369,-0.065502,-0.026604,0.053056,-0.005134,0.090302,-0.004840,-0.047780,-0.030231,0.007658,-0.004408,-0.015206,0.014079,0.011548,0.045551,0.005997,-0.004857,0.028650,0.045506,0.018816,0.029553,-0.009813,0.000459,-0.028946,-0.031380,0.006534,-0.010669,-0.003883,-0.034548,0.021343,-0.043680,0.053343,0.014542,0.024159,-0.030095,0.001598,0.025863,-0.030868,-0.014504,0.029020,0.013226,0.002811,-0.017719,0.030849,0.025285,-0.003764,0.040606,0.022533,-0.020800,0.019325,-0.010530,-0.023114,-0.004647,-0.008032,-0.018013,0.003747,0.000095,0.042245,-0.011412,-0.020414,0.024755,-0.000011,-0.016102,-0.043408,-0.008556,-0.005724,0.005053,-0.009304,0.008081,-0.009685,-0.022866,0.031255,-0.007833,-0.044773,0.028254,-0.034656,0.010324,-0.007725,-0.017131,-0.019809,0.036281,-0.028099,-0.017070,0.016790,-0.005744,-0.002376,-0.022375,-0.005036,0.026104,0.012219,0.008475,0.032349,-0.008399,-0.010795,-0.048399,-0.014660,-0.001524,-0.054760,-0.025386,0.009328,0.054088,0.022401,-0.025404,-0.027992,0.037997,-0.007153,-0.027064,0.002303,-0.008901,0.004438,0.028964,-0.044494,0.003257,-0.013212,-0.023506,-0.030195,0.047260,0.035446,-0.062135,0.006550,0.054400,-0.026180,0.003170,-0.014556,-0.018989,-0.027066,0.015120,0.024402,-0.065239,0.024459,0.014314,0.009057,-0.024987,0.010149,0.040140,0.012070,0.002698,-0.048382,-0.016088,-0.009875,0.002162,0.007407,-0.003565,-0.041569,-0.021941,0.022320,0.020402,-0.010699,0.020014,-0.035969,-0.026956,-0.013653,-0.012248,-0.013705,0.044009,0.011142,0.044179,-0.006841,0.002796,-0.029544,0.016029,-0.015314,-0.022040,0.023452,-0.014321,0.045724,0.019131,-0.012522,-0.004678,-0.017098,-0.022647,-0.018042,-0.009094,0.013757,0.006729,-0.012565,-0.035570,-0.018923,-0.006997,0.051006,-0.012781,0.030854,0.050992,-0.023895,-0.016779,0.034738,-0.017413,0.012949,0.029824,0.004762,0.005902,-0.031618,0.031500,-0.018267,0.004379,-0.034235,-0.033756,-0.004369,0.041699,-0.000128,0.004471,-0.038038,0.035128,0.001303,0.007140,-0.039458,-0.029305,0.036118,0.032768,0.022923,0.008465,0.035229,-0.018814,-0.014560,0.006051,0.050930,0.040923,-0.000600,0.004289,-0.001124,0.011411,-0.010637,0.020789,-0.002318,0.038846,0.017466,-0.052247,0.012864,-0.047683,-0.015262,0.021041,0.026869,-0.032380,-0.033972,-0.012369,0.009718,-0.010434,0.002008,0.011087,-0.036368,-0.001307,-0.007648,0.025412,0.024314,-0.008488,0.053660,0.024269,0.025560,0.016325,0.002418,0.027542,0.005677,0.055155,-0.024508,-0.027172,0.050390,0.039382,-0.045324,-0.018971,-0.008195,0.011663,0.011135,-0.025654,0.021297,0.010868,-0.001564,0.010492,-0.013145,0.027789,0.005076,0.014854,-0.027004,0.000129,-0.001436,-0.010044,0.022124,-0.015521,-0.012913,-0.022861,-0.047132,0.003756,-0.005325,-0.000056,0.000356,-0.015808,0.024618,0.015165,0.014836,0.041445,-0.044601,-0.046704,-0.002768,0.036922,-0.026348,0.024147,-0.029446,0.012147,-0.017981,0.000281,0.019933,0.050839,0.013339,-0.000942,-0.013219,-0.027489,-0.003121,-0.022713,0.005771,0.003636,-0.008385,0.006798,-0.044468,-0.016704,0.070068,-0.000458,-0.007084,0.023144,-0.005515,-0.022120,0.000941,0.054883,-0.037764,-0.017012,-0.020505,0.009845,-0.023915,-0.028664,0.013806,0.025748,-0.009296,-0.038504,-0.015317,-0.032609,-0.007634,0.019495,0.002448,0.036574,-0.032339,0.022682,-0.002927,0.028655,0.020333,-0.016752,-0.020178,-0.041445,0.012708,-0.012754,-0.008005,0.037580,-0.006056,0.012696,0.016226,0.005755,-0.041488,-0.032477,-0.001287,0.020823,0.006258,0.024472,0.026413,0.023700,0.029342,0.026990,-0.015639,0.007514,-0.033821,0.006598,0.033791,-0.008101,-0.016982,-0.037009,-0.007120,0.014644,-0.026902,-0.039564,-0.028785,-0.033094,0.000106,-0.036765,-0.013302,0.007783,-0.033605,0.021073,0.006099,0.029068,-0.032784,-0.023314,0.023828,-0.002140,-0.029919,-0.017725,-0.023187,0.024532,-0.030172,-0.005606,0.001788,-0.031396,0.013642,0.051873,-0.009818,-0.002885,-0.003515,0.006236,-0.007802,0.038108,-0.001756,-0.001983,-0.003068,0.008774,0.048883,0.025190,0.045064,0.004507,-0.033063,-0.021692,0.036811,-0.055075,-0.020193,-0.020835,-0.028774,-0.015212,-0.017115,-0.001734,-0.027281,-0.020676,0.032774,0.022791,0.006763,-0.013917,-0.010016,0.028462,-0.018337,0.023933,-0.007074,-0.018967,0.000001,0.029341,0.018610,-0.013384,-0.004266,0.034975,-0.026915,-0.022792,-0.034603,-0.031045,-0.050301,0.008851,0.003076,0.000764,0.000843,-0.010808,-0.007913,-0.034020,-0.010674,-0.004492,0.030331,0.007217,-0.056526,-0.010629,-0.028215,-0.010063,-0.019949,0.006318,-0.009223,0.040780,-0.011772,0.047667,-0.023975,-0.017880,-0.015113,0.039050,-0.010306,-0.007603,-0.005349,-0.018237,0.058448,-0.008180,-0.026510,0.000191,-0.052452,0.044224,0.018285,-0.023087,0.053428,-0.048873,-0.018927,0.031849,-0.023688,0.040098,0.015770,-0.092864,0.018008,0.000501,-0.004457,-0.029679,-0.005785,-0.016901,-0.002253,-0.006120,0.008848,0.041262,0.009419,-0.021460,0.018672,-0.035401,0.019911,0.028066,-0.013042,-0.012417,-0.024057,0.020263,0.001587,-0.026532,0.023359,0.025626,0.028113,0.060120,-0.015133,0.008737,0.016548,-0.024917,-0.031329,-0.031300,-0.025702,0.012015,-0.012953,0.026354,-0.000311,0.020083,-0.004348,-0.003201,0.031051,0.007714,-0.009949,0.018207,0.009983,-0.020501,-0.038921,-0.012990,-0.040988,-0.026159
search result:{"result":{"searchtime":0.07891,"numHits":1,"totalHits":1,"coveredPercent":100.0,"items":[{"fields":{"doc_id":"001_1","doc_raw_id":"001","content":"","split_content":"OpenSearch serves as an all-in-one platform used to develop commercial intelligent search services. It is built based on a large-scale distributed search engine platform developed by Alibaba. OpenSearch provides mid-end services for the core search business of Alibaba Group, including Taobao, Tmall, and Cainiao. Thanks to years of search experience in various industries and the capabilities of handling traffic peaks during Double 11, OpenSearch releases a set of service editions that offers high performance, efficiency, availability, and stability. The released service editions include LLM-Based Conversational Search Edition, Industry Algorithm Edition, High-performance Search Edition, Vector Search Edition, and Retrieval Engine Edition. This helps meet search requirements in a variety of industries. OpenSearch is a PaaS that simplifies the use of search technologies and lowers the technical threshold and costs. OpenSearch allows you to implement search features and fast iterations for your services at a low cost. This prevents search technologies from being your business bottleneck.","split_content_embedding":"0.058944\t0.016041\t-0.022979\t-0.006843\t-0.011453\t-0.005364\t0.012683\t0.003753\t-0.010473\t-0.035882\t0.022777\t0.013684\t0.019789\t0.059289\t0.032136\t0.013853\t0.005775\t-0.023095\t-0.013779\t-0.048795\t0.013637\t0.003875\t0.027101\t-0.012953\t-0.000451\t0.015116\t0.007961\t0.013838\t-0.024333\t-0.015643\t0.012063\t-0.033473\t-0.027398\t-0.012608\t0.008691\t0.006517\t-0.00905\t0.034951\t-0.017741\t0.005856\t-0.025882\t0.020528\t0.01782\t0.023583\t-0.020903\t-0.01193\t-0.001455\t-0.022176\t-0.027808\t-0.012451\t-0.000285\t0.016633\t0.031935\t0.005498\t0.004535\t-0.024839\t-0.007486\t-0.001793\t0.037985\t0.037073\t-0.003052\t0.005487\t0.058171\t0.002551\t-0.04956\t0.004262\t0.000998\t-0.011665\t0.011154\t0.007822\t-0.006605\t0.012623\t-0.005449\t0.036748\t0.005853\t0.032359\t-0.010664\t0.060133\t-0.029952\t-0.018085\t-0.039066\t-0.023734\t-0.008935\t-0.030978\t0.012594\t-0.009963\t-0.003284\t-0.052731\t-0.030818\t-0.024357\t-0.018427\t-0.00774\t0.00667\t-0.014451\t-0.000664\t0.008632\t0.000559\t0.012988\t0.004708\t-0.008997\t-0.022217\t-0.033333\t-0.002771\t0.01336\t0.023618\t0.020576\t0.03984\t-0.041438\t0.009526\t0.005578\t-0.008668\t-0.040868\t-0.005239\t-0.006126\t0.007439\t-0.010292\t-0.014757\t-0.001831\t0.005164\t-0.004219\t0.01169\t-0.003136\t0.027368\t-0.004122\t0.024626\t-0.046067\t-0.001822\t0.030602\t3.5e-05\t-0.008202\t0.014946\t0.025007\t-0.019733\t-0.013456\t0.013455\t0.009003\t-0.010062\t0.003313\t-0.036908\t0.002963\t-0.00549\t-0.004916\t-0.00826\t0.028805\t-0.036924\t-0.035734\t-0.018335\t-0.040179\t-0.0007\t-0.010041\t0.035285\t-0.03765\t-0.013899\t-0.0051\t0.009535\t-0.020877\t0.003292\t0.026104\t0.012935\t-0.019031\t-0.015493\t0.006942\t-0.010082\t0.007186\t0.005751\t0.009706\t-0.001548\t-0.004717\t0.001332\t0.00546\t-0.000254\t0.006103\t-0.006998\t-0.015627\t-0.003294\t0.036717\t0.023722\t0.00625\t0.031267\t0.028969\t0.020644\t0.02385\t-0.000235\t-0.010401\t-0.028416\t-0.010289\t0.01398\t0.00031\t0.001578\t-0.004772\t0.015677\t-0.011431\t-0.017962\t-0.059418\t0.053901\t-0.005269\t0.01372\t-0.0092\t0.024597\t0.030213\t-0.006\t-0.051636\t-0.02008\t0.000582\t-0.017588\t0.014337\t-0.00365\t-0.038575\t0.001348\t-0.011479\t-0.030456\t-0.004576\t0.02702\t0.020403\t-0.030577\t0.000924\t0.016515\t0.0217\t-0.019656\t-0.000553\t-0.008552\t0.021116\t0.004622\t0.01668\t-0.00547\t0.026639\t0.017934\t-0.016988\t-0.045637\t0.018315\t0.008231\t0.000986\t0.07672\t-0.039596\t0.039906\t0.009762\t0.033039\t-0.015902\t-0.051254\t-0.012486\t-0.035336\t0.030111\t0.00291\t0.012114\t0.013676\t-0.015705\t0.025196\t0.000945\t3.2e-05\t0.022682\t0.009286\t-0.058777\t0.013028\t0.007378\t0.00624\t0.036437\t0.022709\t-0.000606\t0.017103\t-0.008234\t-0.024911\t-0.031984\t-0.005921\t-0.010479\t0.020574\t0.02876\t0.010287\t0.006815\t-0.010195\t0.000891\t-0.012835\t0.013409\t-0.011244\t0.010466\t-0.002619\t-0.009653\t0.043739\t0.029876\t-0.017749\t0.001653\t-0.007074\t0.01195\t-0.018465\t0.019452\t0.009606\t0.008071\t0.022715\t-0.00698\t-0.012311\t-0.002198\t0.077244\t-0.026081\t-0.009663\t0.032682\t0.028942\t0.032478\t0.016002\t0.034459\t0.026564\t0.036447\t0.001212\t-0.015135\t-0.000262\t0.013329\t0.007557\t0.013665\t-0.028317\t-0.006802\t0.001975\t0.047904\t0.013738\t0.004747\t-0.016571\t-0.005546\t0.001384\t0.042958\t-0.058476\t0.000407\t0.020693\t0.020031\t0.019088\t-0.001783\t0.026118\t-0.010239\t-0.0114\t-0.015466\t-0.005209\t0.056623\t0.034536\t0.024929\t-0.041197\t0.005566\t-0.035302\t0.015315\t-0.01848\t-0.024686\t0.012943\t-0.013503\t0.031096\t0.02934\t0.034304\t0.033843\t-0.00623\t-0.05445\t0.036966\t0.008684\t-0.047479\t-0.027772\t-0.019249\t-0.001877\t0.041575\t0.108421\t0.025857\t0.021436\t-0.016784\t0.027012\t0.002843\t-0.015071\t-0.015743\t0.020331\t0.000903\t0.00728\t0.024153\t0.001139\t-0.000152\t0.001794\t-0.022988\t0.006714\t-0.019876\t0.036943\t-0.01226\t0.058072\t-0.002742\t-0.008995\t0.013568\t-3e-06\t0.013275\t0.010664\t0.013439\t0.032533\t-0.023252\t0.006897\t-0.015789\t-0.018147\t0.051673\t-0.004469\t0.003458\t-0.06019\t-0.016511\t-0.009987\t-0.025745\t-0.006735\t0.020604\t0.000736\t0.007278\t-0.014283\t-0.010318\t-0.024091\t0.01637\t0.008874\t0.007203\t-0.00976\t-0.070398\t-0.004111\t-0.019276\t-0.025142\t-0.035966\t0.049473\t-0.001262\t-0.007618\t-0.030426\t-0.002003\t-0.016901\t-0.016566\t0.011555\t0.03533\t0.041299\t0.015202\t-0.013583\t0.003022\t0.04638\t-0.024215\t0.002514\t0.017591\t0.021717\t0.062761\t-0.019273\t0.000746\t0.037473\t0.008214\t-0.025372\t-0.0188\t0.0033\t0.026028\t0.028216\t0.003292\t0.031008\t0.002166\t-0.016555\t0.02348\t-0.026133\t-0.016744\t-0.009429\t0.001149\t-0.032788\t-0.038672\t-0.019281\t-0.017241\t-0.015163\t-0.012736\t-0.232926\t0.012288\t0.000272\t0.024807\t-0.019443\t-0.009439\t-0.012627\t-0.041117\t-0.018058\t0.000263\t0.006151\t0.014347\t0.027431\t0.037084\t-0.015275\t-0.010482\t-0.028173\t-0.010884\t0.012272\t0.026355\t0.005604\t0.002275\t-0.003145\t-0.008207\t-0.006014\t-0.042401\t0.012313\t-0.001519\t0.002943\t-0.041678\t-0.018343\t0.010107\t0.004622\t-0.015459\t-0.015083\t0.013414\t0.00047\t0.003985\t-0.027847\t0.000734\t0.012179\t0.002649\t0.016468\t-0.002922\t-0.019698\t0.000898\t0.003615\t-0.010387\t-0.025029\t-0.04533\t0.053376\t-0.015829\t-0.027444\t-0.005744\t-0.00775\t0.025253\t-0.005146\t-0.005949\t-0.009604\t-0.00457\t0.003609\t-0.001431\t-0.000285\t-0.066066\t-0.02467\t0.008417\t0.025607\t-0.00647\t-0.020497\t0.003962\t-0.003923\t-0.020909\t-0.035671\t0.000501\t-0.029121\t0.011058\t-0.003056\t0.028272\t0.005947\t0.010732\t-0.026431\t0.030766\t0.040207\t-0.012959\t0.007407\t0.005184\t0.023602\t-0.003974\t-0.011604\t-0.016104\t0.025625\t-0.015911\t-0.012558\t0.028491\t-0.005471\t0.023728\t-0.015681\t0.018293\t-0.027668\t0.018082\t0.010058\t0.021446\t-0.057776\t-0.013246\t0.028383\t-0.014394\t0.018649\t-0.011509\t0.029067\t-0.000697\t0.041417\t0.014481\t0.034178\t-0.031103\t-0.015341\t0.007939\t-0.026275\t0.001882\t0.032737\t-0.040242\t0.029016\t0.035044\t-0.013236\t-0.05249\t-0.006897\t0.044281\t-0.009305\t0.020164\t0.021243\t-0.034081\t-0.010894\t0.003634\t-0.044416\t-0.017559\t0.027155\t-0.018531\t0.022965\t-0.04836\t0.008937\t0.010912\t0.036382\t0.015889\t-0.001813\t-7e-06\t-0.015349\t0.012174\t0.018061\t-0.027353\t-0.032039\t-0.010001\t0.005769\t0.034046\t-0.007467\t-0.021028\t-0.023586\t0.002104\t0.022797\t-0.006151\t0.010181\t-0.012785\t0.009996\t-0.009342\t-0.016487\t0.022159\t0.031559\t0.007423\t-0.007615\t-0.031414\t0.007909\t0.002282\t0.040214\t0.019681\t-0.00651\t0.025835\t0.032997\t0.014599\t-0.003558\t0.00791\t-0.048382\t0.021192\t-0.00017\t0.084858\t-0.017622\t0.015057\t-0.015039\t-0.029091\t-0.062443\t-0.003653\t0.020595\t-0.012483\t0.023215\t0.071216\t0.004772\t0.029568\t0.00853\t0.039306\t-0.006601\t0.010798\t0.009222\t-0.023677\t-0.01844\t0.001022\t0.021633\t-0.026131\t-0.026464\t0.027015\t-0.02931\t0.005696\t-0.008796\t0.011726\t0.020735\t0.014511\t0.017494\t-0.021458\t0.022514\t0.037438\t0.014769\t0.004284\t0.00063\t-0.01156\t0.006499\t-0.00825\t0.017817\t-0.028769\t0.022045\t0.01972\t0.007334\t0.008717\t0.015892\t0.061018\t-0.005743\t0.017947\t0.003449\t-0.017587\t0.005602\t-0.000786\t-0.003356\t0.00396\t0.006705\t0.023985\t0.008339\t0.00571\t-0.007296\t0.027172\t0.009424\t0.017042\t0.054527\t0.013545\t0.02625\t-0.009377\t-0.039954\t0.046764\t0.026242\t-0.021726\t0.007405\t0.02612\t-0.018437\t0.043712\t-0.009306\t0.028782\t-0.007957\t-0.03323\t0.021192\t0.004733\t-0.019818\t-0.037745\t-0.020586\t0.006497\t-0.030998\t-0.008631\t0.025291\t-0.040003\t0.008166\t0.012221\t-0.004829\t-0.014536\t-0.023395\t0.04371\t0.017315\t0.047018\t-0.014828\t-0.004538\t-0.000804\t0.020266\t0.047262\t-0.011388\t-0.013702\t-0.029922\t-0.034573\t-0.023005\t0.054309\t-0.031499\t-0.010228\t-0.024959\t0.029076\t-0.027788\t-0.022067\t0.03213\t0.008417\t0.04197\t-0.024841\t-0.000476\t0.039601\t-0.001732\t-0.012076\t-0.018452\t-0.000596\t-0.001436\t0.00294\t0.01029\t0.019938\t0.031889\t0.019207\t0.010139\t-0.018392\t-0.002966\t0.004272\t0.037334\t0.001428\t-0.001025\t-0.028176\t0.031609\t-0.008596\t-0.002416\t0.078718\t0.024388\t0.00215\t0.007059\t-0.011778\t-0.000761\t-0.016378\t0.00449\t-0.004502\t-0.00552\t-0.014055\t-0.007021\t0.023622\t0.023571\t-0.01884\t-0.005508\t0.004186\t-0.013665\t0.009347\t0.009071\t-0.031999\t-0.049258\t-0.00064\t0.010828\t-0.007614\t0.01246\t-0.031687\t-0.009271\t0.011002\t0.03541\t0.003221\t0.031121\t0.025826\t-0.003049\t0.010242\t-0.027914\t-0.005464\t-0.002642\t0.025418\t-0.000142\t-0.000724\t-0.034004\t0.001346\t-0.027193\t0.046669\t-0.020482\t0.002774\t0.015443\t-0.005945\t-0.013043\t0.006392\t-0.028343\t0.023979\t-0.02305\t0.027387\t-0.009677\t-0.002377\t0.01574\t0.005365\t-0.020158\t-0.004276\t-0.010488\t0.003381\t0.006904\t0.0127\t0.014227\t-0.024879\t0.021459\t-0.019387\t0.014229\t0.033986\t0.05056\t0.002102\t-0.008133\t0.011356\t-0.002189\t0.056533\t-0.03012\t0.013971\t-0.031195\t0.01092\t-0.003505\t0.004371\t0.00144\t-0.007147\t-0.017118\t0.009156\t0.028171\t-0.037069\t0.032282\t0.013392\t0.001464\t0.004099\t0.032574\t-0.037686\t0.011324\t0.008729\t-0.022222\t0.026549\t-0.032615\t-0.013741\t-0.012993\t-0.003333\t0.007118\t0.012893\t-0.038559\t0.015136\t-0.013635\t0.010838\t0.038146\t-0.007165\t-0.008727\t-0.013066\t0.00999\t0.018753\t0.036606\t0.009816\t-0.011227\t0.032639\t0.006945\t0.026627\t0.023046\t0.012916\t-0.026769\t-0.04119\t0.013665\t0.025341\t-0.005035\t-0.013063\t-0.029744\t0.045071\t-0.016412\t-0.002362\t-0.007768\t0.009105\t0.003848\t-0.004606\t0.005059\t-0.079461\t0.006763\t-0.008734\t-0.035932\t-0.022069\t0.02185\t-0.007496\t-0.018475\t-0.046943\t-0.014248\t0.04045\t0.011916\t0.003646\t-0.054256\t-0.01801\t-0.020331\t-0.028947\t0.0177\t-0.008071\t0.019939\t0.007839\t0.005601\t-0.015412\t-0.037996\t-0.031772\t-0.018614\t-0.000257\t0.01864\t0.029622\t-0.004232\t0.07818\t-0.018435\t0.007394\t0.048959\t0.029674\t-0.011449\t-0.017009\t0.00825\t0.031218\t0.041313\t-0.031124\t0.040128\t0.013629\t-0.008206\t0.04099\t-0.006748\t0.022326\t0.028284\t-0.013805\t-0.012407\t0.008298\t-0.057119\t0.013245\t-0.014545\t0.000368\t-0.013783\t-0.004973\t0.011253\t-0.025476\t-0.002864\t0.015459\t0.028335\t0.016063\t-0.012477\t0.02353\t0.021093\t-0.050562\t-0.021871\t-0.001153\t-0.003376\t-0.00747\t-0.022303\t-0.00379\t0.027838\t-0.004322\t0.026116\t0.004042\t0.005046\t0.003391\t0.021602\t0.017936\t-0.011424\t-0.042226\t-0.020899\t-0.053995\t0.006907\t0.040415\t0.00252\t0.060698\t0.016931\t-0.046294\t-0.025321\t0.014166\t-0.002419\t0.005036\t0.031215\t0.004616\t0.037337\t0.009998\t-0.0087\t0.002463\t0.024029\t0.006174\t0.0447\t-0.010568\t-0.011667\t-0.043795\t-0.022761\t0.030816\t-0.002601\t-0.027664\t-0.034978\t0.034525\t-0.061245\t0.022145\t-0.007397\t0.010004\t-0.046855\t0.011633\t0.008962\t0.044551\t-0.006484\t-0.005631\t0.0457\t-0.126556\t0.009459\t0.010258\t0.005919\t-0.080068\t0.020376\t0.032901\t0.04375\t0.001311\t-0.004869\t-0.006052\t0.009172\t0.001228\t0.001387\t0.00874\t-0.006041\t0.026674\t0.006371\t-0.011788\t0.00385\t0.008447\t-0.021379\t-0.084556\t0.010458\t-0.008227\t0.00399\t-0.02357\t0.035783\t0.066321\t-0.026925\t0.027861\t-0.001323\t-0.0319\t0.034412\t-0.040019\t0.004691\t0.006261\t-0.026191\t0.001055\t0.023727\t-0.013352\t0.00261\t-0.018447\t0.000692\t-0.000961\t-0.017404\t-0.009285\t0.023182\t-0.007817\t-0.00244\t-0.009466\t0.025555\t0.00175\t-0.020912\t-0.010417\t0.019965\t-0.034412\t-0.039644\t0.024089\t0.041611\t0.032324\t-0.011904\t-0.031645\t0.019306\t-0.010829\t-0.030661\t0.013613\t-0.008095\t-0.006501\t-0.003643\t-0.021349\t-0.011975\t-0.002582\t-0.008047\t-0.032975\t0.039012\t0.01036\t-0.03837\t0.00282\t0.055957\t-0.032983\t-0.001298\t-0.041106\t-0.019841\t-0.015772\t-0.014599\t0.011708\t-0.033495\t0.004259\t0.036991\t-0.002957\t-0.014828\t-0.004173\t0.040672\t0.008419\t-0.000364\t-0.042463\t-0.02088\t-0.013524\t0.004617\t0.00452\t0.003664\t-0.033043\t-0.031192\t0.020308\t-0.001591\t-0.041029\t-0.021538\t-0.052107\t-0.024194\t-0.011382\t-0.001033\t-0.013883\t0.010258\t0.007556\t0.016436\t0.003164\t-0.005684\t-0.040936\t0.011409\t-0.020517\t-0.023504\t0.025928\t-0.028263\t0.026495\t0.042317\t0.000107\t0.24566\t0.036358\t-0.022556\t-0.030215\t-0.011091\t0.004053\t-0.001412\t-0.005913\t-0.030847\t-0.021214\t0.007775\t0.050385\t0.006027\t0.027889\t0.067907\t-0.02047\t-0.019712\t0.031602\t0.009818\t0.025369\t0.033387\t0.004266\t0.006194\t-0.033824\t0.027432\t-0.026028\t0.009895\t-0.007394\t-0.012237\t0.001887\t0.024125\t0.001791\t-0.007441\t-0.025444\t0.029987\t-0.036394\t-0.006565\t-0.026003\t-0.041117\t0.039541\t0.045864\t0.017632\t0.029439\t-0.000245\t-0.016957\t-0.0256\t0.013657\t0.016074\t0.04653\t-0.010875\t0.017379\t0.006846\t0.007717\t0.004708\t0.005316\t-0.006975\t0.009147\t-0.029892\t-0.014211\t-0.016155\t-0.019417\t-0.004657\t0.0147\t-0.002322\t-0.024992\t-0.040014\t0.007966\t-0.008675\t0.010607\t-0.00879\t0.013281\t-0.040513\t-0.015679\t-0.03515\t0.032105\t0.054248\t-0.012088\t0.029862\t-0.003178\t0.042197\t0.015399\t0.000385\t0.03654\t-0.017693\t0.02239\t-0.02771\t-0.02534\t0.050142\t0.036265\t-0.008159\t-0.00736\t-0.00249\t0.009402\t0.001134\t-0.021154\t0.003846\t0.009157\t0.019331\t0.008505\t-0.006871\t0.03106\t0.019751\t0.012201\t-0.019836\t0.000465\t0.013264\t-0.017126\t0.016906\t-0.017095\t-0.016356\t0.005041\t-0.017895\t0.003731\t-0.008477\t0.01868\t-0.015964\t-0.013397\t0.021936\t-0.008366\t0.043431\t0.005761\t-0.034215\t-0.028917\t0.016484\t0.002057\t-0.034505\t0.006747\t-0.034653\t0.005483\t-0.027685\t0.016079\t0.032641\t0.030285\t-0.001619\t0.006673\t0.003414\t0.010434\t-0.000531\t-0.00674\t-0.011358\t0.007005\t-0.024139\t0.007147\t0.013677\t0.013194\t0.062825\t-0.008662\t-0.006729\t0.022879\t0.014448\t-0.021027\t0.033209\t0.034571\t-0.026526\t-0.008102\t-0.021458\t0.021626\t-0.032371\t-0.04021\t0.012979\t0.058696\t-0.01113\t-0.05627\t-0.027651\t0.010581\t0.000189\t0.031129\t-0.003862\t0.030464\t-0.014996\t0.031756\t-0.013698\t0.012315\t0.03394\t0.005749\t-0.046122\t-0.017994\t0.026781\t0.006142\t-0.005648\t0.046692\t0.016839\t0.010572\t0.002498\t-0.018649\t-0.024938\t-0.030281\t0.015755\t0.021024\t0.025444\t-0.00814\t-0.009376\t0.023339\t0.031634\t0.013591\t-0.031017\t0.019806\t-0.00928\t-0.000673\t0.029636\t0.014008\t-0.011661\t-0.014231\t-0.016603\t-0.005407\t-0.040427\t-0.04456\t-0.011673\t-0.031006\t0.015388\t-0.031582\t0.001565\t0.007911\t-0.026223\t0.012313\t0.017325\t0.008236\t-0.018882\t-0.02364\t0.025792\t-0.022991\t-0.014098\t-0.029587\t-0.016471\t0.012892\t-0.026334\t0.006804\t-0.014531\t-0.01466\t-0.004509\t0.051716\t-0.023044\t0.009204\t0.006041\t0.017072\t0.015307\t0.023241\t-0.005984\t0.011302\t0.010177\t0.025242\t0.064692\t0.037993\t0.039085\t0.00431\t-0.016123\t-0.031177\t0.03771\t-0.052912\t0.003202\t0.018976\t-0.047109\t0.030654\t-0.001792\t0.004625\t-0.033835\t0.012412\t-0.008169\t0.006057\t-0.014922\t-0.012097\t-0.027555\t0.014625\t-0.012163\t0.046348\t-0.017465\t-0.007873\t2e-06\t0.013451\t0.001777\t-0.032772\t0.002679\t0.02712\t-0.005835\t-0.018173\t-0.032334\t-0.004673\t-0.051013\t0.003055\t-0.00738\t-0.003466\t0.009655\t-0.013058\t-0.001926\t-0.027485\t-0.003872\t-0.013668\t0.01712\t0.000781\t-0.012092\t-0.020243\t-0.023163\t-0.000867\t-0.008446\t0.005901\t-0.025803\t0.022033\t0.000968\t0.0461\t-0.02854\t-0.013284\t-0.010571\t0.018783\t8e-06\t-0.013861\t0.012077\t-0.029714\t0.057719\t-0.018674\t-0.001118\t0.00332\t-0.02328\t0.046057\t0.034659\t-0.033313\t0.031011\t-0.036731\t-0.016301\t0.038335\t-0.021914\t0.016886\t0.022662\t-0.056195\t0.01187\t0.002741\t0.023146\t-0.008985\t-0.017874\t-0.044977\t-0.004394\t0.003963\t0.022632\t0.017069\t0.013327\t-0.029429\t0.010053\t-0.026801\t0.023816\t0.021166\t0.007041\t-0.001372\t0.001159\t0.012916\t0.024608\t-0.008222\t0.014883\t0.00993\t0.034953\t0.04096\t-0.007708\t0.002857\t0.029912\t-0.019932\t-0.012394\t-0.045241\t-0.019988\t0.008404\t-0.011158\t0.018687\t0.003713\t0.030915\t0.006114\t0.008312\t0.015072\t0.002301\t-0.008728\t0.014315\t0.012511\t-0.036631\t-0.021858\t-0.006753\t-0.033092\t-0.02672","url":""},"properties":{},"attributes":{},"variableValues":{},"sortExprValues":["10000"]}],"facet":[]},"errors":[]}
llm request params:{_POST_BODY={  "question" : "What is OpenSearch" , "type" : "text",  "content" : ["OpenSearch serves as an all-in-one platform used to develop commercial intelligent search services. It is built based on a large-scale distributed search engine platform developed by Alibaba. OpenSearch provides mid-end services for the core search business of Alibaba Group, including Taobao, Tmall, and Cainiao. Thanks to years of search experience in various industries and the capabilities of handling traffic peaks during Double 11, OpenSearch releases a set of service editions that offers high performance, efficiency, availability, and stability. The released service editions include LLM-Based Conversational Search Edition, Industry Algorithm Edition, High-performance Search Edition, Vector Search Edition, and Retrieval Engine Edition. This helps meet search requirements in a variety of industries. OpenSearch is a PaaS that simplifies the use of search technologies and lowers the technical threshold and costs. OpenSearch allows you to implement search features and fast iterations for your services at a low cost. This prevents search technologies from being your business bottleneck."]}, format=full_json}
llm result:{"data":[{"answer":"OpenSearch serves as an all-in-one platform used to develop commercial intelligent search services. It is built based on a large-scale distributed search engine platform developed by Alibaba. OpenSearch provides mid-end services for the core search business of Alibaba Group, including Taobao, Tmall, and Cainiao. Thanks to years of search experience in various industries and the capabilities of handling traffic peaks during Double 11, OpenSearch releases a set of service editions that offers high performance, efficiency, availability, and stability. The released service editions include LLM-Based Conversational Search Edition, Industry Algorithm Edition, High-performance Search Edition, Vector Search Edition, and Retrieval Engine Edition. This helps meet search requirements in a variety of industries. OpenSearch is a PaaS that simplifies the use of search technologies and lowers the technical threshold and costs. OpenSearch allows you to implement search features and fast iterations for your services at a low cost. This prevents search technologies from being your business bottleneck. In summary, OpenSearch is a platform used to develop intelligent search services. Opensearch provides various search capabilities to meet search requirements in a variety of industries.","type":"TEXT"}]}