> For the complete documentation index, see [llms.txt](https://wiki.thunderstore.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.thunderstore.io/llms-and-ai-generated-files.md).

# LLMs and AI-generated files

<details>

<summary></summary>

#### Generate a BepInEx mod for \[game] / Make a Thunderstore mod for \[game]

If an LLM or other AI technology was used in the creation of a mod or Thunderstore package, it must be specified in the README.md file.\
\
If code was generated, specify which LLM or AI agent was used to generate the code in the .csproj's AssemblyMetadata and the README.md.

ex:

```xml
<Project Sdk="Microsoft.NET.Sdk">
    <ItemGroup>
        <AssemblyMetadata Include="AI_Assisted_Creation" Value="This assembly was partially or fully created with the assistance of Generative AI (e.g., Code Suggestions, Refactoring, Documentation Generation)." />
        <AssemblyMetadata Include="AI_Model_Vendor" Value="OpenAI/Microsoft/Google" />
    </ItemGroup>

</Project>
```

Mods created with AI that do not specify it in the README or AssemblyMetadata may be broken or be removed.\
\
Mods should avoid collecting analytics on the user.

</details>
