com.sky.ondeviceagent / Runtime /AgentCore /Tools /IToolPropertyAccessor.cs
Sky-Kim's picture
Initial commit
2e7837a
Raw
History Blame Contribute Delete
211 Bytes
namespace OnDeviceAgent.AgentCore
{
public interface IToolPropertyAccessor
{
string Get(string toolName, string key);
bool TryGet(string toolName, string key, out string value);
}
}