Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 random | |
| import math, warnings | |
| from copy import deepcopy | |
| import numpy as np | |
| import lightning | |
| import torch | |
| import torch.nn as nn | |
| import torch.nn.functional as F |
This file contains hidden or 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 discord | |
| import asyncio | |
| import logging | |
| import logging.handlers | |
| from openai import OpenAI | |
| from discord import app_commands | |
| from discord import Message | |
| KIMITOKEN = "" | |
| DISCORD_BOT_TOKEN = "" |
OlderNewer