Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 251 - 260 of 418 for Summary (0.06 seconds)

  1. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

            final ChatSession session = new ChatSession();
            session.addUserMessage("Q1");
            session.addAssistantMessage("This is a fairly long response that should be summarized using smart summary mode.");
    
            final List<LlmMessage> history = chatClient.testExtractHistory(session);
            assertEquals(2, history.size());
            assertEquals("assistant", history.get(1).getRole());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  2. tests/test_response_model_sub_types.py

            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/valid1": {
                        "get": {
                            "summary": "Valid1",
                            "operationId": "valid1_valid1_get",
                            "responses": {
                                "200": {
                                    "description": "Successful Response",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  3. tests/test_additional_responses_response_class.py

                                    "content": {"application/vnd.api+json": {"schema": {}}},
                                },
                            },
                            "summary": "A",
                            "operationId": "a_a_get",
                        }
                    },
                    "/b": {
                        "get": {
                            "responses": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/resources/templates/release-notes.asciidoc

        print "* ${change.summary}\n"
    }
    }
    if (changelogsByVersionByTypeByArea[version]["known-issue"] != null) { %>
    [discrete]
    [[known-issues-${unqualifiedVersion}]]
    === Known issues
    
    <% for (change in changelogsByVersionByTypeByArea[version].remove("known-issue").remove("_all_")) {
        print "* ${change.summary}\n"
    }
    }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  5. buildscripts/heal-manual.go

    		if status.Summary == "finished" {
    			fmt.Println("Healstatus on items ===")
    			for _, item := range status.Items {
    				if err = enc.Encode(&item); err != nil {
    					log.Fatalln(err)
    				}
    			}
    			break
    		}
    		if status.Summary == "stopped" {
    			fmt.Println("Healstatus on items ===")
    			fmt.Println("Heal failed with", status.FailureDetail)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Feb 27 09:47:58 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  6. docs/uk/docs/tutorial/path-operation-configuration.md

    FastAPI підтримує це так само, як і зі звичайними строками:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    ## Короткий опис і опис { #summary-and-description }
    
    Ви можете додати `summary` і `description`:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[17:18] *}
    
    ## Опис зі строки документації { #description-from-docstring }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6K bytes
    - Click Count (0)
  7. tests/test_additional_responses_union_duplicate_anyof.py

            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/route1": {
                        "get": {
                            "summary": "Route1",
                            "operationId": "route1_route1_get",
                            "responses": {
                                "200": {
                                    "description": "Successful Response",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  8. docs/ko/docs/how-to/general.md

    *경로 처리*에 태그를 추가하고, 문서 UI에서 이를 그룹화하려면 [튜토리얼 - 경로 처리 구성 - 태그](../tutorial/path-operation-configuration.md#tags) 문서를 읽어보세요.
    
    ## 문서화 요약 및 설명 - OpenAPI { #documentation-summary-and-description-openapi }
    
    *경로 처리*에 요약과 설명을 추가하고, 문서 UI에 표시하려면 [튜토리얼 - 경로 처리 구성 - 요약 및 설명](../tutorial/path-operation-configuration.md#summary-and-description) 문서를 읽어보세요.
    
    ## 문서화 응답 설명 - OpenAPI { #documentation-response-description-openapi }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  9. docs/uk/docs/how-to/extending-openapi.md

    - `openapi_version`: Версія специфікації OpenAPI, що використовується. Типово остання: `3.1.0`.
    - `summary`: Короткий підсумок API.
    - `description`: Опис вашого API; може містити markdown і буде показаний у документації.
    - `routes`: Список маршрутів, це кожна з зареєстрованих *операцій шляху*. Їх беруть з `app.routes`.
    
    /// info | Інформація
    
    Параметр `summary` доступний в OpenAPI 3.1.0 і вище, підтримується FastAPI 0.99.0 і вище.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  10. docs/uk/docs/how-to/general.md

    ## Короткий опис і опис - OpenAPI { #documentation-summary-and-description-openapi }
    
    Щоб додати короткий опис і опис до ваших *операцій шляху* і показати їх в інтерфейсі документації, прочитайте документацію [Навчальний посібник - Налаштування операції шляху - Короткий опис і опис](../tutorial/path-operation-configuration.md#summary-and-description).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.8K bytes
    - Click Count (0)
Back to Top