> ## Documentation Index
> Fetch the complete documentation index at: https://docs.livepeer.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Help

> Every way to get help as a Livepeer developer: Discord channels, forum categories, office hours, GitHub issues, and bug bounty reporting.

export const CustomDivider = ({color = "var(--lp-color-border-default)", middleText = "", spacing = "default", style = {}, className = "", ...rest}) => {
  const spacingPresets = {
    default: {
      margin: "24px 0"
    },
    overlap: {
      margin: "-1rem 0 -1rem 0"
    },
    tight: {
      margin: "0 0 -1rem 0"
    },
    section: {
      margin: "0 0 -2rem 0"
    },
    sectionOverlap: {
      margin: "-1rem 0 -2rem 0"
    },
    deepOverlap: {
      margin: "-1rem 0 -1.5rem 0"
    }
  };
  const spacingStyle = spacingPresets[spacing] || spacingPresets.default;
  return <div role="separator" aria-orientation="horizontal" className={className} style={{
    display: "flex",
    alignItems: "center",
    ...spacingStyle,
    fontSize: style?.fontSize || "16px",
    height: "fit-content",
    ...style
  }} {...rest}>
      <span style={{
    marginRight: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
      </span>
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      {middleText && <>
          <Icon icon="circle" size={2} />
          <span style={{
    margin: "0 8px",
    fontWeight: "bold",
    color: color,
    opacity: 0.7
  }}>
            {middleText}
          </span>
          <Icon icon="circle" size={2} />
        </>}
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      <span style={{
    marginLeft: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <span style={{
    display: "inline-block",
    transform: "scaleX(-1)"
  }}>
          <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
        </span>
      </span>
    </div>;
};

Whether you are stuck on an API call, troubleshooting a node, reporting a security vulnerability, or looking for a collaborator, this page maps every available help channel to the type of question it handles best.

<CustomDivider />

## Channel reference

| Channel                                                                       | Best for                                           | Response time       |
| ----------------------------------------------------------------------------- | -------------------------------------------------- | ------------------- |
| [Discord `#lounge`](https://discord.gg/livepeer)                              | Builder questions, general development             | Hours               |
| [Discord `#ai-research`](https://discord.gg/livepeer)                         | AI inference, ComfyUI, pipelines                   | Hours               |
| [Discord `#delegating`](https://discord.gg/livepeer)                          | Staking, delegation, LPT                           | Hours               |
| [Discord `#governance`](https://discord.gg/livepeer)                          | Protocol proposals, governance votes               | Hours to days       |
| [Livepeer Forum](https://forum.livepeer.org)                                  | In-depth technical discussions, protocol questions | Days                |
| [Developer Office Hours](https://www.livepeer.org/dev-hub)                    | Synchronous help from the core team                | Bi-weekly           |
| [GitHub Issues (go-livepeer)](https://github.com/livepeer/go-livepeer/issues) | Bugs in node software                              | Days                |
| [GitHub Issues (ai-runner)](https://github.com/livepeer/ai-runner/issues)     | Bugs in AI inference                               | Days                |
| [GitHub Issues (ComfyStream)](https://github.com/livepeer/comfystream/issues) | ComfyStream and real-time AI                       | Days                |
| [Immunefi Bug Bounty](https://immunefi.com/bug-bounty/livepeer/information/)  | Smart contract security vulnerabilities            | Per programme terms |

<CustomDivider />

## Discord

The Livepeer Discord is the primary real-time community for builders and network participants.

**Invite:** [discord.gg/Livepeer](https://discord.gg/livepeer)

<AccordionGroup>
  <Accordion title="BUILDERS section">
    **`#lounge`** is the main channel for developers. Ask questions about the API, SDKs, stream configuration, video assets, and general development. This is the most active support channel for application builders.

    **`#ai-research`** is dedicated to Livepeer's AI inference capabilities. Ask about AI pipelines, ComfyUI workflows, ComfyStream, pipeline configuration, and GPU requirements.
  </Accordion>

  <Accordion title="NETWORK section">
    **`#delegating`** covers questions about delegating LPT, staking rewards, choosing an Orchestrator, and understanding delegation mechanics.

    **`#orchestrating`** covers Orchestrator and transcoder operation, including go-livepeer configuration, AI model management, and hardware.
  </Accordion>

  <Accordion title="PROTOCOL section">
    **`#governance`** is for discussions around Livepeer Improvement Proposals (LIPs), governance votes on the Explorer, and protocol-level decisions.
  </Accordion>
</AccordionGroup>

<Note>
  Discord is best for real-time, conversational questions. For questions that deserve a permanent, searchable answer, the Forum is a better home.
</Note>

<CustomDivider />

## Forum

The [Livepeer Forum](https://forum.livepeer.org) is the permanent record for technical discussions, governance proposals, and SPE reporting.

**Key categories:**

* **AI Research** for AI pipeline questions, model support, and inference debugging
* **Builder** for application development questions
* **Treasury** for SPE proposals, RFPs, and retroactive grants
* **Protocol** for protocol-level discussions and LIPs

Forum posts are indexed by search engines and remain discoverable long-term. Use the forum for questions that would benefit other developers finding the same issue later.

<CustomDivider />

## GitHub issues

File bugs against the specific repository:

| Repository                                                               | Use for                                                           |
| ------------------------------------------------------------------------ | ----------------------------------------------------------------- |
| [`livepeer/go-livepeer`](https://github.com/livepeer/go-livepeer/issues) | Node software, broadcaster/Orchestrator behaviour, payment issues |
| [`livepeer/ai-runner`](https://github.com/livepeer/ai-runner/issues)     | AI pipeline failures, model loading errors, inference bugs        |
| [`livepeer/comfystream`](https://github.com/livepeer/comfystream/issues) | ComfyStream, real-time AI, WebRTC transport                       |
| [`livepeer/pytrickle`](https://github.com/livepeer/pytrickle/issues)     | PyTrickle SDK, FrameProcessor, trickle protocol                   |
| [`livepeer/protocol`](https://github.com/livepeer/protocol/issues)       | Smart contract behaviour, on-chain governance                     |
| [`livepeer/docs`](https://github.com/livepeer/docs/issues)               | Documentation errors, missing content, broken links               |

Include: the exact error message, your request body (redact API keys), the response status and body, and the versions of any Livepeer software involved.

<CustomDivider />

## Security vulnerabilities

Report smart contract vulnerabilities through the [Immunefi bug bounty programme](https://immunefi.com/bug-bounty/livepeer/information/). Do not report security issues in public GitHub issues. See [bug bounties](/v2/developers/resources/reference/apis) for programme scope and reward tiers.

For non-contract security concerns (exposed keys, infrastructure vulnerabilities), contact the team via Discord DM to a Foundation member or email `security@livepeer.org`.

<CustomDivider />

The [job debugging](/v2/developers/guides/observability-and-debugging/job-debugging) page covers the specific error diagnosis flow for failed AI and video jobs.
