We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e193079 commit d306e57Copy full SHA for d306e57
src/tools/store_collection.ts
@@ -102,9 +102,12 @@ export const searchActors: ToolEntry = {
102
const actorCards = formatActorsListToActorCard(actors);
103
return {
104
content: [
105
- { type: 'text', text: `**Search query:** ${parsed.search}` },
106
- { type: 'text', text: `**Number of Actors found:** ${actorCards.length}` },
107
- { type: 'text', text: `**Actor cards:**\n${actorCards.join('\n\n')}` },
+ {
+ type: 'text',
+ text: `**Search query:** ${parsed.search}\n\n` +
108
+ `**Number of Actors found:** ${actorCards.length}\n\n` +
109
+ `**Actor cards:**\n${actorCards.join('\n\n')}`
110
+ },
111
],
112
};
113
},
0 commit comments