> For the complete documentation index, see [llms.txt](https://docs.neuralaim.ru/napi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.neuralaim.ru/napi/programmy-or-primery/konstanty-inicializacii.md).

# Константы инициализации

## Код:

```python
"""Изменяемые константы для server'а"""
SERVER_PORT = 64200 # NAPI's server port
BUFFER_SIZE = 1024 # NAPI's buffer size
"""Остальные изменяемые константы"""
CONF_AI = 0.5 # AI's confidience

"""Константы доступные всегда"""
NAIM_VERSION = 249 # OR = 2492 / V2.4.9 (HotFix #2)
FOV = 128
GAMES = {'cs2': 30, 'apex': 14}
TARGET = 0 # 0 - auto, 1 0- head, 2 - body
USERNAME = "Admin"
ROLE = "Admin"
VIDEOCARD = "GeForce RTX 4090"
```

{% hint style="info" %}
Вы можете написать алгоритм для предугадывания позиции головы на основе координат тела, если враг слишком далеко.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.neuralaim.ru/napi/programmy-or-primery/konstanty-inicializacii.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
