custom-chatbot / data /UTAgent.User.cs
fastx's picture
Upload 84 files
ac55997
raw
history blame
312 Bytes
namespace Quantum
{
public partial struct UTAgent
{
// Used to setup info on the Unity debugger
public string GetRootAssetName(Frame frame) => frame.FindAsset<UTRoot>(UtilityReasoner.UTRoot.Id).Path;
public AIConfig GetConfig(Frame frame)
{
return frame.FindAsset<AIConfig>(Config.Id);
}
}
}