Using Noir with GitHub Marketplace Models

Use AI models from GitHub Marketplace with Noir for code analysis.

Use AI models from the GitHub Marketplace with Noir for code analysis.

Setup

  1. Generate a Personal Access Token: Create a PAT following the GitHub documentation. Ensure it has permissions to access AI models.
  2. Choose a Model: Browse the GitHub Marketplace for available models.

Usage

Using the GitHub API:

noir scan ./spec/functional_test/fixtures/hahwul \
     --ai-provider=github \
     --ai-model=gpt-5.5 \
     --ai-key=github_pat_...

Using the Azure Inference API (for models served through Azure):

noir scan ./spec/functional_test/fixtures/hahwul \
     --ai-provider=azure \
     --ai-model=gpt-5.5 \
     --ai-key=github_pat_...