UNPKG

arc-agents

Version:

A library for creating and deploying gaming agents at scale

9 lines (8 loc) 312 B
import { BaseAgent } from "./base-agent"; export declare class ReinforcementLearningAgent extends BaseAgent { /** * Sends research data to the platform for reinforcement learning. * @returns A promise that resolves to a boolean indicating success. */ sendResearchData(): Promise<boolean>; }