llmist 1.3.0 → 1.3.1

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.
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # llmist
2
2
 
3
3
  [![CI](https://github.com/zbigniewsobiecki/llmist/actions/workflows/ci.yml/badge.svg)](https://github.com/zbigniewsobiecki/llmist/actions/workflows/ci.yml)
4
- [![codecov](https://codecov.io/gh/zbigniewsobiecki/llmist/graph/badge.svg)](https://codecov.io/gh/zbigniewsobiecki/llmist)
4
+ [![codecov](https://codecov.io/gh/zbigniewsobiecki/llmist/graph/badge.svg?branch=dev)](https://codecov.io/gh/zbigniewsobiecki/llmist)
5
5
  [![npm version](https://img.shields.io/npm/v/llmist.svg)](https://www.npmjs.com/package/llmist)
6
6
  [![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- > **Universal TypeScript LLM client with streaming-first tool execution and simple, extensible agent framework**
8
+ > **Universal TypeScript LLM client with own function calling grammar, streaming-first tool execution and simple, extensible agent framework**
9
9
 
10
10
  > **⚠️ EARLY WORK IN PROGRESS** - This library is under active development. APIs may change without notice. Use in production at your own risk.
11
11
 
@@ -15,12 +15,13 @@ llmist is an asynchonous, streaming-first, provider-agnostic LLM client that mak
15
15
 
16
16
  ## 🎯 Why llmist?
17
17
 
18
- - **🌍 Universal** - Works with any LLM provider (OpenAI, Anthropic, Gemini, custom)
19
- - **📝 No Structured Outputs** - Simple block format with `!!!ARG:` markers works with any text model
20
- - **⚡ Streaming-First** - Built for real-time responses and efficient error handling
21
- - **🪝 Powerful Hooks** - Monitor, customize, and control every step of execution
22
- - **🎨 Beautiful API** - Fluent builder pattern with model shortcuts and presets
23
- - **🧪 Testing-Friendly** - Built-in mocking system for zero-cost testing
18
+ - **🌍 Universal** - Works with [any LLM provider](./docs/PROVIDERS.md) (OpenAI, Anthropic, Gemini, [custom](./docs/CUSTOM_MODELS.md)) and easy to integrate more
19
+ - **📝 No Structured Outputs** - Simple [block format](./docs/BLOCK_FORMAT.md) with streaming oriented tool calling
20
+ - **🪝 Powerful Hooks** - Monitor, customize, and control [every step of execution](./docs/HOOKS.md)
21
+ - **🎨 Fluent API** - [Builder pattern](./docs/CONFIGURATION.md) with model shortcuts and presets
22
+ - **🧪 Testing-Friendly** - Built-in [mocking system](./docs/TESTING.md) for zero-cost testing
23
+ - **⌨️ Convenient CLI** - [Capable CLI](./docs/CLI.md) showcasing how to build on top of llmist
24
+ - **🏦 Cost-aware** - [Cost APIs per model](./docs/MODEL_CATALOG.md) + prompt-caching aware accounting
24
25
 
25
26
  ---
26
27
 
@@ -49,15 +50,6 @@ bunx llmist agent "Calculate 15 * 23" --gadget ./calculator.ts --model sonnet
49
50
  cat document.txt | llmist complete "Summarize" --model gpt-5-nano
50
51
  ```
51
52
 
52
- **Built-in gadgets** are included by default in agent mode:
53
- - `AskUser` - Prompts for user input when clarification is needed
54
- - `TellUser` - Displays important messages (info/success/warning/error) and can end conversations
55
-
56
- ```bash
57
- # Disable built-in gadgets
58
- bunx llmist agent "Task" --no-builtins -g ./my-tools.ts
59
- ```
60
-
61
53
  📖 **[CLI Reference](./docs/CLI.md)** | **[CLI Gadgets Guide](./docs/CLI_GADGETS.md)**
62
54
 
63
55
 
@@ -97,7 +89,7 @@ const answer = await LLMist.createAgent()
97
89
  console.log(answer); // "15 times 23 equals 345"
98
90
  ```
99
91
 
100
- **That's it!** N
92
+ **That's it!**
101
93
 
102
94
  📖 **[Getting Started Guide](./docs/GETTING_STARTED.md)** - Learn more in 5 minutes
103
95
 
package/dist/cli.cjs CHANGED
@@ -6484,7 +6484,7 @@ var import_commander2 = require("commander");
6484
6484
  // package.json
6485
6485
  var package_default = {
6486
6486
  name: "llmist",
6487
- version: "1.2.0",
6487
+ version: "1.3.0",
6488
6488
  description: "Universal TypeScript LLM client with streaming-first agent framework. Works with any model - no structured outputs or native tool calling required. Implements its own flexible grammar for function calling.",
6489
6489
  type: "module",
6490
6490
  main: "dist/index.cjs",