Can I extract content from json?
import asyncio import discord from discord.ext import commands import urllib3 import json from langchain.load.dump import dumps openApiURL = “http://aiopen.etri.re.kr:8000/WiseQAnal” accessKey = “(key)” intents = discord.Intents.default() intents.message_content = True client = commands.Bot(command_prefix=’>’, intents=intents) token=”(key)” @client.event async def on_ready(): print(“Logged in as “) print(client.user.name) print(client.user.id) print(“===========”) activity = discord.Game(name=”with the API”) await client.change_presence(status=discord.Status.idle, activity=activity) @client.event async def […]