- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for ollama (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/llm/LlmClient.java
package org.codelibs.fess.llm; import java.util.List; import java.util.Map; /** * Interface for LLM (Large Language Model) clients. * Implementations provide integration with different LLM providers * such as Ollama, OpenAI, and Google Gemini. * * In addition to low-level chat operations, this interface defines * high-level RAG workflow methods that allow each provider to optimize
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
/** * Gets the configured LLM type from the system configuration. * * @return The LLM type string from configuration (e.g., "ollama", "openai", "gemini") */ protected String getLlmType() { return ComponentUtil.getFessConfig().getSystemProperty("rag.llm.name", "ollama"); } /** * Checks if RAG chat feature is enabled. * * @return true if RAG chat is enabled, false otherwiseCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 11:10:51 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
// Set LLM type name as Access Type for search log request.setAttribute(Constants.SEARCH_LOG_ACCESS_TYPE, ComponentUtil.getFessConfig().getSystemProperty("rag.llm.name", "ollama")); final Map<String, String[]> fields = parseFieldFilters(request); final String[] extraQueries = parseExtraQueries(request); final ChatResult result;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default void setRagLlmName(final String value) { setSystemProperty(Constants.RAG_LLM_NAME, value); } default String getRagLlmName() { return getSystemProperty(Constants.RAG_LLM_NAME, "ollama"); } Integer getLdapMaxUsernameLengthAsInteger(); default String getLdapSecurityPrincipal(final String username) { final String value;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
docs/es/docs/tutorial/debugging.md
# Depuración { #debugging } Puedes conectar el depurador en tu editor, por ejemplo con Visual Studio Code o PyCharm. ## Llama a `uvicorn` { #call-uvicorn } En tu aplicación de FastAPI, importa y ejecuta `uvicorn` directamente: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### Acerca de `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/index.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10K bytes - Click Count (0) -
docs/es/docs/async.md
* que una query de base de datos devuelva los resultados * etc. Como el tiempo de ejecución se consume principalmente esperando operaciones de <abbr title="Input and Output - Entrada y salida">I/O</abbr>, las llaman operaciones "I/O bound".
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 24.8K bytes - Click Count (0) -
docs/tr/docs/how-to/conditional-openapi.md
# Koşullu OpenAPI { #conditional-openapi } Gerekirse, ayarlar ve environment variable'ları kullanarak OpenAPI'yi ortama göre koşullu şekilde yapılandırabilir, hatta tamamen devre dışı bırakabilirsiniz. ## Güvenlik, API'ler ve dokümantasyon hakkında { #about-security-apis-and-docs } Production ortamında dokümantasyon arayüzlerini gizlemek, API'nizi korumanın yolu olmamalıdır.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/sub-dependencies.md
Y guardará el valor devuelto en un <dfn title="Una utilidad/sistema para almacenar valores calculados/generados, para reutilizarlos en lugar de calcularlos nuevamente.">"caché"</dfn> y lo pasará a todos los "dependants" que lo necesiten en ese request específico, en lugar de llamar a la dependencia varias veces para el mismo request.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:41:41 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/es/docs/python-types.md
Para definirlo usas la <dfn title='también llamado "operador OR a nivel de bits", pero ese significado no es relevante aquí'>barra vertical (`|`)</dfn> para separar ambos tipos. Esto se llama una "unión", porque la variable puede ser cualquiera en la unión de esos dos conjuntos de tipos. ```Python hl_lines="1" {!> ../../docs_src/python_types/tutorial008b_py310.py!} ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.6K bytes - Click Count (1)