Skip to content

Latest commit

 

History

History
133 lines (69 loc) · 5.98 KB

File metadata and controls

133 lines (69 loc) · 5.98 KB

Changelog

1.7.4 (2026-03-23)

Bug Fixes

  • remove tsconfig props that may cause issue later (#97) (b038d03)

1.7.3 (2026-03-21)

Bug Fixes

  • change openai default model to gpt5nano (#95) (78b640e)

1.7.2 (2026-03-20)

Bug Fixes

  • refactor and add structured output support (#85) (c79b9ee)

Breaking Changes

  • ResilientLLM.chat() now always returns a consistent envelope object: { content, toolCalls?, metadata } (metadata is no longer gated by returnOperationMetadata).

This is how you use the library after v1.7.2

import { ResilientLLM } from 'resilient-llm';

const llm = new ResilientLLM({
  aiService: 'openai',
  model: 'gpt-5-nano',
});

const conversationHistory = [
  { role: 'system', content: 'You are a helpful assistant.' },
  { role: 'assistant', content: 'Hi, I am here to help.' },
  { role: 'user', content: 'What is the capital of France?' }
];

try {
    const { content, toolCalls, metadata } = await llm.chat(conversationHistory);
    console.log('LLM response:', content);
} catch (err) {
    console.error('Error:', err);
}

1.7.1 (2026-03-16)

Bug Fixes

  • support custom props in operational metadata (#82) (20079bf)

1.7.0 (2026-03-16)

Features

1.6.0 (2026-03-08)

Features

  • returnOperationMetadata config for additional observability metadata (#72) (28eb575)

1.4.2 (2026-03-01)

Bug Fixes

  • add nextjs keyword in playground folder (#47) (d2b6e00)

1.4.1 (2026-01-05)

Bug Fixes

  • different auth for model and chat api for google (#51) (c7204c2)

1.4.0 (2026-01-04)

Features

  • add provider registry (#41) (c91795e)
  • add React/Next.js playground with chaos mode (2f148af)

Bug Fixes

  • use node 24 in npm publish action (#50) (9cac13f)
  • use the replce ollamaUrl with baseUrl (#45) (d8c692f)

1.3.1 (2026-01-03)

Bug Fixes

  • improve ux with regenerate msg and accessibility features (#30) (1af9c70)

1.3.0 (2025-12-29)

Features

1.2.0 (2025-11-28)

Features

  • ship only essential in published pkg (#24) (3c80a66)

1.1.0 (2025-11-28)

Features

  • a a simple chat demo using resilient llm packckage and express (#21) (8baf68a)

1.0.0 (2025-09-08)

Bug Fixes

  • claude action missing to push the branch to remote (#11) (f2ea3b6)
  • upgrade claude code action to v1 (1c89a74)