Personas

Chat AI supports loading preset personas from configurations in the form of JSON files. Each JSON file includes the system prompt, settings, and conversations, allowing you to easily load a persona into Chat AI. While these files can be imported using the import function, Chat AI also supports directly importing public JSON files from the web, by specifying it in the URL.

Example personas

If all you need is a quick link to load a specific persona, this is your chapter. These are some of the interesting and useful personas the AI community came up with:

Info

This is where we need your help!

Check out our Chat AI Personas GitHub repository and help us creating highly versatile and useful personas. The best ones will be featured on this page.

Using Chat AI Personas

We provide some recommended personas in our Chat AI Personas GitHub repository.

You can create a link to Chat AI with the desired persona from the publicly-available preset personas in Chat AI. To do this, simply add the URL of the JSON file in the import parameter of the URL:

https://chat-ai.academiccloud.de/chat?import=<json_url>

Replace <json_url> with the URL to the JSON file.

Custom Personas

You can also create your own custom personas to load directly in the Chat AI interface. These must be saved as a JSON file.

{
    "title": "Sample Persona", # 
    "model-name": "Qwen 3 30B A3B Instruct 2507", # The model name that is displayed in the UI
    "model": "qwen3-30b-a3b-instruct-2507", # model id in the API
    "temperature": 0.2, # Custom temperature setting
    "top_p": 0.2, # Custom top_p setting
    # This is where you can change your system prompt. Role: tells it what the role is in this case "system" other options are "user", "assistant", and "info". System should always be first and followed optionally by an info message. Content is where you enter your custom prompt.
    "messages": [
      {
        "role": "system",
        "content": "<Enter your custom prompt here>"
      },
      {
        "role": "info",
        "content": "< (Optional) Enter an info message to be displayed at the top of the conversation >"
      }
    ]
  }

The latest models are listed here. The API model name is listed here

Info

Note that by clicking on these links the persona’s configuration, i.e., system prompt, model, and other settings will be loaded.