Chroma Golem API Documentation

Game Systems

Creating Dynamic Dialogue

Build engaging conversations between players and NPCs using our powerful dialogue generation system.

Quick Start Guide

1. Set Context

Define conversation background and NPC state

2. Structure Messages

Use system and user messages to guide flow

3. Handle Events

Trigger appropriate actions based on dialogue

Key components of dialogue systems

Message Structure

Conversations are built using an array of messages, each with a specific role. Understanding these roles is key to creating natural dialogue flows.

Example Conversation Structure

{
  "messages": [
    {
      "role": "system",
      "content": "You are a merchant named Giles who specializes in rare artifacts."
    },
    {
      "role": "user",
      "content": "Do you have any ancient scrolls for sale?"
    },
    {
      "role": "assistant",
      "content": "Ah, a seeker of knowledge! Indeed, I have several rare scrolls..."
    }
  ]
}

Meta-Message Chains

Use separate conversation chains to analyze ongoing dialogues and make intelligent decisions about the conversation flow.

Common Analysis Chains

  • Conversation Length: Determine if the dialogue should be wrapped up
  • Event Triggers: Check if the conversation should trigger game events
  • Quest Progress: Analyze if quest conditions have been met
  • Exit Detection: Identify when players are trying to end the conversation

Response Systems

Provide players with intelligent dialogue options while maintaining conversation flow.

Example Response Generation

// Generate response options based on intent
{
  "intents": ["Be friendly", "Ask for discount", "End conversation"],
  "generated_responses": [
    "That's fascinating! Tell me more about your travels.",
    "Perhaps we could negotiate a better price?",
    "I should be going now. Thank you for your time."
  ]
}

Events & Actions

Transform conversations into meaningful game events and actions by analyzing dialogue with meta-message chains.

Common Triggers

  • Quest Updates: Start, update, or complete quests
  • Item Transactions: Give or receive items
  • Animations: Trigger emotes or animations
  • World Changes: Update game state or trigger cutscenes

Example Event Analysis

After each NPC response, you can run an event analysis chain to determine what actions should be triggered.

System Message

You are an event analyzer for an RPG game. Given a conversation snippet, determine which events should be triggered.
Available events are:
- GIVE_QUEST: When an NPC assigns a new quest
- COMPLETE_QUEST: When a quest's conditions are met
- GIVE_ITEM: When an NPC should give an item
- TAKE_ITEM: When an NPC should receive an item
- PLAY_EMOTE: When an NPC should perform an animation
- UPDATE_REPUTATION: When player reputation should change

Respond with a JSON array of event objects, or an empty array if no events should trigger.

User Message

Previous conversation:
[Merchant Giles]: "Ah, you've brought all five crystal shards! At last, the ancient artifact can be restored. Here, take this completed Crystal of Wisdom - you've earned it. The scholars will be most pleased with your service."

Assistant Response

[
  {
    "event": "COMPLETE_QUEST",
    "data": {
      "quest_id": "collect_crystal_shards",
      "status": "completed"
    }
  },
  {
    "event": "TAKE_ITEM",
    "data": {
      "item_id": "crystal_shard",
      "quantity": 5
    }
  },
  {
    "event": "GIVE_ITEM",
    "data": {
      "item_id": "crystal_of_wisdom",
      "quantity": 1
    }
  },
  {
    "event": "UPDATE_REPUTATION",
    "data": {
      "faction": "scholars",
      "change": 10
    }
  },
  {
    "event": "PLAY_EMOTE",
    "data": {
      "emote": "give_item"
    }
  }
]

Tips for Event Analysis

  • Keep your event types consistent and well-documented
  • Include relevant data with each event trigger
  • Consider chaining multiple events for complex interactions
  • Use event analysis to maintain game state consistency

Additional Tips

  • Store conversation metadata in the messages array for context persistence
  • Track world events and actions as system messages
  • Use conversation analysis to maintain dialogue coherence
  • Implement fallback responses for unexpected player inputs

Want to learn more?

Check out our other guides on building NPCs and creating quests.

Back to your dashboard
View my API keys