MCPSettings.cs 722 B

1234567891011121314151617181920
  1. using UnityEngine;
  2. namespace LLM.Editor.Settings
  3. {
  4. [CreateAssetMenu(fileName = "MCPSettings", menuName = "LLM/MCP Settings", order = 0)]
  5. public class MCPSettings : ScriptableObject
  6. {
  7. [Tooltip("Your Google Cloud Project ID.")]
  8. public string gcpProjectId;
  9. [Tooltip("The region for your AI Platform endpoint (e.g., us-central1).")]
  10. public string gcpRegion;
  11. [Tooltip("The name of the Gemini model to use.")]
  12. public string modelName = "gemini-1.5-flash-preview-0514";
  13. [Tooltip("The full path to your gcloud executable. Use 'which gcloud' (macOS/Linux) or 'where gcloud' (Windows) to find it.")]
  14. public string gcloudPath = "gcloud";
  15. }
  16. }