Skip to content

Commit

Permalink
Merge pull request #2172 from openturing/0.3.9
Browse files Browse the repository at this point in the history
0.3.9
  • Loading branch information
alegauss authored Oct 14, 2024
2 parents 613d6b5 + 1bafefe commit 6024e5a
Show file tree
Hide file tree
Showing 48 changed files with 547 additions and 238 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.5.8</version>
<version>1.5.10</version>
</dependency>
<dependency>
<groupId>com.viglet.turing</groupId>
Expand All @@ -192,7 +192,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.8</version>
<version>1.5.10</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
Expand Down Expand Up @@ -247,7 +247,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.0</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
Expand Down
2 changes: 1 addition & 1 deletion turing-aem/aem-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>25.0.0</version>
<version>26.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public class SwaggerConfig {
@Bean
public OpenAPI apiInfo() {
return new OpenAPI()
.info(new Info().title("Turing AI")
.info(new Info().title("Turing ES")
.description("Semantic Navigation, Chatbot using Search Engine and Many NLP Vendors.")
.version("v2.0")
.license(new License().name("Apache 2.0").url("http://viglet.com/turing")))
.externalDocs(new ExternalDocumentation()
.description("Turing AI Documentation")
.description("Turing ES Documentation")
.url("https://docs.viglet.com/turing"));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.viglet.turing.commons.sn.bean;

/**
* Request latest searches to Turing AI
* Request latest searches to Turing ES
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.Locale;

/**
* Locale of Turing AI Semantic Navigation response.
* Locale of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import lombok.experimental.Accessors;

/**
* Default Fields of Turing AI Semantic Navigation response.
* Default Fields of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
* Documents of results of Turing AI Semantic Navigation response.
* Documents of results of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
* Metadata of document with relation with facets of Turing AI Semantic Navigation response.
* Metadata of document with relation with facets of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import lombok.experimental.Accessors;

/**
* Facet Item of Turing AI Semantic Navigation response.
* Facet Item of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import lombok.experimental.Accessors;

/**
* Label of Facet with diferent locales of Turing AI Semantic Navigation response.
* Label of Facet with diferent locales of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import lombok.experimental.Accessors;

/**
* List of documents with results by group of query of Turing AI Semantic
* List of documents with results by group of query of Turing ES Semantic
* Navigation response.
*
* @author Alexandre Oliveira
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import lombok.experimental.Accessors;

/**
* Pagination of results of Turing AI Semantic Navigation response.
* Pagination of results of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.Locale;

/**
* Details about the request query string of Turing AI Semantic Navigation
* Details about the request query string of Turing ES Semantic Navigation
* response.
*
* @author Alexandre Oliveira
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import lombok.experimental.Accessors;

/**
* List of documents with results of query of Turing AI Semantic Navigation response.
* List of documents with results of query of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import lombok.experimental.Accessors;

/**
* Details about facets and facet and "more like this" of Turing AI Semantic
* Details about facets and facet and "more like this" of Turing ES Semantic
* Navigation response.
*
* @author Alexandre Oliveira
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import lombok.experimental.Accessors;

/**
* List of spotlight documents of Turing AI Semantic Navigation response.
* List of spotlight documents of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
* @since 0.3.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Provides the classes of Turing AI beans to create JSON response.
* Provides the classes of Turing ES beans to create JSON response.
*
* @since 0.3.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import com.viglet.turing.commons.sn.search.TurSNSiteSearchContext;

/**
* Spell Check of Turing AI Semantic Navigation response.
* Spell Check of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import com.viglet.turing.commons.utils.TurCommonsUtils;

/**
* Spell Check Text of Turing AI Semantic Navigation response.
* Spell Check Text of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.viglet.turing.connector.db;

/**
* Class that can be used create Chunking Job for Turing AI Import
* Class that can be used create Chunking Job for Turing ES Import
*
* @author Alexandre Oliveira
* @since 0.3.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package com.viglet.turing.connector.filesystem;

/**
* Class that can be used create Chunking Job for Turing AI Import
* Class that can be used create Chunking Job for Turing ES Import
*
* @author Alexandre Oliveira
* @since 0.3.5
Expand Down
4 changes: 2 additions & 2 deletions turing-java-proxy/README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Turing AI Java Proxy
= Turing ES Java Proxy

WAR java file to expose the Turing AI API on the site.
WAR java file to expose the Turing ES API on the site.

== Run on Development

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package com.viglet.turing.client.sn;

/**
* Locale of Turing AI Semantic Navigation response.
* Locale of Turing ES Semantic Navigation response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.util.List;

/**
* Configure the query that will send to Turing AI.
* Configure the query that will send to Turing ES.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
import java.util.*;

/**
* Connect to Turing AI Server.
* Connect to Turing ES Server.
*
* @author Alexandre Oliveira
* @since 0.3.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
* Return details about Turing AI response query.
* Return details about Turing ES response query.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package com.viglet.turing.client.sn;

/**
* Specify and retrieve Turing AI sort.
* Specify and retrieve Turing ES sort.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import com.viglet.turing.commons.sn.bean.spellcheck.TurSNSiteSpellCheckBean;

/**
* Return the correct text of Turing AI response.
* Return the correct text of Turing ES response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Provides the classes necessary to return facets of Turing AI response.
* Provides the classes necessary to return facets of Turing ES response.
*
* @since 0.3.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import java.util.List;

/**
* List of jobs to index and deIndex in Turing AI.
* List of jobs to index and deIndex in Turing ES.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Provides the classes necessary to create jobs with content indexing and desindexing to Viglet Turing AI.
* Provides the classes necessary to create jobs with content indexing and desindexing to Viglet Turing ES.
*
* @since 0.3.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Provides the classes necessary to communicate with Viglet Turing AI.
* Provides the classes necessary to communicate with Viglet Turing ES.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import com.viglet.turing.commons.sn.pagination.TurSNPaginationType;

/**
* Pagination of results of Turing AI Semantic Navigation response with friendly
* Pagination of results of Turing ES Semantic Navigation response with friendly
* attributes.
*
* @since 0.3.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Provides the classes necessary to return pagination of Turing AI response.
* Provides the classes necessary to return pagination of Turing ES response.
*
* @since 0.3.4
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import com.viglet.turing.client.sn.spotlight.TurSNSpotlightDocument;

/**
* Return results of Turing AI response.
* Return results of Turing ES response.
*
* @author Alexandre Oliveira
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Provides the classes necessary to return results of Turing AI response.
* Provides the classes necessary to return results of Turing ES response.
*
* @since 0.3.4
*/
Expand Down
12 changes: 6 additions & 6 deletions turing-nutch/README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Plugin for Apache Nutch for Turing AI
= Plugin for Apache Nutch for Turing ES
Plugin for Apache Nutch to index content using crawler.

== Installation
Expand Down Expand Up @@ -73,13 +73,13 @@ Modify the following parameters:
[%header,cols=3*]
|===
|Parameter Name | Description | Default value
|url | Defines the fully qualified URL of Turing AI into which data should be indexed. | http://localhost:2700
|url | Defines the fully qualified URL of Turing ES into which data should be indexed. | http://localhost:2700
|site | Turing Semantic Navigation Site Name. | Sample
|weight.field | Field's name where the weight of the documents will be written. If it is empty no field will be used. |
|commitSize | Defines the number of documents to send to Turing AI in a single update batch. Decrease when handling very large documents to prevent Nutch from running out of memory.
|commitSize | Defines the number of documents to send to Turing ES in a single update batch. Decrease when handling very large documents to prevent Nutch from running out of memory.

**Note**: It does not explicitly trigger a server side commit. | 1000
|auth | Whether to enable HTTP basic authentication for communicating with Turing AI. Use the `username` and `password` properties to configure your credentials. | true
|username | The username of Turing AI server. | admin
|password | The password of Turing AI server. | admin
|auth | Whether to enable HTTP basic authentication for communicating with Turing ES. Use the `username` and `password` properties to configure your credentials. | true
|username | The username of Turing ES server. | admin
|password | The password of Turing ES server. | admin
|===
Loading

0 comments on commit 6024e5a

Please sign in to comment.