AI-NFT மெட்டாடேட்டா
AI-NFT உருவாக்கம் பாரம்பரிய NFT உருவாக்கத் செயல்முறையுடன் ஒத்துள்ளது, ஆனால், ai_agent
புலம் சேர்க்கப்பட்டுள்ளது. இந்த புலம் AI முகவரியின் அமைப்புகள் மற்றும் பயன்படுத்தப்படும் என்ஜினைப் குறிக்கிறது, மேலும் இந்த தகவல் மெட்டாடேட்டாவில் சேமிக்கப்படுகிறது.
ஆதரவு AI என்ஜின்கள்
AI-NFT மெட்டாடேட்டா JSON
ai_agent (புதியது)
object
இந்த NFT உடன் இணைக்கப்பட்ட AI முகவரியின் அமைப்பு
engine (string): AI முகவர் செயல்பட பயன்படும் என்ஜின். இயல்புநிலை "eliza"
character (object): AI முகவரியை விளக்கும் JSON வடிவத்தில் கேரக்டர் கோப்பு. மேலும் விவரங்களுக்கு இங்கு பார்க்கவும்.
name
string
சொத்தின் பெயர்
description
string
சொத்தின் விளக்கம்
image
string
சொத்தின் லோகோவை குறிக்கும் URI
animation_url
string
சொத்தின் அனிமேஷனை குறிக்கும் URI
external_url
string
சொத்தை விளக்கும் வெளியூர் URL, உதாரணமாக விளையாட்டின் உத்தியோகப்பூர்வ இணையதளம்
attributes
array
சொத்தின் பண்புகளை வரையறுக்கும் பண்புகளின் வரிசை
trait_type (string): பண்பு வகை
value (string): பண்பு மதிப்பு
properties
object
சொத்தின் பண்புகளை வரையறுக்கும் கூடுதல் பண்புகள்
files (array): சொத்துடன் சேர்க்கப்பட்ட கூடுதல் கோப்புகள்
uri (string): கோப்பின் URI
type (string): கோப்பு வகை, உதாரணமாக
image/png
,video/mp4
cdn (boolean, optional): கோப்பு CDN மூலம் வழங்கப்பட்டதா என்பது
category (string): சொத்தின் மீடியா வகை, உதாரணமாக
video
,image
எடுத்துக்காட்டு
{
// AI agent field
ai_agent: {
engine: "eliza",
character: {
// agent name
name:"eliza",
// background statements
bio: [
"Bio lines are each short snippets which can be composed together in a random order.",
"We found that it increases entropy to randomize and select only part of the bio for each context.",
"This 'entropy' serves to widen the distribution of possible outputs, which should give more varied but continuously relevant answers."
],
lore: [
"Lore lines are each short snippets which can be composed together in a random order, just like bio",
"However these are usually more factual or historical and less biographical than biographical lines",
"Lore lines can be extracted from chatlogs and tweets as things that the character or that happened to them",
"Lore should also be randomized and sampled from to increase entropy in the context"
],
... //xxx.character.json from https://github.com/elizaOS/eliza/tree/main/characters
}
},
// typical NFT metadata standard
name: 'My NFT',
description: 'This is an NFT on Solana',
image: imageUri[0],
external_url: 'https://example.com',
attributes: [
{
trait_type: 'trait1',
value: 'value1',
},
{
trait_type: 'trait2',
value: 'value2',
},
],
properties: {
files: [
{
uri: imageUri[0],
type: 'image/jpeg',
},
],
category: 'image',
},
}
Last updated
Was this helpful?