AnalysisCommandParams.cs 504 B

12345678910111213
  1. namespace LLM.Editor.Commands
  2. {
  3. /// <summary>
  4. /// Parameters for the RequestDetailedContextCommand.
  5. /// The LLM uses this to request a deep-dive on a specific piece of data.
  6. /// </summary>
  7. [System.Serializable]
  8. public class RequestDetailedContextParams
  9. {
  10. public string subjectIdentifier; // The name or GUID of the object to inspect.
  11. public string dataType; // The fully qualified name of the type to serialize (e.g., "UnityEngine.Rigidbody").
  12. }
  13. }