Metadata

Metadata introspection for the Voxtral VLLM plugin used by cjm-ctl to generate the registration manifest.

get_plugin_metadata


def get_plugin_metadata(
    
)->Dict: # Plugin metadata for manifest generation

Return metadata required to register this plugin with the PluginManager.

Testing

import json

metadata = get_plugin_metadata()
print(json.dumps(metadata, indent=2))
{
  "name": "cjm-transcription-plugin-voxtral-vllm",
  "version": "0.0.37",
  "description": "Mistral Voxtral speech transcription served via a managed vLLM server (OpenAI-compatible API).",
  "type": "transcription",
  "category": "transcription",
  "interface": "cjm_transcription_plugin_system.plugin_interface.TranscriptionPlugin",
  "module": "cjm_transcription_plugin_voxtral_vllm.plugin",
  "class": "VoxtralVLLMPlugin",
  "python_path": "/opt/hostedtoolcache/Python/3.12.13/x64/bin/python",
  "db_path": "/opt/hostedtoolcache/Python/3.12.13/x64/data/voxtral_vllm_transcriptions.db",
  "resources": {
    "requires_gpu": true
  },
  "env_vars": {}
}