├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── publish.yml │ └── validate.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .vscode ├── eclipse-java-style.xml ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.adoc ├── SECURITY.md ├── agents.md ├── compile-all.cmd ├── containers ├── mariadb │ ├── Dockerfile │ ├── conf │ │ └── turing.cnf │ └── helm │ │ ├── README.md │ │ └── values.yaml ├── nginx │ └── conf.d │ │ └── app.conf └── solr │ ├── Dockerfile │ ├── config │ └── solr │ │ ├── configsets │ │ ├── ca │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ ├── en │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ ├── es │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ └── pt │ │ │ └── conf │ │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_et.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ └── turing │ │ ├── conf │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_et.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ ├── protwords.txt │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ ├── stopwords.txt │ │ └── synonyms.txt │ │ └── core.properties │ └── helm │ ├── README.md │ └── values.yaml ├── docker-compose.yaml ├── jitpack.yml ├── k8s.yaml ├── k8s ├── turing-claim0-persistentvolumeclaim.yaml ├── turing-claim1-persistentvolumeclaim.yaml ├── turing-claim2-persistentvolumeclaim.yaml ├── turing-deployment.yaml ├── turing-mariadb-claim0-persistentvolumeclaim.yaml ├── turing-mariadb-deployment.yaml ├── turing-mariadb-service.yaml ├── turing-nginx-claim0-persistentvolumeclaim.yaml ├── turing-nginx-deployment.yaml ├── turing-nginx-service.yaml ├── turing-service.yaml ├── turing-solr-deployment.yaml └── turing-solr-service.yaml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── turing-app ├── .gitignore ├── auto-complete.md ├── liquibase.gradle ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── viglet │ │ │ └── turing │ │ │ ├── TurIndexContext.java │ │ │ ├── TuringES.java │ │ │ ├── api │ │ │ ├── TurAPI.java │ │ │ ├── TurAPIBean.java │ │ │ ├── auth │ │ │ │ ├── TurGroupAPI.java │ │ │ │ ├── TurRoleAPI.java │ │ │ │ └── TurUserAPI.java │ │ │ ├── cognitive │ │ │ │ └── TurCognitiveAPI.java │ │ │ ├── dev │ │ │ │ └── token │ │ │ │ │ └── TurDevTokenAPI.java │ │ │ ├── discovery │ │ │ │ └── TurDiscoveryAPI.java │ │ │ ├── exchange │ │ │ │ └── TurImportAPI.java │ │ │ ├── integration │ │ │ │ ├── TurIntegrationAPI.java │ │ │ │ ├── TurIntegrationInstanceAPI.java │ │ │ │ └── TurIntegrationVendorAPI.java │ │ │ ├── llm │ │ │ │ ├── TurLLMInstanceAPI.java │ │ │ │ └── TurLLMVendorAPI.java │ │ │ ├── logging │ │ │ │ └── TurLoggingAPI.java │ │ │ ├── ocr │ │ │ │ ├── TurOcrAPI.java │ │ │ │ └── TurOcrFromUrl.java │ │ │ ├── queue │ │ │ │ ├── TurQueueInfo.java │ │ │ │ ├── TurQueueManagementAPI.java │ │ │ │ ├── TurQueueManagementService.java │ │ │ │ └── TurQueueMessage.java │ │ │ ├── se │ │ │ │ ├── TurSEInstanceAPI.java │ │ │ │ └── TurSEVendorAPI.java │ │ │ ├── sn │ │ │ │ ├── bean │ │ │ │ │ ├── TurSNFieldExtCheck.java │ │ │ │ │ ├── TurSNFieldExtCheckError.java │ │ │ │ │ ├── TurSNFieldExtType.java │ │ │ │ │ ├── TurSNFieldRepairPayload.java │ │ │ │ │ ├── TurSNFieldRepairType.java │ │ │ │ │ ├── TurSNSiteFilterQueryBean.java │ │ │ │ │ ├── TurSNSiteMetricsTopTermsBean.java │ │ │ │ │ ├── TurSNSiteMonitoringStatusBean.java │ │ │ │ │ ├── TurSolrCoreExists.java │ │ │ │ │ ├── TurSolrFieldCore.java │ │ │ │ │ └── TurSolrFieldStatus.java │ │ │ │ ├── console │ │ │ │ │ ├── TurSNFieldExtAPI.java │ │ │ │ │ ├── TurSNRankingExpressionAPI.java │ │ │ │ │ ├── TurSNSiteAPI.java │ │ │ │ │ ├── TurSNSiteByNameLocaleAPI.java │ │ │ │ │ ├── TurSNSiteFacetedFieldAPI.java │ │ │ │ │ ├── TurSNSiteFieldAPI.java │ │ │ │ │ ├── TurSNSiteFieldCheckAPI.java │ │ │ │ │ ├── TurSNSiteFieldExtAPI.java │ │ │ │ │ ├── TurSNSiteFieldRepairAPI.java │ │ │ │ │ ├── TurSNSiteLocaleAPI.java │ │ │ │ │ ├── TurSNSiteMergeProvidersAPI.java │ │ │ │ │ ├── TurSNSiteMetricsAPI.java │ │ │ │ │ └── TurSNSiteSpotlightAPI.java │ │ │ │ ├── genai │ │ │ │ │ └── TurSNSiteGenAiAPI.java │ │ │ │ ├── graphql │ │ │ │ │ ├── GraphQLConfig.java │ │ │ │ │ ├── TurSNSearchParamsInput.java │ │ │ │ │ └── TurSNSiteSearchGraphQLController.java │ │ │ │ ├── job │ │ │ │ │ ├── TurSNDeIndexingAPI.java │ │ │ │ │ └── TurSNImportAPI.java │ │ │ │ ├── queue │ │ │ │ │ ├── TurSNMergeProvidersProcess.java │ │ │ │ │ ├── TurSNMonitoringQueue.java │ │ │ │ │ ├── TurSNProcessQueue.java │ │ │ │ │ ├── TurSNQueueControlService.java │ │ │ │ │ └── TurSpotlightContent.java │ │ │ │ └── search │ │ │ │ │ ├── TurSNSiteAutoCompleteAPI.java │ │ │ │ │ ├── TurSNSiteQueryAPI.java │ │ │ │ │ ├── TurSNSiteSearchAPI.java │ │ │ │ │ ├── TurSNSiteSearchCachedAPI.java │ │ │ │ │ ├── TurSNSiteSearchService.java │ │ │ │ │ ├── TurSNSiteSearchV2API.java │ │ │ │ │ └── TurSNSiteSpellCheckAPI.java │ │ │ ├── store │ │ │ │ ├── TurStoreInstanceAPI.java │ │ │ │ └── TurStoreVendorAPI.java │ │ │ └── system │ │ │ │ └── TurLocaleAPI.java │ │ │ ├── artemis │ │ │ └── TurQueueBrowserService.java │ │ │ ├── bean │ │ │ └── TurCurrentUser.java │ │ │ ├── exchange │ │ │ ├── TurExchange.java │ │ │ ├── TurImportExchange.java │ │ │ └── sn │ │ │ │ ├── TurSNSiteExchange.java │ │ │ │ ├── TurSNSiteExport.java │ │ │ │ └── TurSNSiteImport.java │ │ │ ├── genai │ │ │ ├── TurChatMessage.java │ │ │ ├── TurGenAi.java │ │ │ └── TurGenAiContext.java │ │ │ ├── jpa │ │ │ └── TurJpaConfig.java │ │ │ ├── logging │ │ │ └── TurLoggingUtils.java │ │ │ ├── onstartup │ │ │ ├── TurOnStartup.java │ │ │ ├── auth │ │ │ │ ├── TurGroupOnStartup.java │ │ │ │ ├── TurRoleOnStartup.java │ │ │ │ └── TurUserOnStartup.java │ │ │ ├── llm │ │ │ │ └── TurLLMVendorOnStartup.java │ │ │ ├── se │ │ │ │ └── TurSEVendorOnStartup.java │ │ │ ├── store │ │ │ │ └── TurStoreVendorOnStartup.java │ │ │ └── system │ │ │ │ ├── TurConfigVarOnStartup.java │ │ │ │ └── TurLocaleOnStartup.java │ │ │ ├── persistence │ │ │ ├── bean │ │ │ │ ├── integration │ │ │ │ │ └── TurIntegrationVendor.java │ │ │ │ └── storage │ │ │ │ │ └── TurDataGroupSentenceBean.java │ │ │ ├── dto │ │ │ │ └── sn │ │ │ │ │ └── field │ │ │ │ │ ├── TurSNSiteFieldExtDto.java │ │ │ │ │ └── TurSNSiteFieldExtFacetDto.java │ │ │ ├── model │ │ │ │ ├── auth │ │ │ │ │ ├── TurGroup.java │ │ │ │ │ ├── TurPrivilege.java │ │ │ │ │ ├── TurRole.java │ │ │ │ │ └── TurUser.java │ │ │ │ ├── dev │ │ │ │ │ └── token │ │ │ │ │ │ └── TurDevToken.java │ │ │ │ ├── integration │ │ │ │ │ └── TurIntegrationInstance.java │ │ │ │ ├── llm │ │ │ │ │ ├── TurLLMInstance.java │ │ │ │ │ └── TurLLMVendor.java │ │ │ │ ├── se │ │ │ │ │ ├── TurSEInstance.java │ │ │ │ │ └── TurSEVendor.java │ │ │ │ ├── sn │ │ │ │ │ ├── TurSNSite.java │ │ │ │ │ ├── TurSNSiteFacetEnum.java │ │ │ │ │ ├── TurSNSiteFacetRangeEnum.java │ │ │ │ │ ├── TurSNSiteFacetSortEnum.java │ │ │ │ │ ├── field │ │ │ │ │ │ ├── TurSNSiteFacetFieldEnum.java │ │ │ │ │ │ ├── TurSNSiteFacetFieldSortEnum.java │ │ │ │ │ │ ├── TurSNSiteField.java │ │ │ │ │ │ ├── TurSNSiteFieldExt.java │ │ │ │ │ │ └── TurSNSiteFieldExtFacet.java │ │ │ │ │ ├── genai │ │ │ │ │ │ └── TurSNSiteGenAi.java │ │ │ │ │ ├── locale │ │ │ │ │ │ └── TurSNSiteLocale.java │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── TurSNSiteMergeProviders.java │ │ │ │ │ │ └── TurSNSiteMergeProvidersField.java │ │ │ │ │ ├── metric │ │ │ │ │ │ └── TurSNSiteMetricAccess.java │ │ │ │ │ ├── ranking │ │ │ │ │ │ ├── TurSNRankingCondition.java │ │ │ │ │ │ └── TurSNRankingExpression.java │ │ │ │ │ ├── source │ │ │ │ │ │ └── TurSNSourceType.java │ │ │ │ │ └── spotlight │ │ │ │ │ │ ├── TurSNSiteSpotlight.java │ │ │ │ │ │ ├── TurSNSiteSpotlightDocument.java │ │ │ │ │ │ └── TurSNSiteSpotlightTerm.java │ │ │ │ ├── store │ │ │ │ │ ├── TurStoreInstance.java │ │ │ │ │ └── TurStoreVendor.java │ │ │ │ └── system │ │ │ │ │ ├── TurConfigVar.java │ │ │ │ │ └── TurLocale.java │ │ │ └── repository │ │ │ │ ├── auth │ │ │ │ ├── TurGroupRepository.java │ │ │ │ ├── TurPrivilegeRepository.java │ │ │ │ ├── TurRoleRepository.java │ │ │ │ └── TurUserRepository.java │ │ │ │ ├── dev │ │ │ │ └── token │ │ │ │ │ └── TurDevTokenRepository.java │ │ │ │ ├── integration │ │ │ │ └── TurIntegrationInstanceRepository.java │ │ │ │ ├── llm │ │ │ │ ├── TurLLMInstanceRepository.java │ │ │ │ └── TurLLMVendorRepository.java │ │ │ │ ├── se │ │ │ │ ├── TurSEInstanceRepository.java │ │ │ │ └── TurSEVendorRepository.java │ │ │ │ ├── sn │ │ │ │ ├── TurSNSiteRepository.java │ │ │ │ ├── field │ │ │ │ │ ├── TurSNSiteFieldExtFacetRepository.java │ │ │ │ │ ├── TurSNSiteFieldExtRepository.java │ │ │ │ │ └── TurSNSiteFieldRepository.java │ │ │ │ ├── genai │ │ │ │ │ └── TurSNSiteGenAiRepository.java │ │ │ │ ├── locale │ │ │ │ │ └── TurSNSiteLocaleRepository.java │ │ │ │ ├── merge │ │ │ │ │ ├── TurSNSiteMergeProvidersFieldRepository.java │ │ │ │ │ └── TurSNSiteMergeProvidersRepository.java │ │ │ │ ├── metric │ │ │ │ │ ├── TurSNSiteMetricAccessRepository.java │ │ │ │ │ └── TurSNSiteMetricAccessTerm.java │ │ │ │ ├── ranking │ │ │ │ │ ├── TurSNRankingConditionRepository.java │ │ │ │ │ └── TurSNRankingExpressionRepository.java │ │ │ │ ├── source │ │ │ │ │ └── TurSNSourceTypeRepository.java │ │ │ │ └── spotlight │ │ │ │ │ ├── TurSNSiteSpotlightDocumentRepository.java │ │ │ │ │ ├── TurSNSiteSpotlightRepository.java │ │ │ │ │ └── TurSNSiteSpotlightTermRepository.java │ │ │ │ ├── store │ │ │ │ ├── TurStoreInstanceRepository.java │ │ │ │ └── TurStoreVendorRepository.java │ │ │ │ └── system │ │ │ │ ├── TurConfigVarRepository.java │ │ │ │ └── TurLocaleRepository.java │ │ │ ├── properties │ │ │ ├── TurConfigProperties.java │ │ │ └── TurSolrProperty.java │ │ │ ├── se │ │ │ ├── TurSEStopWord.java │ │ │ ├── facet │ │ │ │ ├── TurSEFacetResult.java │ │ │ │ └── TurSEFacetResultAttr.java │ │ │ └── result │ │ │ │ ├── TurSEGenericResults.java │ │ │ │ ├── TurSEGroup.java │ │ │ │ ├── TurSEResult.java │ │ │ │ └── TurSEResults.java │ │ │ ├── sn │ │ │ ├── TurSNConstants.java │ │ │ ├── TurSNContext.java │ │ │ ├── TurSNFieldProcess.java │ │ │ ├── TurSNFieldType.java │ │ │ ├── TurSNQueue.java │ │ │ ├── TurSNSearchProcess.java │ │ │ ├── TurSNUtils.java │ │ │ ├── ac │ │ │ │ ├── TurSNAutoComplete.java │ │ │ │ ├── TurSNAutoCompleteListData.java │ │ │ │ ├── TurSNSuggestionAutomaton.java │ │ │ │ └── TurSNSuggestionFilter.java │ │ │ ├── facet │ │ │ │ ├── TurSNFacetMapForFilterQuery.java │ │ │ │ ├── TurSNFacetProperties.java │ │ │ │ └── TurSNFacetTypeContext.java │ │ │ ├── spotlight │ │ │ │ ├── TurSNSpotlightProcess.java │ │ │ │ ├── TurSNSpotlightTermCacheBean.java │ │ │ │ └── TurSpotlightCache.java │ │ │ ├── template │ │ │ │ └── TurSNTemplate.java │ │ │ └── tr │ │ │ │ ├── TurSNTargetingRuleMethod.java │ │ │ │ └── TurSNTargetingRules.java │ │ │ ├── solr │ │ │ ├── TurSolr.java │ │ │ ├── TurSolrCache.java │ │ │ ├── TurSolrConfiguration.java │ │ │ ├── TurSolrField.java │ │ │ ├── TurSolrFieldAction.java │ │ │ ├── TurSolrInstance.java │ │ │ ├── TurSolrInstanceProcess.java │ │ │ ├── TurSolrUtils.java │ │ │ └── bean │ │ │ │ └── TurSolrFieldBean.java │ │ │ ├── spring │ │ │ ├── TurBrowserLauncher.java │ │ │ ├── TurStaticResourceConfiguration.java │ │ │ └── security │ │ │ │ ├── TurAuditable.java │ │ │ │ ├── TurAuditorAwareImpl.java │ │ │ │ ├── TurAuthenticationEntryPoint.java │ │ │ │ ├── TurCsrfCookieFilter.java │ │ │ │ ├── TurCustomUserDetails.java │ │ │ │ ├── TurCustomUserDetailsService.java │ │ │ │ ├── TurSecurityConfigDevUI.java │ │ │ │ ├── TurSecurityConfigProduction.java │ │ │ │ ├── TurSpaCsrfTokenRequestHandler.java │ │ │ │ └── auth │ │ │ │ ├── ITurAuthenticationFacade.java │ │ │ │ ├── TurAuthTokenHeaderFilter.java │ │ │ │ ├── TurAuthenticationFacade.java │ │ │ │ └── TurLogoutHandler.java │ │ │ ├── swagger │ │ │ └── SwaggerConfig.java │ │ │ ├── tomcat │ │ │ └── TurTomcatWebServerCustomizer.java │ │ │ └── utils │ │ │ └── TurSNSiteFieldUtils.java │ └── resources │ │ ├── .gitignore │ │ ├── META-INF │ │ └── additional-spring-configuration-metadata.json │ │ ├── application.yaml │ │ ├── banner.txt │ │ ├── bogus_mina_tls.cert │ │ ├── client_secrets.json │ │ ├── graphql │ │ ├── README.md │ │ ├── sample-queries.graphql │ │ └── schema.graphqls │ │ ├── hazelcast.yaml │ │ ├── keystore │ │ ├── liquibase-task.properties │ │ ├── logback-spring-console.xml │ │ ├── logback-spring-mongo.xml │ │ ├── logback-spring.xml │ │ └── solr │ │ ├── conf │ │ └── lang │ │ │ └── stopwords.txt │ │ └── configsets │ │ ├── ca.zip │ │ ├── en.zip │ │ ├── es.zip │ │ └── pt.zip │ └── test │ └── java │ └── com │ └── viglet │ └── turing │ ├── TuringTests.java │ ├── api │ └── sn │ │ ├── console │ │ ├── TurSNSiteMergeProvidersAPITests.java │ │ └── TurSNSiteSpotlightAPITests.java │ │ ├── graphql │ │ └── TurSNSiteSearchGraphQLControllerTest.java │ │ └── search │ │ └── TurSNSiteSearchAPIIT.java │ └── utils │ └── TurUtilTests.java ├── turing-commons ├── .gitignore ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── viglet │ │ └── turing │ │ └── commons │ │ ├── cache │ │ └── TurCustomClassCache.java │ │ ├── exception │ │ ├── TurException.java │ │ └── TurRuntimeException.java │ │ ├── file │ │ ├── TurFileAttributes.java │ │ └── TurFileSize.java │ │ ├── indexing │ │ ├── TurIndexingStatus.java │ │ └── TurLoggingStatus.java │ │ ├── logging │ │ ├── IsoDateSerializer.java │ │ ├── TurLoggingGeneral.java │ │ ├── TurLoggingIndexing.java │ │ ├── TurLoggingIndexingLog.java │ │ ├── TurMongoDBAppender.java │ │ ├── TurMongoDBAppenderBase.java │ │ ├── TurMongoDBIndexingAppender.java │ │ └── TurNameAbbreviator.java │ │ ├── se │ │ ├── TurSEParameters.java │ │ ├── field │ │ │ └── TurSEFieldType.java │ │ ├── result │ │ │ └── spellcheck │ │ │ │ └── TurSESpellCheckResult.java │ │ └── similar │ │ │ ├── TurSESimilarResult.java │ │ │ └── package-info.java │ │ ├── sn │ │ ├── TurSNConfig.java │ │ ├── bean │ │ │ ├── TurSNFilterParams.java │ │ │ ├── TurSNSearchLatestRequestBean.java │ │ │ ├── TurSNSearchParams.java │ │ │ ├── TurSNSiteLocaleBean.java │ │ │ ├── TurSNSitePostParamsBean.java │ │ │ ├── TurSNSiteSearchBean.java │ │ │ ├── TurSNSiteSearchDefaultFieldsBean.java │ │ │ ├── TurSNSiteSearchDocumentBean.java │ │ │ ├── TurSNSiteSearchDocumentMetadataBean.java │ │ │ ├── TurSNSiteSearchFacetBean.java │ │ │ ├── TurSNSiteSearchFacetItemBean.java │ │ │ ├── TurSNSiteSearchFacetLabelBean.java │ │ │ ├── TurSNSiteSearchGroupBean.java │ │ │ ├── TurSNSiteSearchPaginationBean.java │ │ │ ├── TurSNSiteSearchQueryContextBean.java │ │ │ ├── TurSNSiteSearchQueryContextQueryBean.java │ │ │ ├── TurSNSiteSearchResultsBean.java │ │ │ ├── TurSNSiteSearchWidgetBean.java │ │ │ ├── TurSNSiteSpotlightDocumentBean.java │ │ │ ├── package-info.java │ │ │ └── spellcheck │ │ │ │ ├── TurSNSiteSpellCheckBean.java │ │ │ │ └── TurSNSiteSpellCheckText.java │ │ ├── field │ │ │ └── TurSNFieldName.java │ │ ├── pagination │ │ │ └── TurSNPaginationType.java │ │ └── search │ │ │ ├── TurSNFilterQueryOperator.java │ │ │ ├── TurSNParamType.java │ │ │ └── TurSNSiteSearchContext.java │ │ └── utils │ │ └── TurCommonsUtils.java │ └── test │ └── java │ └── com │ └── viglet │ └── turing │ └── commons │ ├── file │ ├── TurFileAttributesTest.java │ └── TurFileSizeTest.java │ ├── sn │ ├── TurSNConfigTest.java │ └── bean │ │ ├── TurSNSiteSearchDocumentBeanTest.java │ │ └── TurSNSiteSearchDocumentMetadataBeanTest.java │ └── utils │ └── TurCommonsUtilsTest.java ├── turing-dev.cmd ├── turing-fs-commons ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── viglet │ └── turing │ └── connector │ └── filesystem │ └── commons │ ├── TurFileUtils.java │ └── TurTikaFileAttributes.java ├── turing-java-sdk ├── .gitignore ├── README.md ├── conf │ └── log4j.properties ├── pom.xml └── src │ ├── main │ └── java │ │ └── com │ │ └── viglet │ │ └── turing │ │ ├── client │ │ ├── auth │ │ │ ├── TurServer.java │ │ │ └── credentials │ │ │ │ ├── TurApiKeyCredentials.java │ │ │ │ ├── TurCredentials.java │ │ │ │ ├── TurUsernamePasswordCredentials.java │ │ │ │ └── package-info.java │ │ ├── ocr │ │ │ ├── TurOcr.java │ │ │ └── sample │ │ │ │ └── TurClientOcrSample.java │ │ ├── sn │ │ │ ├── HttpTurSNServer.java │ │ │ ├── TurMultiValue.java │ │ │ ├── TurSNClientBetweenDates.java │ │ │ ├── TurSNConstants.java │ │ │ ├── TurSNDocument.java │ │ │ ├── TurSNDocumentList.java │ │ │ ├── TurSNGroup.java │ │ │ ├── TurSNGroupList.java │ │ │ ├── TurSNItemWithAPI.java │ │ │ ├── TurSNLocale.java │ │ │ ├── TurSNQuery.java │ │ │ ├── TurSNQueryParamMap.java │ │ │ ├── TurSNServer.java │ │ │ ├── TurSNSiteSearchQueryContextQuery.java │ │ │ ├── TurSNSortField.java │ │ │ ├── autocomplete │ │ │ │ └── TurSNAutoCompleteQuery.java │ │ │ ├── didyoumean │ │ │ │ ├── TurSNDidYouMean.java │ │ │ │ └── TurSNDidYouMeanText.java │ │ │ ├── facet │ │ │ │ ├── TurSNFacetField.java │ │ │ │ ├── TurSNFacetFieldList.java │ │ │ │ ├── TurSNFacetFieldValue.java │ │ │ │ ├── TurSNFacetFieldValueList.java │ │ │ │ └── package-info.java │ │ │ ├── job │ │ │ │ ├── TurSNAttributeSpec.java │ │ │ │ ├── TurSNJobAction.java │ │ │ │ ├── TurSNJobAttributeSpec.java │ │ │ │ ├── TurSNJobItem.java │ │ │ │ ├── TurSNJobItems.java │ │ │ │ ├── TurSNJobUtils.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ ├── pagination │ │ │ │ ├── TurSNPagination.java │ │ │ │ ├── TurSNPaginationItem.java │ │ │ │ └── package-info.java │ │ │ ├── response │ │ │ │ ├── QueryTurSNResponse.java │ │ │ │ └── package-info.java │ │ │ ├── sample │ │ │ │ ├── TurSNClientSample.java │ │ │ │ └── package-info.java │ │ │ ├── spotlight │ │ │ │ ├── TurSNSpotlightDocument.java │ │ │ │ └── package-info.java │ │ │ └── utils │ │ │ │ ├── TurSNClientUtils.java │ │ │ │ └── package-info.java │ │ └── utils │ │ │ └── TurClientUtils.java │ │ └── se │ │ └── similar │ │ ├── TurSESimilarResult.java │ │ └── package-info.java │ └── test │ └── java │ └── com │ └── viglet │ └── turing │ └── client │ ├── sn │ ├── TurMultiValueTest.java │ ├── TurSNClientBetweenDatesTest.java │ ├── TurSNDocumentTest.java │ ├── TurSNLocaleTest.java │ ├── TurSNQueryTest.java │ └── TurSNSortFieldTest.java │ └── utils │ └── TurClientUtilsTest.java ├── turing-js-sdk ├── js-sdk-lib │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── USAGE_EXAMPLES.md │ ├── build.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── enums │ │ │ ├── TurSNFilterQueryOperator.ts │ │ │ └── TurSNPaginationType.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── TurChatMessage.ts │ │ │ ├── TurSNSearchLatestRequest.ts │ │ │ ├── TurSNSiteLocale.ts │ │ │ ├── TurSNSitePostParams.ts │ │ │ ├── TurSNSiteSearch.ts │ │ │ ├── TurSNSiteSearchDefaultFields.ts │ │ │ ├── TurSNSiteSearchDocument.ts │ │ │ ├── TurSNSiteSearchDocumentMetadata.ts │ │ │ ├── TurSNSiteSearchGroup.ts │ │ │ ├── TurSNSiteSearchPagination.ts │ │ │ ├── TurSNSiteSearchQueryContext.ts │ │ │ ├── TurSNSiteSearchQueryContextQuery.ts │ │ │ ├── TurSNSiteSearchResults.ts │ │ │ ├── TurSNSiteSearchWidget.ts │ │ │ └── TurSNUrl.ts │ │ ├── services │ │ │ └── TurSNSiteSearchService.ts │ │ └── types │ │ │ └── TurSNSearchParams.ts │ └── tsconfig.json └── js-sdk-sample │ ├── .env │ ├── .gitignore │ ├── components.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.tsx │ ├── app │ │ ├── routes.const.ts │ │ └── search.root.page.tsx │ ├── components │ │ ├── app-sidebar.tsx │ │ ├── mode-toggle.tsx │ │ ├── nav-main.tsx │ │ ├── nav-secondary.tsx │ │ ├── nav-user.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── hooks │ │ └── use-mobile.ts │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── style.css │ ├── typescript.svg │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── turing-mcp-server ├── .gitattributes ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── viglet │ │ └── turing │ │ └── mcp │ │ └── server │ │ ├── TurMCPServer.java │ │ └── TurToolsService.java │ └── resources │ ├── application.properties │ └── logback-spring.xml ├── turing-react ├── .env ├── .env.development ├── .env.production ├── .gitignore ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── error │ │ ├── 401.html │ │ ├── 403.html │ │ ├── 404.html │ │ └── 500.html │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── kc.html │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── src │ ├── App.css │ ├── App.tsx │ ├── app │ │ ├── console │ │ │ ├── console.page.tsx │ │ │ ├── console.root.page.tsx │ │ │ ├── integration │ │ │ │ ├── integration.instance.detail.page.tsx │ │ │ │ ├── integration.instance.indexing.rule.page.tsx │ │ │ │ ├── integration.instance.list.page.tsx │ │ │ │ ├── integration.instance.monitoring.page.tsx │ │ │ │ ├── integration.instance.page.tsx │ │ │ │ ├── integration.instance.root.page.tsx │ │ │ │ └── integration.instance.source.page.tsx │ │ │ ├── llm │ │ │ │ ├── llm.instance.list.page.tsx │ │ │ │ ├── llm.instance.page.tsx │ │ │ │ └── llm.instance.root.page.tsx │ │ │ ├── logging │ │ │ │ ├── logging.instance.list.page.tsx │ │ │ │ ├── logging.instance.page.tsx │ │ │ │ └── logging.instance.root.page.tsx │ │ │ ├── se │ │ │ │ ├── se.instance.list.page.tsx │ │ │ │ ├── se.instance.page.tsx │ │ │ │ └── se.instance.root.page.tsx │ │ │ ├── sn │ │ │ │ ├── sn.site.behavior.page.tsx │ │ │ │ ├── sn.site.detail.page.tsx │ │ │ │ ├── sn.site.facets.ordering.page.tsx │ │ │ │ ├── sn.site.field.page.tsx │ │ │ │ ├── sn.site.fields.page.tsx │ │ │ │ ├── sn.site.genai.page.tsx │ │ │ │ ├── sn.site.list.page.tsx │ │ │ │ ├── sn.site.merge.providers.list.page.tsx │ │ │ │ ├── sn.site.merge.providers.page.tsx │ │ │ │ ├── sn.site.multi.language.page.tsx │ │ │ │ ├── sn.site.page.tsx │ │ │ │ ├── sn.site.result.ranking.list.page.tsx │ │ │ │ ├── sn.site.result.ranking.page.tsx │ │ │ │ ├── sn.site.root.page.tsx │ │ │ │ ├── sn.site.spotlight.list.page.tsx │ │ │ │ ├── sn.site.spotlight.page.tsx │ │ │ │ └── sn.site.top.search.terms.page.tsx │ │ │ ├── store │ │ │ │ ├── store.instance.list.page.tsx │ │ │ │ ├── store.instance.page.tsx │ │ │ │ └── store.instance.root.page.tsx │ │ │ └── token │ │ │ │ ├── token.instance.list.page.tsx │ │ │ │ ├── token.instance.page.tsx │ │ │ │ └── token.instance.root.page.tsx │ │ ├── login │ │ │ └── login.page.tsx │ │ └── routes.const.ts │ ├── components │ │ ├── app-sidebar.tsx │ │ ├── blank-slate.tsx │ │ ├── dialog.delete.tsx │ │ ├── draggable-table.tsx │ │ ├── dynamic-language-field.tsx │ │ ├── dynamic-result-ranking-field.tsx │ │ ├── integration.card.list.tsx │ │ ├── integration.instance.form.tsx │ │ ├── llm.card.list.tsx │ │ ├── llm.instance.form.tsx │ │ ├── logging.card.list.tsx │ │ ├── logging.instance.form.tsx │ │ ├── login-form.tsx │ │ ├── mode-toggle.tsx │ │ ├── nav-main.tsx │ │ ├── nav-secondary.tsx │ │ ├── nav-user.tsx │ │ ├── page-content.tsx │ │ ├── page-header.tsx │ │ ├── page.tsx │ │ ├── se.card.list.tsx │ │ ├── se.instance.form.tsx │ │ ├── sn.card.list.tsx │ │ ├── sn.site.behavior.form.tsx │ │ ├── sn.site.field.form.tsx │ │ ├── sn.site.form.tsx │ │ ├── sn.site.result.ranking.form.tsx │ │ ├── sn │ │ │ └── locales │ │ │ │ ├── sn.site.locale.coldef.tsx │ │ │ │ └── sn.site.locale.data.table.tsx │ │ ├── store.card.list.tsx │ │ ├── store.instance.form.tsx │ │ ├── sub.page.header.tsx │ │ ├── sub.page.tsx │ │ ├── theme-provider.tsx │ │ ├── token.card.list.tsx │ │ ├── token.instance.form.tsx │ │ └── ui │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── hooks │ │ └── use-mobile.ts │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── models │ │ ├── auth │ │ │ ├── discovery.ts │ │ │ └── rest-info.ts │ │ ├── integration │ │ │ └── integration-instance.model.ts │ │ ├── llm │ │ │ ├── llm-instance.model.ts │ │ │ └── llm-vendor.model.ts │ │ ├── locale │ │ │ └── locale.model.ts │ │ ├── logging │ │ │ ├── logging-instance.model.ts │ │ │ └── logging-vendor.model.ts │ │ ├── se │ │ │ ├── se-instance.model.ts │ │ │ └── se-vendor.model.ts │ │ ├── sn │ │ │ ├── sn-field-type.model.ts │ │ │ ├── sn-ranking-condition.model.ts │ │ │ ├── sn-ranking-expression.model.ts │ │ │ ├── sn-site-facet-field-sort.type.ts │ │ │ ├── sn-site-facet-range.type.ts │ │ │ ├── sn-site-facet-sort.type.ts │ │ │ ├── sn-site-facet.field.type.ts │ │ │ ├── sn-site-facet.type.ts │ │ │ ├── sn-site-field-facet.model.ts │ │ │ ├── sn-site-field.model.ts │ │ │ ├── sn-site-genai.model.ts │ │ │ ├── sn-site-locale.model.ts │ │ │ ├── sn-site-merge-field.model.ts │ │ │ ├── sn-site-merge.model.ts │ │ │ ├── sn-site-spotlight-document.model.ts │ │ │ ├── sn-site-spotlight-term.model.ts │ │ │ ├── sn-site-spotlight.model.ts │ │ │ └── sn-site.model.ts │ │ ├── store │ │ │ ├── store-instance.model.ts │ │ │ └── store-vendor.model.ts │ │ └── token │ │ │ └── token-instance.model.ts │ ├── services │ │ ├── authorization.service.ts │ │ ├── integration.service.ts │ │ ├── llm.service.ts │ │ ├── locale.service.ts │ │ ├── logging.service.ts │ │ ├── se.service.ts │ │ ├── sn.faceted.field.service.ts │ │ ├── sn.field.service.ts │ │ ├── sn.field.type.service.ts │ │ ├── sn.service.ts │ │ ├── sn.site.locale.service.ts │ │ ├── sn.site.merge.service.ts │ │ ├── sn.site.result.ranking.service.ts │ │ ├── sn.site.spotlight.service.ts │ │ ├── store.service.ts │ │ └── token.service.ts │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── turing-spring.cmd ├── turing-spring ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── viglet │ └── turing │ └── spring │ ├── jpa │ ├── TurUuid.java │ └── TurUuidGenerator.java │ └── utils │ ├── TurPersistenceUtils.java │ └── TurSpringUtils.java ├── turing-ui ├── .editorconfig ├── .gitignore ├── README.adoc ├── angular.json ├── dist │ └── angular-octicons │ │ ├── README.md │ │ ├── esm2020 │ │ ├── angular-octicons.mjs │ │ ├── lib │ │ │ ├── angular-octicons.module.mjs │ │ │ └── octicon.directive.mjs │ │ └── public-api.mjs │ │ ├── fesm2015 │ │ ├── angular-octicons.mjs │ │ └── angular-octicons.mjs.map │ │ ├── fesm2020 │ │ ├── angular-octicons.mjs │ │ └── angular-octicons.mjs.map │ │ ├── index.d.ts │ │ ├── lib │ │ ├── angular-octicons.module.d.ts │ │ └── octicon.directive.d.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ └── public-api.d.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── package-lock.json ├── package.json ├── projects │ ├── angular-octicons │ │ ├── README.md │ │ ├── karma.conf.js │ │ ├── ng-package.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── angular-octicons.module.ts │ │ │ │ ├── octicon.directive.spec.ts │ │ │ │ └── octicon.directive.ts │ │ │ ├── public-api.ts │ │ │ └── test.ts │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json │ ├── console │ │ ├── .browserslistrc │ │ ├── karma.conf.js │ │ ├── src │ │ │ ├── adm │ │ │ │ ├── adm-routing.module.ts │ │ │ │ ├── adm.module.ts │ │ │ │ ├── component │ │ │ │ │ ├── group │ │ │ │ │ │ ├── adm-group-detail-page.component.html │ │ │ │ │ │ ├── adm-group-detail-page.component.ts │ │ │ │ │ │ ├── adm-group-list-page.component.html │ │ │ │ │ │ ├── adm-group-list-page.component.ts │ │ │ │ │ │ ├── adm-group-page.component.html │ │ │ │ │ │ ├── adm-group-page.component.ts │ │ │ │ │ │ ├── adm-group-users-page.component.html │ │ │ │ │ │ └── adm-group-users-page.component.ts │ │ │ │ │ ├── root │ │ │ │ │ │ ├── adm-root-page.component.html │ │ │ │ │ │ └── adm-root-page.component.ts │ │ │ │ │ └── user │ │ │ │ │ │ ├── adm-user-detail-page.component.html │ │ │ │ │ │ ├── adm-user-detail-page.component.ts │ │ │ │ │ │ ├── adm-user-groups-page.component.html │ │ │ │ │ │ ├── adm-user-groups-page.component.ts │ │ │ │ │ │ ├── adm-user-list-page.component.html │ │ │ │ │ │ ├── adm-user-list-page.component.ts │ │ │ │ │ │ ├── adm-user-page.component.html │ │ │ │ │ │ └── adm-user-page.component.ts │ │ │ │ ├── model │ │ │ │ │ ├── adm-group.model.ts │ │ │ │ │ └── adm-user.model.ts │ │ │ │ └── service │ │ │ │ │ ├── adm-group.service.ts │ │ │ │ │ └── adm-user.service.ts │ │ │ ├── app │ │ │ │ ├── _helpers │ │ │ │ │ ├── auth.guard.ts │ │ │ │ │ ├── basic-auth.interceptor.ts │ │ │ │ │ ├── error.interceptor.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── _model │ │ │ │ │ └── discovery.model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── directive │ │ │ │ │ └── identicon-hash.directive.ts │ │ │ │ └── page │ │ │ │ │ └── app │ │ │ │ │ ├── app.component.html │ │ │ │ │ └── app.component.ts │ │ │ ├── commons │ │ │ │ ├── commons.module.ts │ │ │ │ ├── component │ │ │ │ │ ├── header │ │ │ │ │ │ ├── header.component.html │ │ │ │ │ │ └── header.component.ts │ │ │ │ │ └── logo │ │ │ │ │ │ ├── logo.component.spec.ts │ │ │ │ │ │ └── logo.component.ts │ │ │ │ └── pipe │ │ │ │ │ ├── fullTextSearch.pipe.ts │ │ │ │ │ └── sortBy.pipe.ts │ │ │ ├── console │ │ │ │ ├── console-page.component.html │ │ │ │ └── console-page.component.ts │ │ │ ├── dev │ │ │ │ ├── component │ │ │ │ │ ├── root │ │ │ │ │ │ ├── dev-root-page.component.html │ │ │ │ │ │ └── dev-root-page.component.ts │ │ │ │ │ └── token │ │ │ │ │ │ ├── dev-token-list-page.component.html │ │ │ │ │ │ ├── dev-token-list-page.component.ts │ │ │ │ │ │ ├── dev-token-page.component.html │ │ │ │ │ │ └── dev-token-page.component.ts │ │ │ │ ├── dev-routing.module.ts │ │ │ │ ├── dev.module.ts │ │ │ │ ├── model │ │ │ │ │ └── dev-token.model.ts │ │ │ │ └── service │ │ │ │ │ └── dev-token.service.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── integration │ │ │ │ ├── component │ │ │ │ │ ├── instance │ │ │ │ │ │ ├── aem │ │ │ │ │ │ │ ├── integration-aem-list-source.component.html │ │ │ │ │ │ │ ├── integration-aem-list-source.component.ts │ │ │ │ │ │ │ ├── integration-aem-menu-page.component.html │ │ │ │ │ │ │ ├── integration-aem-menu-page.component.ts │ │ │ │ │ │ │ ├── integration-aem-source.component.html │ │ │ │ │ │ │ └── integration-aem-source.component.ts │ │ │ │ │ │ ├── indexing-rules │ │ │ │ │ │ │ ├── integration-indexing-rules-list-page.component.html │ │ │ │ │ │ │ ├── integration-indexing-rules-list-page.component.ts │ │ │ │ │ │ │ ├── integration-indexing-rules-page.component.html │ │ │ │ │ │ │ ├── integration-indexing-rules-page.component.ts │ │ │ │ │ │ │ ├── integration-indexing-rules-root-page.component.html │ │ │ │ │ │ │ └── integration-indexing-rules-root-page.component.ts │ │ │ │ │ │ ├── integration-instance-detail-page.component.html │ │ │ │ │ │ ├── integration-instance-detail-page.component.ts │ │ │ │ │ │ ├── integration-instance-list-page.component.html │ │ │ │ │ │ ├── integration-instance-list-page.component.ts │ │ │ │ │ │ ├── monitoring │ │ │ │ │ │ │ ├── integration-monitoring-page.component.html │ │ │ │ │ │ │ └── integration-monitoring-page.component.ts │ │ │ │ │ │ └── wc │ │ │ │ │ │ │ ├── integration-wc-list-page.component.html │ │ │ │ │ │ │ ├── integration-wc-list-page.component.ts │ │ │ │ │ │ │ ├── integration-wc-menu-page.component.html │ │ │ │ │ │ │ ├── integration-wc-menu-page.component.ts │ │ │ │ │ │ │ ├── integration-wc-page.component.html │ │ │ │ │ │ │ └── integration-wc-page.component.ts │ │ │ │ │ └── root │ │ │ │ │ │ ├── integration-root-page.component.html │ │ │ │ │ │ └── integration-root-page.component.ts │ │ │ │ ├── integration-routing.module.ts │ │ │ │ ├── integration.module.ts │ │ │ │ ├── model │ │ │ │ │ ├── integration-aem-locale-path.model.ts │ │ │ │ │ ├── integration-aem-source.model.ts │ │ │ │ │ ├── integration-indexing-rule.model.ts │ │ │ │ │ ├── integration-indexing.model.ts │ │ │ │ │ ├── integration-instance.model.ts │ │ │ │ │ ├── integration-monitoring.model.ts │ │ │ │ │ ├── integration-vendor.model.ts │ │ │ │ │ ├── integration-wc-attrib.model.ts │ │ │ │ │ ├── integration-wc-extension.model.ts │ │ │ │ │ ├── integration-wc-source.model.ts │ │ │ │ │ └── integration-wc-url.model.ts │ │ │ │ └── service │ │ │ │ │ ├── integration-aem-source.service.ts │ │ │ │ │ ├── integration-connector.service.ts │ │ │ │ │ ├── integration-indexing-rule.service.ts │ │ │ │ │ ├── integration-instance.service.ts │ │ │ │ │ ├── integration-monitoring.service.ts │ │ │ │ │ ├── integration-vendor.service.ts │ │ │ │ │ └── integration-wc-source.service.ts │ │ │ ├── llm │ │ │ │ ├── component │ │ │ │ │ ├── instance │ │ │ │ │ │ ├── llm-instance-list-page.component.html │ │ │ │ │ │ ├── llm-instance-list-page.component.ts │ │ │ │ │ │ ├── llm-instance-page.component.html │ │ │ │ │ │ └── llm-instance-page.component.ts │ │ │ │ │ └── root │ │ │ │ │ │ ├── llm-root-page.component.html │ │ │ │ │ │ └── llm-root-page.component.ts │ │ │ │ ├── llm-routing.module.ts │ │ │ │ ├── llm.module.ts │ │ │ │ ├── model │ │ │ │ │ ├── llm-instance.model.ts │ │ │ │ │ └── llm-vendor.model.ts │ │ │ │ └── service │ │ │ │ │ ├── llm-instance.service.ts │ │ │ │ │ └── llm-vendor.service.ts │ │ │ ├── locale │ │ │ │ ├── model │ │ │ │ │ └── locale.model.ts │ │ │ │ └── service │ │ │ │ │ └── locale.service.ts │ │ │ ├── logging │ │ │ │ ├── component │ │ │ │ │ ├── aem │ │ │ │ │ │ ├── logging-aem-page.component.html │ │ │ │ │ │ └── logging-aem-page.component.ts │ │ │ │ │ ├── indexing │ │ │ │ │ │ ├── logging-indexing-page.component.html │ │ │ │ │ │ └── logging-indexing-page.component.ts │ │ │ │ │ ├── root │ │ │ │ │ │ ├── logging-root-page.component.html │ │ │ │ │ │ └── logging-root-page.component.ts │ │ │ │ │ └── server │ │ │ │ │ │ ├── logging-server-page.component.html │ │ │ │ │ │ └── logging-server-page.component.ts │ │ │ │ ├── logging-routing.module.ts │ │ │ │ ├── logging.module.ts │ │ │ │ ├── model │ │ │ │ │ ├── logging-general.model.ts │ │ │ │ │ └── logging-indexing.model.ts │ │ │ │ └── service │ │ │ │ │ └── logging.service.ts │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── se │ │ │ │ ├── component │ │ │ │ │ ├── instance │ │ │ │ │ │ ├── se-instance-list-page.component.html │ │ │ │ │ │ ├── se-instance-list-page.component.ts │ │ │ │ │ │ ├── se-instance-page.component.html │ │ │ │ │ │ └── se-instance-page.component.ts │ │ │ │ │ └── root │ │ │ │ │ │ ├── se-root-page.component.html │ │ │ │ │ │ └── se-root-page.component.ts │ │ │ │ ├── model │ │ │ │ │ ├── se-instance.model.ts │ │ │ │ │ └── se-vendor.model.ts │ │ │ │ ├── se-routing.module.ts │ │ │ │ ├── se.module.ts │ │ │ │ └── service │ │ │ │ │ ├── se-instance.service.ts │ │ │ │ │ └── se-vendor.service.ts │ │ │ ├── sn │ │ │ │ ├── component │ │ │ │ │ ├── root │ │ │ │ │ │ ├── sn-root-page.component.html │ │ │ │ │ │ └── sn-root-page.component.ts │ │ │ │ │ └── site │ │ │ │ │ │ ├── facet │ │ │ │ │ │ ├── sn-facet-ordering-list-page.component.html │ │ │ │ │ │ ├── sn-facet-ordering-list-page.component.ts │ │ │ │ │ │ ├── sn-facet-ordering-root-page.component.html │ │ │ │ │ │ └── sn-facet-ordering-root-page.component.ts │ │ │ │ │ │ ├── field │ │ │ │ │ │ ├── sn-site-field-list-page.component.html │ │ │ │ │ │ ├── sn-site-field-list-page.component.ts │ │ │ │ │ │ ├── sn-site-field-page.component.html │ │ │ │ │ │ ├── sn-site-field-page.component.ts │ │ │ │ │ │ ├── sn-site-field-root-page.component.html │ │ │ │ │ │ └── sn-site-field-root-page.component.ts │ │ │ │ │ │ ├── genai │ │ │ │ │ │ ├── sn-site-genai-page.component.html │ │ │ │ │ │ └── sn-site-genai-page.component.ts │ │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── sn-site-locale-list-page.component.html │ │ │ │ │ │ ├── sn-site-locale-list-page.component.ts │ │ │ │ │ │ ├── sn-site-locale-page.component.html │ │ │ │ │ │ ├── sn-site-locale-page.component.ts │ │ │ │ │ │ ├── sn-site-locale-root-page.component.html │ │ │ │ │ │ └── sn-site-locale-root-page.component.ts │ │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── sn-site-merge-list-page.component.html │ │ │ │ │ │ ├── sn-site-merge-list-page.component.ts │ │ │ │ │ │ ├── sn-site-merge-page.component.html │ │ │ │ │ │ ├── sn-site-merge-page.component.ts │ │ │ │ │ │ ├── sn-site-merge-root-page.component.html │ │ │ │ │ │ └── sn-site-merge-root-page.component.ts │ │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── sn-site-metrics-root-page.component.html │ │ │ │ │ │ ├── sn-site-metrics-root-page.component.ts │ │ │ │ │ │ ├── sn-site-metrics-top-terms-page.component.html │ │ │ │ │ │ ├── sn-site-metrics-top-terms-page.component.ts │ │ │ │ │ │ ├── sn-site-metrics-top-terms-root-page.component.html │ │ │ │ │ │ └── sn-site-metrics-top-terms-root-page.component.ts │ │ │ │ │ │ ├── ranking │ │ │ │ │ │ ├── sn-ranking-expression-list-page.component.html │ │ │ │ │ │ ├── sn-ranking-expression-list-page.component.ts │ │ │ │ │ │ ├── sn-ranking-expression-page.component.html │ │ │ │ │ │ ├── sn-ranking-expression-page.component.ts │ │ │ │ │ │ ├── sn-ranking-expression-root-page.component.html │ │ │ │ │ │ └── sn-ranking-expression-root-page.component.ts │ │ │ │ │ │ ├── sn-site-detail-page.component.html │ │ │ │ │ │ ├── sn-site-detail-page.component.ts │ │ │ │ │ │ ├── sn-site-list-page.component.html │ │ │ │ │ │ ├── sn-site-list-page.component.ts │ │ │ │ │ │ ├── sn-site-page.component.html │ │ │ │ │ │ ├── sn-site-page.component.ts │ │ │ │ │ │ ├── sn-site-ui-page.component.html │ │ │ │ │ │ ├── sn-site-ui-page.component.ts │ │ │ │ │ │ └── spotlight │ │ │ │ │ │ ├── sn-site-spotlight-list-page.component.html │ │ │ │ │ │ ├── sn-site-spotlight-list-page.component.ts │ │ │ │ │ │ ├── sn-site-spotlight-page.component.html │ │ │ │ │ │ ├── sn-site-spotlight-page.component.ts │ │ │ │ │ │ ├── sn-site-spotlight-root-page.component.html │ │ │ │ │ │ └── sn-site-spotlight-root-page.component.ts │ │ │ │ ├── model │ │ │ │ │ ├── sn-core-check.model.ts │ │ │ │ │ ├── sn-field-check.model.ts │ │ │ │ │ ├── sn-field-core-check.model.ts │ │ │ │ │ ├── sn-field-status.model.ts │ │ │ │ │ ├── sn-field-type.model.ts │ │ │ │ │ ├── sn-ranking-condition.model.ts │ │ │ │ │ ├── sn-ranking-expression.model.ts │ │ │ │ │ ├── sn-site-facet--field-sort.enum.ts │ │ │ │ │ ├── sn-site-facet-range.enum.ts │ │ │ │ │ ├── sn-site-facet-sort.enum.ts │ │ │ │ │ ├── sn-site-facet.enum.ts │ │ │ │ │ ├── sn-site-facet.field.enum.ts │ │ │ │ │ ├── sn-site-field-facet.model.ts │ │ │ │ │ ├── sn-site-field.model.ts │ │ │ │ │ ├── sn-site-genai.model.ts │ │ │ │ │ ├── sn-site-locale.model.ts │ │ │ │ │ ├── sn-site-merge-field.model.ts │ │ │ │ │ ├── sn-site-merge.model.ts │ │ │ │ │ ├── sn-site-metrics-term.model.ts │ │ │ │ │ ├── sn-site-metrics-top-term.model.ts │ │ │ │ │ ├── sn-site-monitoring.model.ts │ │ │ │ │ ├── sn-site-spotlight-document.model.ts │ │ │ │ │ ├── sn-site-spotlight-term.model.ts │ │ │ │ │ ├── sn-site-spotlight.model.ts │ │ │ │ │ └── sn-site.model.ts │ │ │ │ ├── service │ │ │ │ │ ├── sn-field-type.service.ts │ │ │ │ │ ├── sn-ranking-expression.service.ts │ │ │ │ │ ├── sn-site-locale.service.ts │ │ │ │ │ ├── sn-site-merge.service.ts │ │ │ │ │ ├── sn-site-metrics.service.ts │ │ │ │ │ ├── sn-site-spotlight.service.ts │ │ │ │ │ └── sn-site.service.ts │ │ │ │ ├── sn-routing.module.ts │ │ │ │ └── sn.module.ts │ │ │ ├── store │ │ │ │ ├── component │ │ │ │ │ ├── instance │ │ │ │ │ │ ├── store-instance-list-page.component.html │ │ │ │ │ │ ├── store-instance-list-page.component.ts │ │ │ │ │ │ ├── store-instance-page.component.html │ │ │ │ │ │ └── store-instance-page.component.ts │ │ │ │ │ └── root │ │ │ │ │ │ ├── store-root-page.component.html │ │ │ │ │ │ └── store-root-page.component.ts │ │ │ │ ├── model │ │ │ │ │ ├── store-instance.model.ts │ │ │ │ │ └── store-vendor.model.ts │ │ │ │ ├── service │ │ │ │ │ ├── store-instance.service.ts │ │ │ │ │ └── store-vendor.service.ts │ │ │ │ ├── store-routing.module.ts │ │ │ │ └── store.module.ts │ │ │ ├── styles.scss │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ ├── sn │ │ ├── .browserslistrc │ │ ├── karma.conf.js │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── directive │ │ │ │ │ └── identicon-hash.directive.ts │ │ │ │ ├── safe-html.pipe.spec.ts │ │ │ │ └── safe-html.pipe.ts │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── search │ │ │ │ ├── component │ │ │ │ │ └── root │ │ │ │ │ │ ├── search-root-page.component.html │ │ │ │ │ │ └── search-root-page.component.ts │ │ │ │ ├── model │ │ │ │ │ ├── sn-chat.model.ts │ │ │ │ │ ├── sn-search-default-fields.model.ts │ │ │ │ │ ├── sn-search-document-field.model.ts │ │ │ │ │ ├── sn-search-document-metadata.model.ts │ │ │ │ │ ├── sn-search-document.model.ts │ │ │ │ │ ├── sn-search-facet-item.model.ts │ │ │ │ │ ├── sn-search-facet.model.ts │ │ │ │ │ ├── sn-search-label.model.ts │ │ │ │ │ ├── sn-search-locale.model.ts │ │ │ │ │ ├── sn-search-pagination-item.model.ts │ │ │ │ │ ├── sn-search-query-context.model.ts │ │ │ │ │ ├── sn-search-query.model.ts │ │ │ │ │ ├── sn-search-results.model.ts │ │ │ │ │ ├── sn-search-spell-check-text.model.ts │ │ │ │ │ ├── sn-search-spell-check.model.ts │ │ │ │ │ ├── sn-search-widget.model.ts │ │ │ │ │ └── sn-search.model.ts │ │ │ │ └── service │ │ │ │ │ └── sn-search.service.ts │ │ │ ├── styles.scss │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json │ └── welcome │ │ ├── .browserslistrc │ │ ├── karma.conf.js │ │ ├── src │ │ ├── app │ │ │ ├── _models │ │ │ │ ├── index.ts │ │ │ │ ├── restInfo.ts │ │ │ │ └── user.ts │ │ │ ├── _services │ │ │ │ ├── authentication.service.ts │ │ │ │ ├── index.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── commons │ │ │ │ ├── commons.module.ts │ │ │ │ └── component │ │ │ │ │ └── logo │ │ │ │ │ └── logo.component.ts │ │ │ └── login │ │ │ │ ├── login-page │ │ │ │ ├── index.ts │ │ │ │ ├── login-page.component.html │ │ │ │ └── login-page.component.ts │ │ │ │ └── login.module.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ └── tsconfig.spec.json └── tsconfig.json ├── turing-utils ├── .gitignore ├── conf │ ├── nlp │ │ └── train │ │ │ └── train.json │ └── samples │ │ ├── turing-app.mariadb.conf │ │ ├── turing-app.oracle.conf │ │ └── turing-app.postgresql.conf ├── pom.xml ├── scripts │ └── turGenerateDBPassword.sh ├── solr │ ├── 5_x │ │ ├── converse │ │ │ ├── ca │ │ │ │ ├── conf │ │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ │ ├── protwords.txt │ │ │ │ │ ├── schema.xml │ │ │ │ │ ├── solrconfig.xml │ │ │ │ │ ├── stopwords.txt │ │ │ │ │ └── synonyms.txt │ │ │ │ └── core.properties │ │ │ ├── en │ │ │ │ ├── conf │ │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ │ ├── protwords.txt │ │ │ │ │ ├── schema.xml │ │ │ │ │ ├── solrconfig.xml │ │ │ │ │ ├── stopwords.txt │ │ │ │ │ └── synonyms.txt │ │ │ │ └── core.properties │ │ │ ├── es │ │ │ │ ├── conf │ │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ │ ├── protwords.txt │ │ │ │ │ ├── schema.xml │ │ │ │ │ ├── solrconfig.xml │ │ │ │ │ ├── stopwords.txt │ │ │ │ │ └── synonyms.txt │ │ │ │ └── core.properties │ │ │ └── pt │ │ │ │ ├── conf │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ │ └── core.properties │ │ └── turing │ │ │ ├── ca │ │ │ ├── conf │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ └── core.properties │ │ │ ├── en │ │ │ ├── conf │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ └── core.properties │ │ │ ├── es │ │ │ ├── conf │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ └── core.properties │ │ │ └── pt │ │ │ ├── conf │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ │ │ └── core.properties │ ├── 9_x │ │ ├── converse │ │ │ └── all │ │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ └── turing │ │ │ ├── ca │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ ├── en │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ ├── es │ │ │ └── conf │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_et.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ └── pt │ │ │ └── conf │ │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_et.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── solrconfig.xml │ │ │ ├── stopwords.txt │ │ │ └── synonyms.txt │ └── scripts │ │ ├── converse │ │ ├── converse-fields.csv │ │ └── converse-solr-definition.sh │ │ └── turing │ │ ├── sn-fields.csv │ │ └── sn-solr-definition.sh └── src │ └── assembly │ └── distribution.xml ├── upload_to_relese.cmd └── volumes ├── mariadb └── .gitkeep └── turing └── .gitkeep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.vscode/eclipse-java-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.vscode/eclipse-java-style.xml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/README.adoc -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/SECURITY.md -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/agents.md -------------------------------------------------------------------------------- /compile-all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/compile-all.cmd -------------------------------------------------------------------------------- /containers/mariadb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/mariadb/Dockerfile -------------------------------------------------------------------------------- /containers/mariadb/conf/turing.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/mariadb/conf/turing.cnf -------------------------------------------------------------------------------- /containers/mariadb/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/mariadb/helm/README.md -------------------------------------------------------------------------------- /containers/mariadb/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/mariadb/helm/values.yaml -------------------------------------------------------------------------------- /containers/nginx/conf.d/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/nginx/conf.d/app.conf -------------------------------------------------------------------------------- /containers/solr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/Dockerfile -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/ca/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/ca/conf/protwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/ca/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/ca/conf/schema.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/ca/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/ca/conf/solrconfig.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/ca/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/ca/conf/stopwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/ca/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/ca/conf/synonyms.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/en/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/en/conf/protwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/en/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/en/conf/schema.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/en/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/en/conf/solrconfig.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/en/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/en/conf/stopwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/en/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/en/conf/synonyms.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/es/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/es/conf/protwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/es/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/es/conf/schema.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/es/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/es/conf/solrconfig.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/es/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/es/conf/stopwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/es/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/es/conf/synonyms.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/pt/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/pt/conf/protwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/pt/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/pt/conf/schema.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/pt/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/pt/conf/solrconfig.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/pt/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/pt/conf/stopwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/configsets/pt/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/configsets/pt/conf/synonyms.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_et.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/protwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/schema.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/solrconfig.xml -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/stopwords.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/config/solr/turing/conf/synonyms.txt -------------------------------------------------------------------------------- /containers/solr/config/solr/turing/core.properties: -------------------------------------------------------------------------------- 1 | name=turing 2 | -------------------------------------------------------------------------------- /containers/solr/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/helm/README.md -------------------------------------------------------------------------------- /containers/solr/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/containers/solr/helm/values.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk21 3 | -------------------------------------------------------------------------------- /k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s.yaml -------------------------------------------------------------------------------- /k8s/turing-claim0-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-claim0-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /k8s/turing-claim1-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-claim1-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /k8s/turing-claim2-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-claim2-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /k8s/turing-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-deployment.yaml -------------------------------------------------------------------------------- /k8s/turing-mariadb-claim0-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-mariadb-claim0-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /k8s/turing-mariadb-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-mariadb-deployment.yaml -------------------------------------------------------------------------------- /k8s/turing-mariadb-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-mariadb-service.yaml -------------------------------------------------------------------------------- /k8s/turing-nginx-claim0-persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-nginx-claim0-persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /k8s/turing-nginx-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-nginx-deployment.yaml -------------------------------------------------------------------------------- /k8s/turing-nginx-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-nginx-service.yaml -------------------------------------------------------------------------------- /k8s/turing-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-service.yaml -------------------------------------------------------------------------------- /k8s/turing-solr-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-solr-deployment.yaml -------------------------------------------------------------------------------- /k8s/turing-solr-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/k8s/turing-solr-service.yaml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/pom.xml -------------------------------------------------------------------------------- /turing-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/.gitignore -------------------------------------------------------------------------------- /turing-app/auto-complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/auto-complete.md -------------------------------------------------------------------------------- /turing-app/liquibase.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/liquibase.gradle -------------------------------------------------------------------------------- /turing-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/pom.xml -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/TuringES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/TuringES.java -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/api/TurAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/api/TurAPI.java -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/api/TurAPIBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/api/TurAPIBean.java -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/genai/TurGenAi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/genai/TurGenAi.java -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/sn/TurSNQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/sn/TurSNQueue.java -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/sn/TurSNUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/sn/TurSNUtils.java -------------------------------------------------------------------------------- /turing-app/src/main/java/com/viglet/turing/solr/TurSolr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/java/com/viglet/turing/solr/TurSolr.java -------------------------------------------------------------------------------- /turing-app/src/main/resources/.gitignore: -------------------------------------------------------------------------------- 1 | /public/* 2 | 3 | -------------------------------------------------------------------------------- /turing-app/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/application.yaml -------------------------------------------------------------------------------- /turing-app/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/banner.txt -------------------------------------------------------------------------------- /turing-app/src/main/resources/bogus_mina_tls.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/bogus_mina_tls.cert -------------------------------------------------------------------------------- /turing-app/src/main/resources/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/client_secrets.json -------------------------------------------------------------------------------- /turing-app/src/main/resources/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/graphql/README.md -------------------------------------------------------------------------------- /turing-app/src/main/resources/graphql/sample-queries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/graphql/sample-queries.graphql -------------------------------------------------------------------------------- /turing-app/src/main/resources/graphql/schema.graphqls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/graphql/schema.graphqls -------------------------------------------------------------------------------- /turing-app/src/main/resources/hazelcast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/hazelcast.yaml -------------------------------------------------------------------------------- /turing-app/src/main/resources/keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/keystore -------------------------------------------------------------------------------- /turing-app/src/main/resources/liquibase-task.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/liquibase-task.properties -------------------------------------------------------------------------------- /turing-app/src/main/resources/logback-spring-console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/logback-spring-console.xml -------------------------------------------------------------------------------- /turing-app/src/main/resources/logback-spring-mongo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/logback-spring-mongo.xml -------------------------------------------------------------------------------- /turing-app/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /turing-app/src/main/resources/solr/conf/lang/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/solr/conf/lang/stopwords.txt -------------------------------------------------------------------------------- /turing-app/src/main/resources/solr/configsets/ca.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/solr/configsets/ca.zip -------------------------------------------------------------------------------- /turing-app/src/main/resources/solr/configsets/en.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/solr/configsets/en.zip -------------------------------------------------------------------------------- /turing-app/src/main/resources/solr/configsets/es.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/solr/configsets/es.zip -------------------------------------------------------------------------------- /turing-app/src/main/resources/solr/configsets/pt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/main/resources/solr/configsets/pt.zip -------------------------------------------------------------------------------- /turing-app/src/test/java/com/viglet/turing/TuringTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-app/src/test/java/com/viglet/turing/TuringTests.java -------------------------------------------------------------------------------- /turing-commons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-commons/.gitignore -------------------------------------------------------------------------------- /turing-commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-commons/pom.xml -------------------------------------------------------------------------------- /turing-dev.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-dev.cmd -------------------------------------------------------------------------------- /turing-fs-commons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-fs-commons/.gitignore -------------------------------------------------------------------------------- /turing-fs-commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-fs-commons/pom.xml -------------------------------------------------------------------------------- /turing-java-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-java-sdk/.gitignore -------------------------------------------------------------------------------- /turing-java-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-java-sdk/README.md -------------------------------------------------------------------------------- /turing-java-sdk/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-java-sdk/conf/log4j.properties -------------------------------------------------------------------------------- /turing-java-sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-java-sdk/pom.xml -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/.gitignore -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/.npmrc -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/README.md -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/USAGE_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/USAGE_EXAMPLES.md -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/build.js -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/package-lock.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/package.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/enums/TurSNFilterQueryOperator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/enums/TurSNFilterQueryOperator.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/enums/TurSNPaginationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/enums/TurSNPaginationType.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/index.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurChatMessage.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSiteLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSiteLocale.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSitePostParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSitePostParams.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearch.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchDocument.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchGroup.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchResults.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchWidget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNSiteSearchWidget.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/models/TurSNUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/models/TurSNUrl.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/src/types/TurSNSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/src/types/TurSNSearchParams.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-lib/tsconfig.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/.env -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/.gitignore -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/components.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/index.html -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/package-lock.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/package.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/public/vite.svg -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/App.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/App.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/app/routes.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/app/routes.const.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/app/search.root.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/app/search.root.page.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/app-sidebar.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/mode-toggle.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/nav-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/nav-main.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/nav-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/nav-secondary.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/nav-user.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/button.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/card.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/form.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/input.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/label.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/select.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/table.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/index.css -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/lib/utils.ts -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/main.tsx -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/style.css -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/src/typescript.svg -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/tsconfig.app.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/tsconfig.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/tsconfig.node.json -------------------------------------------------------------------------------- /turing-js-sdk/js-sdk-sample/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-js-sdk/js-sdk-sample/vite.config.ts -------------------------------------------------------------------------------- /turing-mcp-server/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-mcp-server/.gitattributes -------------------------------------------------------------------------------- /turing-mcp-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-mcp-server/.gitignore -------------------------------------------------------------------------------- /turing-mcp-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-mcp-server/pom.xml -------------------------------------------------------------------------------- /turing-mcp-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-mcp-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /turing-mcp-server/src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-mcp-server/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /turing-react/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/.env -------------------------------------------------------------------------------- /turing-react/.env.development: -------------------------------------------------------------------------------- 1 | VITE_API_URL: 'http://localhost:2700' -------------------------------------------------------------------------------- /turing-react/.env.production: -------------------------------------------------------------------------------- 1 | VITE_API_URL: '' -------------------------------------------------------------------------------- /turing-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/.gitignore -------------------------------------------------------------------------------- /turing-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/README.md -------------------------------------------------------------------------------- /turing-react/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/components.json -------------------------------------------------------------------------------- /turing-react/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/eslint.config.js -------------------------------------------------------------------------------- /turing-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/index.html -------------------------------------------------------------------------------- /turing-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/package-lock.json -------------------------------------------------------------------------------- /turing-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/package.json -------------------------------------------------------------------------------- /turing-react/public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/android-icon-144x144.png -------------------------------------------------------------------------------- /turing-react/public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/android-icon-192x192.png -------------------------------------------------------------------------------- /turing-react/public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/android-icon-36x36.png -------------------------------------------------------------------------------- /turing-react/public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/android-icon-48x48.png -------------------------------------------------------------------------------- /turing-react/public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/android-icon-72x72.png -------------------------------------------------------------------------------- /turing-react/public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/android-icon-96x96.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /turing-react/public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/apple-icon.png -------------------------------------------------------------------------------- /turing-react/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/browserconfig.xml -------------------------------------------------------------------------------- /turing-react/public/error/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/error/401.html -------------------------------------------------------------------------------- /turing-react/public/error/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/error/403.html -------------------------------------------------------------------------------- /turing-react/public/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/error/404.html -------------------------------------------------------------------------------- /turing-react/public/error/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/error/500.html -------------------------------------------------------------------------------- /turing-react/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/favicon-16x16.png -------------------------------------------------------------------------------- /turing-react/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/favicon-32x32.png -------------------------------------------------------------------------------- /turing-react/public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/favicon-96x96.png -------------------------------------------------------------------------------- /turing-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/favicon.ico -------------------------------------------------------------------------------- /turing-react/public/kc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/kc.html -------------------------------------------------------------------------------- /turing-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/manifest.json -------------------------------------------------------------------------------- /turing-react/public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /turing-react/public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /turing-react/public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /turing-react/public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /turing-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/App.css -------------------------------------------------------------------------------- /turing-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/App.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/console.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/console.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/console.root.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/console.root.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/llm/llm.instance.list.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/llm/llm.instance.list.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/llm/llm.instance.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/llm/llm.instance.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/llm/llm.instance.root.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/llm/llm.instance.root.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/logging/logging.instance.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/logging/logging.instance.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/se/se.instance.list.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/se/se.instance.list.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/se/se.instance.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/se/se.instance.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/se/se.instance.root.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/se/se.instance.root.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.behavior.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.behavior.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.detail.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.detail.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.field.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.field.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.fields.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.fields.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.genai.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.genai.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.list.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.list.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.root.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.root.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/sn/sn.site.spotlight.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/sn/sn.site.spotlight.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/store/store.instance.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/store/store.instance.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/console/token/token.instance.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/console/token/token.instance.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/login/login.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/login/login.page.tsx -------------------------------------------------------------------------------- /turing-react/src/app/routes.const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/app/routes.const.ts -------------------------------------------------------------------------------- /turing-react/src/components/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/app-sidebar.tsx -------------------------------------------------------------------------------- /turing-react/src/components/blank-slate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/blank-slate.tsx -------------------------------------------------------------------------------- /turing-react/src/components/dialog.delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/dialog.delete.tsx -------------------------------------------------------------------------------- /turing-react/src/components/draggable-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/draggable-table.tsx -------------------------------------------------------------------------------- /turing-react/src/components/dynamic-language-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/dynamic-language-field.tsx -------------------------------------------------------------------------------- /turing-react/src/components/dynamic-result-ranking-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/dynamic-result-ranking-field.tsx -------------------------------------------------------------------------------- /turing-react/src/components/integration.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/integration.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/integration.instance.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/integration.instance.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/llm.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/llm.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/llm.instance.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/llm.instance.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/logging.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/logging.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/logging.instance.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/logging.instance.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/login-form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/mode-toggle.tsx -------------------------------------------------------------------------------- /turing-react/src/components/nav-main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/nav-main.tsx -------------------------------------------------------------------------------- /turing-react/src/components/nav-secondary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/nav-secondary.tsx -------------------------------------------------------------------------------- /turing-react/src/components/nav-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/nav-user.tsx -------------------------------------------------------------------------------- /turing-react/src/components/page-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/page-content.tsx -------------------------------------------------------------------------------- /turing-react/src/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/page-header.tsx -------------------------------------------------------------------------------- /turing-react/src/components/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/page.tsx -------------------------------------------------------------------------------- /turing-react/src/components/se.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/se.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/se.instance.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/se.instance.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sn.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sn.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sn.site.behavior.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sn.site.behavior.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sn.site.field.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sn.site.field.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sn.site.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sn.site.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sn.site.result.ranking.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sn.site.result.ranking.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/store.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/store.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/store.instance.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/store.instance.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sub.page.header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sub.page.header.tsx -------------------------------------------------------------------------------- /turing-react/src/components/sub.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/sub.page.tsx -------------------------------------------------------------------------------- /turing-react/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /turing-react/src/components/token.card.list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/token.card.list.tsx -------------------------------------------------------------------------------- /turing-react/src/components/token.instance.form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/token.instance.form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/button.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/card.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/form.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/input.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/label.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/select.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/table.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /turing-react/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /turing-react/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /turing-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/index.css -------------------------------------------------------------------------------- /turing-react/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/lib/utils.ts -------------------------------------------------------------------------------- /turing-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/main.tsx -------------------------------------------------------------------------------- /turing-react/src/models/auth/discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/auth/discovery.ts -------------------------------------------------------------------------------- /turing-react/src/models/auth/rest-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/auth/rest-info.ts -------------------------------------------------------------------------------- /turing-react/src/models/llm/llm-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/llm/llm-instance.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/llm/llm-vendor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/llm/llm-vendor.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/locale/locale.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/locale/locale.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/logging/logging-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/logging/logging-instance.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/logging/logging-vendor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/logging/logging-vendor.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/se/se-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/se/se-instance.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/se/se-vendor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/se/se-vendor.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-field-type.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-field-type.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-ranking-condition.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-ranking-condition.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-ranking-expression.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-ranking-expression.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-facet-field-sort.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-facet-field-sort.type.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-facet-range.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-facet-range.type.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-facet-sort.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-facet-sort.type.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-facet.field.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-facet.field.type.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-facet.type.ts: -------------------------------------------------------------------------------- 1 | export type TurSNSiteFacetTypes = "AND" | "OR"; 2 | -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-field-facet.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-field-facet.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-field.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-field.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-genai.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-genai.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-locale.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-locale.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-merge-field.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-merge-field.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-merge.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-merge.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-spotlight-document.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-spotlight-document.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-spotlight-term.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-spotlight-term.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site-spotlight.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site-spotlight.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/sn/sn-site.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/sn/sn-site.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/store/store-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/store/store-instance.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/store/store-vendor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/store/store-vendor.model.ts -------------------------------------------------------------------------------- /turing-react/src/models/token/token-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/models/token/token-instance.model.ts -------------------------------------------------------------------------------- /turing-react/src/services/authorization.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/authorization.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/integration.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/integration.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/llm.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/llm.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/locale.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/locale.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/logging.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/logging.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/se.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/se.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.faceted.field.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.faceted.field.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.field.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.field.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.field.type.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.field.type.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.site.locale.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.site.locale.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.site.merge.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.site.merge.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.site.result.ranking.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.site.result.ranking.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/sn.site.spotlight.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/sn.site.spotlight.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/store.service.ts -------------------------------------------------------------------------------- /turing-react/src/services/token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/src/services/token.service.ts -------------------------------------------------------------------------------- /turing-react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /turing-react/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/tsconfig.app.json -------------------------------------------------------------------------------- /turing-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/tsconfig.json -------------------------------------------------------------------------------- /turing-react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/tsconfig.node.json -------------------------------------------------------------------------------- /turing-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-react/vite.config.ts -------------------------------------------------------------------------------- /turing-spring.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-spring.cmd -------------------------------------------------------------------------------- /turing-spring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-spring/.gitignore -------------------------------------------------------------------------------- /turing-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-spring/pom.xml -------------------------------------------------------------------------------- /turing-ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/.editorconfig -------------------------------------------------------------------------------- /turing-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/.gitignore -------------------------------------------------------------------------------- /turing-ui/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/README.adoc -------------------------------------------------------------------------------- /turing-ui/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/angular.json -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/README.md -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/esm2020/angular-octicons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/esm2020/angular-octicons.mjs -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/esm2020/public-api.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/esm2020/public-api.mjs -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/fesm2015/angular-octicons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/fesm2015/angular-octicons.mjs -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/fesm2020/angular-octicons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/fesm2020/angular-octicons.mjs -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/index.d.ts -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/lib/octicon.directive.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/lib/octicon.directive.d.ts -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/package-lock.json -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/package.json -------------------------------------------------------------------------------- /turing-ui/dist/angular-octicons/public-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/dist/angular-octicons/public-api.d.ts -------------------------------------------------------------------------------- /turing-ui/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | apiUrl: '', 3 | production: true 4 | }; 5 | -------------------------------------------------------------------------------- /turing-ui/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/environments/environment.ts -------------------------------------------------------------------------------- /turing-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/package-lock.json -------------------------------------------------------------------------------- /turing-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/package.json -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/README.md -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/karma.conf.js -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/ng-package.json -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/package-lock.json -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/package.json -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/src/public-api.ts -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/src/test.ts -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/tsconfig.lib.json -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /turing-ui/projects/angular-octicons/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/angular-octicons/tsconfig.spec.json -------------------------------------------------------------------------------- /turing-ui/projects/console/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/.browserslistrc -------------------------------------------------------------------------------- /turing-ui/projects/console/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/karma.conf.js -------------------------------------------------------------------------------- /turing-ui/projects/console/src/adm/adm-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/adm/adm-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/adm/adm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/adm/adm.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/adm/model/adm-group.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/adm/model/adm-group.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/adm/model/adm-user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/adm/model/adm-user.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/adm/service/adm-user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/adm/service/adm-user.service.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/_helpers/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/_helpers/auth.guard.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/_helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/_helpers/index.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/_model/discovery.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/_model/discovery.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/app.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/page/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/page/app/app.component.html -------------------------------------------------------------------------------- /turing-ui/projects/console/src/app/page/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/app/page/app/app.component.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/commons/commons.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/commons/commons.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/commons/pipe/sortBy.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/commons/pipe/sortBy.pipe.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/dev/dev-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/dev/dev-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/dev/dev.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/dev/dev.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/dev/model/dev-token.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/dev/model/dev-token.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/favicon.ico -------------------------------------------------------------------------------- /turing-ui/projects/console/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/index.html -------------------------------------------------------------------------------- /turing-ui/projects/console/src/llm/llm-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/llm/llm-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/llm/llm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/llm/llm.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/llm/model/llm-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/llm/model/llm-instance.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/llm/model/llm-vendor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/llm/model/llm-vendor.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/locale/model/locale.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/locale/model/locale.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/logging/logging.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/logging/logging.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/main.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/polyfills.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/se/model/se-instance.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/se/model/se-instance.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/se/model/se-vendor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/se/model/se-vendor.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/se/se-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/se/se-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/se/se.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/se/se.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/se/service/se-vendor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/se/service/se-vendor.service.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-core-check.model.ts: -------------------------------------------------------------------------------- 1 | export interface TurSNCoreCheck { 2 | name: string; 3 | exists: boolean; 4 | } 5 | -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-field-type.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/model/sn-field-type.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-site-facet.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/model/sn-site-facet.enum.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-site-field.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/model/sn-site-field.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-site-genai.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/model/sn-site-genai.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-site-merge.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/model/sn-site-merge.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/model/sn-site.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/model/sn-site.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/service/sn-site.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/service/sn-site.service.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/sn-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/sn-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/sn/sn.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/sn/sn.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/store/store-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/store/store-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/store/store.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/store/store.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/styles.scss -------------------------------------------------------------------------------- /turing-ui/projects/console/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/src/test.ts -------------------------------------------------------------------------------- /turing-ui/projects/console/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/tsconfig.app.json -------------------------------------------------------------------------------- /turing-ui/projects/console/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/console/tsconfig.spec.json -------------------------------------------------------------------------------- /turing-ui/projects/sn/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/.browserslistrc -------------------------------------------------------------------------------- /turing-ui/projects/sn/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/karma.conf.js -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/app/app.component.html -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/app/app.component.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/app/app.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/app/safe-html.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/app/safe-html.pipe.spec.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/app/safe-html.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/app/safe-html.pipe.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | apiUrl: '', 3 | production: true 4 | }; 5 | -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/environments/environment.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/favicon.ico -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/index.html -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/main.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/polyfills.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/search/model/sn-chat.model.ts: -------------------------------------------------------------------------------- 1 | export interface TurSNChat { 2 | text: string; 3 | enabled: boolean; 4 | } 5 | -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/search/model/sn-search-document-field.model.ts: -------------------------------------------------------------------------------- 1 | export interface TurSNSearchDocumentField { 2 | [key: string]: any 3 | } 4 | -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/search/model/sn-search.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/search/model/sn-search.model.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/search/service/sn-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/search/service/sn-search.service.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/styles.scss -------------------------------------------------------------------------------- /turing-ui/projects/sn/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/src/test.ts -------------------------------------------------------------------------------- /turing-ui/projects/sn/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/tsconfig.app.json -------------------------------------------------------------------------------- /turing-ui/projects/sn/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/sn/tsconfig.spec.json -------------------------------------------------------------------------------- /turing-ui/projects/welcome/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/.browserslistrc -------------------------------------------------------------------------------- /turing-ui/projects/welcome/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/karma.conf.js -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/_models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/_models/index.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/_models/restInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/_models/restInfo.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/_models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/_models/user.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/_services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/_services/index.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/_services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/_services/user.service.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/app.component.html -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/app.component.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/app.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/commons/commons.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/commons/commons.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/login/login-page/index.ts: -------------------------------------------------------------------------------- 1 | export * from './login-page.component'; 2 | -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/app/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/app/login/login.module.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/favicon.ico -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/index.html -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/main.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/polyfills.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/styles.scss -------------------------------------------------------------------------------- /turing-ui/projects/welcome/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/src/test.ts -------------------------------------------------------------------------------- /turing-ui/projects/welcome/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/tsconfig.app.json -------------------------------------------------------------------------------- /turing-ui/projects/welcome/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/projects/welcome/tsconfig.spec.json -------------------------------------------------------------------------------- /turing-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-ui/tsconfig.json -------------------------------------------------------------------------------- /turing-utils/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /turing-utils/conf/nlp/train/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/conf/nlp/train/train.json -------------------------------------------------------------------------------- /turing-utils/conf/samples/turing-app.mariadb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/conf/samples/turing-app.mariadb.conf -------------------------------------------------------------------------------- /turing-utils/conf/samples/turing-app.oracle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/conf/samples/turing-app.oracle.conf -------------------------------------------------------------------------------- /turing-utils/conf/samples/turing-app.postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/conf/samples/turing-app.postgresql.conf -------------------------------------------------------------------------------- /turing-utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/pom.xml -------------------------------------------------------------------------------- /turing-utils/scripts/turGenerateDBPassword.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/scripts/turGenerateDBPassword.sh -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/ca/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/ca/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/ca/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/ca/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/ca/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/ca/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/ca/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/ca/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/ca/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/ca/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/en/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/en/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/en/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/en/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/en/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/en/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/en/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/en/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/en/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/en/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/es/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/es/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/es/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/es/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/es/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/es/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/es/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/es/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/es/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/es/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/pt/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/pt/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/pt/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/pt/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/pt/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/pt/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/pt/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/pt/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/converse/pt/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/converse/pt/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/ca/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/ca/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/ca/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/ca/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/ca/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/ca/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/ca/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/ca/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/ca/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/ca/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/en/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/en/conf/protwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/en/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/en/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/en/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/en/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/en/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/en/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/en/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/en/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/en/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/es/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/es/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/es/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/es/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/es/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/es/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/es/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/es/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/es/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/es/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/pt/conf/protwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/pt/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/pt/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/pt/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/pt/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/pt/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/pt/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/pt/conf/synonyms.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /turing-utils/solr/5_x/turing/pt/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/5_x/turing/pt/core.properties -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_et.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/protwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/converse/all/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/converse/all/conf/synonyms.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_et.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/protwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/ca/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/ca/conf/synonyms.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_et.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/protwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/en/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/en/conf/synonyms.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_et.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/protwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/es/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/es/conf/synonyms.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_et.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/protwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/schema.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/solrconfig.xml -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/stopwords.txt -------------------------------------------------------------------------------- /turing-utils/solr/9_x/turing/pt/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/9_x/turing/pt/conf/synonyms.txt -------------------------------------------------------------------------------- /turing-utils/solr/scripts/converse/converse-fields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/scripts/converse/converse-fields.csv -------------------------------------------------------------------------------- /turing-utils/solr/scripts/turing/sn-fields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/scripts/turing/sn-fields.csv -------------------------------------------------------------------------------- /turing-utils/solr/scripts/turing/sn-solr-definition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/solr/scripts/turing/sn-solr-definition.sh -------------------------------------------------------------------------------- /turing-utils/src/assembly/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/turing-utils/src/assembly/distribution.xml -------------------------------------------------------------------------------- /upload_to_relese.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openviglet/turing/HEAD/upload_to_relese.cmd -------------------------------------------------------------------------------- /volumes/mariadb/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /volumes/turing/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------