- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 983 for tipi (0.07 seconds)
-
docs/tr/docs/advanced/strict-content-type.md
Bir API sunuyor: ``` http://localhost:8000/v1/agents/multivac ``` Ayrıca bir frontend var: ``` http://localhost:8000 ``` /// tip | İpucu İkisinin de host’u aynıdır. /// Frontend’i kullanarak AI agent’a sizin adınıza işler yaptırabiliyorsunuz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 3.6K bytes - Click Count (0) -
docs/tr/docs/advanced/templates.md
FastAPI 0.108.0 ve Starlette 0.29.0 öncesinde, ilk parametre `name` idi. Ayrıca, daha önceki sürümlerde `request` nesnesi, Jinja2 için context içindeki anahtar-değer çiftlerinin bir parçası olarak geçirilirdi. /// /// tip | İpucu `response_class=HTMLResponse` olarak tanımlarsanız doküman arayüzü (docs UI) response'un HTML olacağını anlayabilir. /// /// note | Teknik Detaylar
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 3.8K bytes - Click Count (0) -
docs/en/docs/tutorial/response-status-code.md
* `500 - 599` are for server errors. You almost never use them directly. When something goes wrong at some part in your application code, or server, it will automatically return one of these status codes. /// tip To know more about each status code and which code is for what, check the [<abbr title="Mozilla Developer Network">MDN</abbr> documentation about HTTP status codes](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status). ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/ja/docs/advanced/using-request-directly.md
そのためには、リクエストに直接アクセスする必要があります。 {* ../../docs_src/using_request_directly/tutorial001_py310.py hl[1,7:8] *} path operation 関数の引数として `Request` 型のパラメータを宣言すると、**FastAPI** はその引数に `Request` を渡します。 /// tip | 豆知識 この例では、`Request` 型の引数に加えて、パスパラメータも宣言しています。 そのため、パスパラメータは取り出され、検証され、指定した型に変換され、OpenAPI で注釈(ドキュメント化)されます。 同様に、通常どおり任意の他のパラメータを宣言しつつ、追加で `Request` も受け取れます。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/ru/llm-prompt.md
* Machine Learning: Машинное обучение * Deep Learning: Глубокое обучение * callback hell: callback hell (clarify as `ад обратных вызовов`) * on the fly: на лету * scratch the surface: поверхностно ознакомиться * tip: совет (or `подсказка` depending on context) * Pydantic model: Pydantic-модель (`модель Pydantic` and `Pydantic модель` are also fine) * declare: объявить
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Jan 22 07:07:05 GMT 2026 - 6.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/response-model.md
如果你只有一個 Pydantic 模型並且想從輸出移除部分資料,這可以作為一個快速捷徑。 /// tip | 提示 但仍建議使用上面提到的作法,使用多個類別,而不是這些參數。 因為在你的應用程式 OpenAPI(與文件)中所產生的 JSON Schema 仍會是完整模型的,即便你使用 `response_model_include` 或 `response_model_exclude` 省略了一些屬性。 `response_model_by_alias` 也有類似的情況。 /// {* ../../docs_src/response_model/tutorial005_py310.py hl[29,35] *} /// tip | 提示 語法 `{"name", "description"}` 會建立一個包含這兩個值的 `set`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.5K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
Ces dépendances seront exécutées/résolues de la même manière que des dépendances normales. Mais leur valeur (si elles en retournent une) ne sera pas transmise à votre *fonction de chemin d'accès*. /// tip | Astuce Certains éditeurs vérifient les paramètres de fonction non utilisés et les signalent comme des erreurs.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/json-base64-bytes.md
<div class="screenshot"> <img src="/img/tutorial/json-base64-bytes/image01.png"> </div> 你可以發送如下的請求: ```json { "description": "Some data", "data": "aGVsbG8=" } ``` /// tip `aGVsbG8=` 是 `hello` 的 base64 編碼。 /// 接著 Pydantic 會將該 base64 字串解碼,並在模型的 `data` 欄位中提供原始位元組。 你會收到類似以下的回應: ```json { "description": "Some data", "content": "hello" } ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:33:04 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/ru/docs/advanced/strict-content-type.md
Он предоставляет API по адресу ``` http://localhost:8000/v1/agents/multivac ``` Есть также фронтенд по адресу ``` http://localhost:8000 ``` /// tip | Совет Обратите внимание, что у обоих один и тот же хост. /// Через фронтенд вы можете заставлять ИИ-агента выполнять действия от вашего имени.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/zh/docs/advanced/templates.md
{* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *} /// note | 注意 在 FastAPI 0.108.0,Starlette 0.29.0 之前,`name` 是第一个参数。 并且,在此之前,`request` 对象是作为 context 的一部分以键值对的形式传递的。 /// /// tip | 提示 通过声明 `response_class=HTMLResponse`,API 文档就能识别响应的对象是 HTML。 /// /// note | 技术细节 您还可以使用 `from starlette.templating import Jinja2Templates`。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3K bytes - Click Count (0)