entity.concept_info
Overview
- Show concept character info: ConceptId, pool cursor, AppearancePresetId, OutfitPresetId. (BL-56286 verification)
Metadata
| Field | Value |
|---|---|
| Display | Concept Character Info |
| Category | entity |
| Access | Public |
| Scope | B2Authority |
| Tags | — |
| Aliases | — |
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| entity_id | entityId | no | — | Target entity ID (default: possessed) |
Returns
Returns a JSON object with the following fields:
| Field | Type | Required | Description |
|---|---|---|---|
entity_id | entityId | yes | Target entity id |
concept_id | string | yes | Concept identifier |
next_cursor | int | yes | Attribute pool round-robin cursor |
pool_size | int | yes | Attribute pool size |
appearance_preset_id | string | yes | Appearance preset id |
outfit_preset_id | string | yes | Outfit preset id |
pool | array | yes | Attribute ids in the concept pool |
Usage
await inzoi.cli.execute('entity.concept_info', {
entity_id: 0, // optional
});