| using UnityEngine; | |
| namespace OnDeviceAgent.AgentCore | |
| { | |
| public sealed class OllamaModelDropdownAttribute : PropertyAttribute | |
| { | |
| public string Endpoint; | |
| public string EndpointField; | |
| public OllamaModelDropdownAttribute(string endpoint = "http://localhost:11434", string endpointField = "m_Endpoint") | |
| { | |
| Endpoint = endpoint; | |
| EndpointField = endpointField; | |
| } | |
| } | |
| } | |