This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import openai | |
import asyncio | |
import time | |
import sys | |
import argparse | |
import tiktoken | |
import datetime | |
import re | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PLEASE NOTE: This will add ~1sec to your save time | |
// If that is unacceptable (which it was to me), then you can change all the | |
// references to "MonoBehaviour" in this file to your own custom behaviour type | |
// that this script will search through each time you save | |
using UnityEditor; | |
using UnityEngine; | |
using System.Linq; | |
using System.Reflection; | |
using System.Collections; |