//const openaiURL = "https://api.openai.com/v1/chat/completions"; // can POST to this 3rd party URL
//const themodel = "gpt-3.5-turbo"; // the OpenAI model we are going to talk to
// default API key and prompt:
//var apikey = "";
//var theprompt = "hello";
AB.world.newRun = function()
{
// Code for Three.js initial drawing of objects.
// Should include one of:
// ABWorld.init2d ( arguments );
// ABWorld.init3d ( arguments );
};
AB.world.takeAction = function ( action )
{
// Code for Three.js re-drawing of objects.
};
AB.world.endRun = function()
{
};
AB.world.getState = function()
{
return ( 0 );
};
AB.world.getScore = function()
{
return ( 0 );
};