metadata property
Metadata
get
metadata
Metadata for agent like agent name and agent avatar can be provided using the getter. You can also share the tags related to agent that are related to agent's domain of use for better visibility in the marketplace.
name
of the agent is madatory while avatarProfile
and tags
are
optional.
Example:
@override
Metadata get metadata => Metadata(
name: 'My Agent',
avatarProfile: 'assets/images/agent_avatar.png',
tags: ['flutter', 'dart'],
);
Implementation
Metadata get metadata;