@dataclouder/ngx-agent-cards 0.1.74 → 0.1.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1470,6 +1470,9 @@ class DefaultAgentCardsService extends EntityCommunicationService {
1470
1470
  // TODO: i need a default method to do this.
1471
1471
  return this.httpService.get(`${Endpoints$2.GenerateImage}/${idCard}`, 'primary');
1472
1472
  }
1473
+ getFixedQuery() {
1474
+ return {};
1475
+ }
1473
1476
  async callChatCompletion(conversation, tag) {
1474
1477
  let messages = conversation.messages.map((m) => ({ content: m.content, role: m.role }));
1475
1478
  // messages = messages.filter((m) => m.role != ChatRole.AssistantHelper);