← Back to Gene Catalog

source-linker

Nativecontent.linking

Maps source file paths to human-readable titles and browsable URLs. Pure mapping logic, no network dependency.

README

No documentation yet.

Gene authors can add a README when publishing.

Phenotype

Input

PropertyTypeReqDescription
answerstringThe synthesized answer (passed through)
sourcesarraySource file paths from answer-synthesizer
confidencenumber

Output

PropertyTypeReqDescription
textstringThe answer text (renamed for grammar-checker compatibility)
linksarray
confidencenumber
Raw JSON Schema

inputSchema

{
  "type": "object",
  "required": [
    "answer",
    "sources"
  ],
  "properties": {
    "answer": {
      "type": "string",
      "description": "The synthesized answer (passed through)"
    },
    "sources": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Source file paths from answer-synthesizer"
    },
    "confidence": {
      "type": "number"
    }
  }
}

outputSchema

{
  "type": "object",
  "required": [
    "text",
    "links"
  ],
  "properties": {
    "text": {
      "type": "string",
      "description": "The answer text (renamed for grammar-checker compatibility)"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "title",
          "url"
        ],
        "properties": {
          "url": {
            "type": "string"
          },
          "title": {
            "type": "string"
          }
        }
      }
    },
    "confidence": {
      "type": "number"
    }
  }
}

Arena History

DateFitnessSafetyCalls
Mar 170.70000.751