Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 94 for LLM (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/llm/ChatIntent.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.llm;
    
    /**
     * Represents the intent type detected from a user's chat message.
     */
    public enum ChatIntent {
    
        /** User wants to search for documents in Fess */
        SEARCH("search"),
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.llm;
    
    /**
     * Represents the result of intent detection from user input.
     * Contains the detected intent type, Fess query, and other metadata.
     */
    public class IntentDetectionResult {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. src/main/resources/fess_label.properties

    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=Region
    labels.storage_project_id=Project ID
    labels.storage_credentials_path=Credentials Path
    labels.general_rag=AI Mode
    labels.rag_llm_name=LLM Provider
    labels.llm_log_level=Log Level
    labels.send_testmail=Send Test Mail
    labels.backup_configuration=Backup
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk File
    labels.backup_button_upload=Upload
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  4. docs/ru/docs/tutorial/stream-json-lines.md

    Однако обычно об этом не нужно беспокоиться — всё делается автоматически, читайте дальше. 🤓
    
    ///
    
    ## Варианты использования { #use-cases }
    
    Вы можете использовать это для стриминга данных из сервиса **AI LLM**, из **логов** или **телеметрии**, или из других типов данных, которые можно структурировать в элементы **JSON**.
    
    /// tip | Совет
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  5. docs/uk/docs/tutorial/stream-json-lines.md

    Зазвичай про це не треба турбуватися, усе робиться автоматично, читайте далі. 🤓
    
    ///
    
    ## Випадки використання { #use-cases }
    
    Ви можете використовувати це, щоб стрімити дані зі служби **AI LLM**, із **логів** чи **телеметрії**, або з інших типів даних, які можна структурувати як елементи **JSON**.
    
    /// tip | Порада
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:25:54 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/llm/ChatIntentTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.llm;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class ChatIntentTest extends UnitFessTestCase {
    
        @Test
        public void test_values() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  7. fastapi/applications.py

                ),
            ],
            *,
            prompt: Annotated[
                str,
                Doc(
                    """
                    The prompt to send to the LLM provider along with the payload.
    
                    This tells the LLM what to do with the request body.
                    """
                ),
            ] = "",
        ) -> Callable[[DecoratedCallable], DecoratedCallable]:
            """
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
  8. docs/ru/docs/advanced/stream-data.md

    /// info | Информация
    
    Добавлено в FastAPI 0.134.0.
    
    ///
    
    ## Варианты использования { #use-cases }
    
    Это можно использовать, если вы хотите стримить чистые строки, например, напрямую из вывода сервиса **AI LLM**.
    
    Также вы можете стримить **большие бинарные файлы**, передавая каждый чанк данных по мере чтения, без необходимости загружать всё в память сразу.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/llm/LlmChatResponseTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.llm;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    public class LlmChatResponseTest extends UnitFessTestCase {
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/llm/LlmMessageTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.llm;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    public class LlmMessageTest extends UnitFessTestCase {
    
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 3.7K bytes
    - Click Count (0)
Back to Top