com.sky.ondeviceagent / Runtime /AgentCore /OllamaModelDropdownAttribute.cs
Sky-Kim's picture
Initial commit
2e7837a
Raw
History Blame Contribute Delete
434 Bytes
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;
}
}
}