# Provide attributes to your artworks

* The attribute is a Map, the key is the attribute name, and the value is the attribute value. The attribute value can be suggested to use string, number, or boolean value type.
* You can set the properties of your work through Genify.setGenFeatures() every time you render, so that your work can have scarcity in Genify.

```javascript
var features = {
    "eyes": "blue",
    "hair": "brown",
    "skin": "white",
    "clothes": "red",
    "accessories": "none"
};
Genify.setGenFeatures(features);
```

* You can also directly set the properties of your works through <mark style="color:blue;">**window.$genFeatures**</mark> on the page, so that your works can have scarcity in Genify.

```javascript
window.$genFeatures = {
    "eyes": "blue",
    "hair": "brown",
    "skin": "white",
    "clothes": "red",
    "accessories": "none"
    };
```


---

# Agent Instructions: 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://genify-xyz.gitbook.io/docs/guide-for-artists/provide-attributes-to-your-artworks.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.
