RequestAnalysisContextParams.cs 467 B

1234567891011121314
  1. namespace LLM.Editor.Commands
  2. {
  3. /// <summary>
  4. /// Parameters for the RequestAnalysisContextCommand.
  5. /// The LLM uses this to ask the user to stage the objects needed for an analysis.
  6. /// </summary>
  7. [System.Serializable]
  8. public class RequestAnalysisContextParams
  9. {
  10. public string[] subjectRoles; // e.g., ["Launcher", "Target", "Projectile"]
  11. }
  12. // The old RequestDetailedContextParams class has been removed from this file.
  13. }