File size: 37,427 Bytes
e706de2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 |
# Context & Configuration
**Part 1: Foundation - Lesson 4**
> Passing state, callbacks, and metadata through Runnable chains
## Overview
You've learned Runnables (Lesson 1), Messages (Lesson 2), and LLM Wrappers (Lesson 3). Now we tackle a critical question: **How do we pass configuration, callbacks, and state through complex chains without cluttering our code?**
The answer is **RunnableConfig** - a powerful pattern that threads context through every step of a pipeline, enabling logging, debugging, authentication, and more without changing your core logic.
## Why Does This Matter?
### The Problem: Configuration Chaos
Without a proper context system:
```javascript
// Bad: Configuration everywhere
async function complexPipeline(input, temperature, callbacks, debug, userId) {
const result1 = await step1(input, temperature, debug);
callbacks.onStep('step1', result1);
const result2 = await step2(result1, userId, debug);
callbacks.onStep('step2', result2);
const result3 = await step3(result2, temperature, callbacks, debug);
callbacks.onStep('step3', result3);
return result3;
}
// Every function needs to know about every configuration option!
```
Problems:
- Every function signature becomes huge
- Adding new config requires changing every function
- Hard to add features like logging or metrics
- Impossible to intercept at specific points
- Can't pass user context through chains
### The Solution: RunnableConfig
With RunnableConfig:
```javascript
// Good: Config flows automatically
const config = {
temperature: 0.7,
callbacks: [loggingCallback, metricsCallback],
metadata: { userId: 'user_123', sessionId: 'sess_456' },
tags: ['production', 'api-v2']
};
const result = await pipeline.invoke(input, config);
// Every Runnable in the pipeline receives config automatically
// No need to pass it manually at each step!
```
Much cleaner! And infinitely extensible.
## Learning Objectives
By the end of this lesson, you will:
- β
Understand the RunnableConfig pattern
- β
Implement a callback system for monitoring
- β
Add metadata and tags for tracking
- β
Build configurable Runnables
- β
Create custom callbacks for logging and metrics
- β
Debug chains with visibility into each step
- β
Understand how LangChain's callbacks work
## Core Concepts
### What is RunnableConfig?
RunnableConfig is an object that flows through your entire pipeline, carrying:
1. **Callbacks** - Functions called at specific points (logging, metrics, debugging)
2. **Metadata** - Arbitrary data (user IDs, session info, request context)
3. **Tags** - Labels for filtering and organization
4. **Recursion Limit** - Prevent infinite loops
5. **Runtime Configuration** - Override default settings (temperature, max tokens)
**π Where This Lives in the Framework:**
Looking back at our framework structure from the main README, RunnableConfig is part of the **Core** module:
```javascript
// Core module (what we're building now)
export {
Runnable, // β Lesson 1
RunnableSequence, // β Lesson 1
BaseMessage, // β Lesson 2
HumanMessage, // β Lesson 2
AIMessage, // β Lesson 2
SystemMessage, // β Lesson 2
RunnableConfig // β THIS LESSON (Lesson 4)
} from './core/index.js';
```
RunnableConfig isn't a separate feature you add later - it's **foundational infrastructure** built into the Core module that every other part of the framework depends on. The callback system we're about to build is how this config becomes useful for observability.
### The Flow
```
User calls: runnable.invoke(input, config)
β
βββββββββββββββββ΄ββββββββββββββ
β β
Config passed to every step β
β β
βββββββββββΌββββββββββ¬βββββββββββ¬βββββββββΌβββββ
β β β β β β
Step1 Step2 Step3 Step4 Step5 ...
β β β β β
βββββββββββ΄ββββββββββ΄βββββββββββ΄βββββββββ
β
All use same config
All trigger callbacks
All have access to metadata
```
### Key Benefits
1. **Separation of concerns**: Logic separate from monitoring
2. **Composability**: Add features without changing code
3. **Observability**: See what's happening at every step
4. **Flexibility**: Runtime configuration override
5. **Extensibility**: Easy to add new capabilities
## Implementation Deep Dive
### Step 1: The RunnableConfig Object
**Location:** `src/core/context.js`
```javascript
/**
* RunnableConfig - Configuration passed through chains
*/
export class RunnableConfig {
constructor(options = {}) {
// Callbacks for monitoring
this.callbacks = options.callbacks || [];
// Metadata (arbitrary data)
this.metadata = options.metadata || {};
// Tags for filtering/organization
this.tags = options.tags || [];
// Recursion limit (prevent infinite loops)
this.recursionLimit = options.recursionLimit ?? 25;
// Runtime overrides for generation parameters
this.configurable = options.configurable || {};
}
/**
* Merge with another config (child inherits from parent)
*/
merge(other) {
return new RunnableConfig({
callbacks: [...this.callbacks, ...(other.callbacks || [])],
metadata: { ...this.metadata, ...(other.metadata || {}) },
tags: [...this.tags, ...(other.tags || [])],
recursionLimit: other.recursionLimit ?? this.recursionLimit,
configurable: { ...this.configurable, ...(other.configurable || {}) }
});
}
/**
* Create a child config with additional settings
*/
child(options = {}) {
return this.merge(new RunnableConfig(options));
}
}
```
**Why this design?**
- Immutable merging (doesn't modify original)
- Child configs inherit parent settings
- Easy to add new fields without breaking existing code
### Step 2: The Callback System
**π How Callbacks Relate to the Framework:**
Callbacks are the **mechanism** that makes RunnableConfig useful. They're not a separate module - they're the "hooks" that get triggered as your Runnables execute. Think of them as event listeners built into the Core module.
**In the framework structure, callbacks support observability:**
- They live in Core (used by every module)
- Later modules like **Agents** and **Chains** use them for tracing
- The **Utils** module's `CallbackManager` (which we'll see) is a helper for managing them
Here's the base callback class:
**Location:** `src/utils/callbacks.js`
```javascript
/**
* BaseCallback - Abstract callback handler
*/
export class BaseCallback {
/**
* Called when a Runnable starts
*/
async onStart(runnable, input, config) {
// Override in subclass
}
/**
* Called when a Runnable completes successfully
*/
async onEnd(runnable, output, config) {
// Override in subclass
}
/**
* Called when a Runnable errors
*/
async onError(runnable, error, config) {
// Override in subclass
}
/**
* Called for LLM token streaming
*/
async onLLMNewToken(token, config) {
// Override in subclass
}
/**
* Called when a chain step completes
*/
async onChainStep(stepName, output, config) {
// Override in subclass
}
}
```
**Callback Lifecycle**:
```
invoke() called
β
onStart() β Before execution
β
[execution] β Your _call() method runs
β
onEnd() β After success
or
onError() β After failure
```
**Key insight:** Callbacks are optional observers - your code works fine without them, but they let you see what's happening.
### Step 3: CallbackManager
Manages multiple callbacks and ensures they all get called:
**Location:** `src/utils/callback-manager.js`
```javascript
/**
* CallbackManager - Manages multiple callbacks
*/
export class CallbackManager {
constructor(callbacks = []) {
this.callbacks = callbacks;
}
/**
* Add a callback
*/
add(callback) {
this.callbacks.push(callback);
}
/**
* Call onStart for all callbacks
*/
async handleStart(runnable, input, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onStart(runnable, input, config))
)
);
}
/**
* Call onEnd for all callbacks
*/
async handleEnd(runnable, output, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onEnd(runnable, output, config))
)
);
}
/**
* Call onError for all callbacks
*/
async handleError(runnable, error, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onError(runnable, error, config))
)
);
}
/**
* Call onLLMNewToken for all callbacks
*/
async handleLLMNewToken(token, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onLLMNewToken(token, config))
)
);
}
/**
* Call onChainStep for all callbacks
*/
async handleChainStep(stepName, output, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onChainStep(stepName, output, config))
)
);
}
/**
* Safely call a callback (don't let one callback crash others)
*/
async _safeCall(fn) {
try {
await fn();
} catch (error) {
console.error('Callback error:', error);
// Don't throw - callbacks shouldn't break the pipeline
}
}
}
```
**Key insight**: Callbacks can fail without breaking the pipeline.
### Step 4: Integrating with Runnable
Update the Runnable base class to use config:
**Location:** `src/core/runnable.js`
```javascript
export class Runnable {
constructor() {
this.name = this.constructor.name;
}
/**
* Execute with config support
*/
async invoke(input, config = {}) {
// Normalize config to RunnableConfig instance
const runnableConfig = config instanceof RunnableConfig
? config
: new RunnableConfig(config);
// Create callback manager
const callbackManager = new CallbackManager(runnableConfig.callbacks);
try {
// Notify callbacks: starting
await callbackManager.handleStart(this, input, runnableConfig);
// Execute the runnable
const output = await this._call(input, runnableConfig);
// Notify callbacks: success
await callbackManager.handleEnd(this, output, runnableConfig);
return output;
} catch (error) {
// Notify callbacks: error
await callbackManager.handleError(this, error, runnableConfig);
throw error;
}
}
async _call(input, config) {
throw new Error(
`${this.name} must implement _call() method`
);
}
// ... stream(), batch(), pipe() methods remain the same ...
}
```
Now every Runnable automatically:
- β
Receives config
- β
Triggers callbacks
- β
Handles errors properly
- β
Passes config to nested Runnables
### Step 5: Useful Built-in Callbacks
```javascript
/**
* ConsoleCallback - Logs to console
*/
export class ConsoleCallback extends Callbacks {
constructor(options = {}) {
super();
this.verbose = options.verbose ?? true;
this.colors = options.colors ?? true;
}
async onStart(runnable, input, config) {
if (this.verbose) {
console.log(`\nβΆ Starting: ${runnable._name}`);
console.log(` Input:`, this._format(input));
}
}
async onEnd(runnable, output, config) {
if (this.verbose) {
console.log(`β Completed: ${runnable._name}`);
console.log(` Output:`, this._format(output));
}
}
async onError(runnable, error, config) {
console.error(`β Error in ${runnable._name}:`, error.message);
}
async onLLMNewToken(token, config) {
process.stdout.write(token);
}
_format(value) {
if (typeof value === 'string') {
return value.length > 100 ? value.substring(0, 97) + '...' : value;
}
return JSON.stringify(value, null, 2);
}
}
```
```javascript
/**
* MetricsCallback - Tracks timing and counts
*/
export class MetricsCallback extends Callbacks {
constructor() {
super();
this.metrics = {
calls: {},
totalTime: {},
errors: {}
};
this.startTimes = new Map();
}
async onStart(runnable, input, config) {
const name = runnable._name;
this.startTimes.set(name, Date.now());
this.metrics.calls[name] = (this.metrics.calls[name] || 0) + 1;
}
async onEnd(runnable, output, config) {
const name = runnable._name;
const startTime = this.startTimes.get(name);
if (startTime) {
const duration = Date.now() - startTime;
this.metrics.totalTime[name] = (this.metrics.totalTime[name] || 0) + duration;
this.startTimes.delete(name);
}
}
async onError(runnable, error, config) {
const name = runnable._name;
this.metrics.errors[name] = (this.metrics.errors[name] || 0) + 1;
}
getReport() {
const report = [];
for (const [name, calls] of Object.entries(this.metrics.calls)) {
const totalTime = this.metrics.totalTime[name] || 0;
const avgTime = calls > 0 ? (totalTime / calls).toFixed(2) : 0;
const errors = this.metrics.errors[name] || 0;
report.push({
runnable: name,
calls,
avgTime: `${avgTime}ms`,
totalTime: `${totalTime}ms`,
errors
});
}
return report;
}
reset() {
this.metrics = {calls: {}, totalTime: {}, errors: {}};
this.startTimes.clear();
}
}
```
```javascript
/**
* FileCallback - Logs to file
*/
export class FileCallback extends Callbacks {
constructor(filename) {
super();
this.filename = filename;
this.logs = [];
}
async onStart(runnable, input, config) {
this.logs.push({
timestamp: new Date().toISOString(),
event: 'start',
runnable: runnable._name,
input: this._serialize(input)
});
}
async onEnd(runnable, output, config) {
this.logs.push({
timestamp: new Date().toISOString(),
event: 'end',
runnable: runnable._name,
output: this._serialize(output)
});
}
async onError(runnable, error, config) {
this.logs.push({
timestamp: new Date().toISOString(),
event: 'error',
runnable: runnable._name,
error: error.message
});
}
async flush() {
const fs = await import('fs/promises');
await fs.writeFile(
this.filename,
JSON.stringify(this.logs, null, 2),
'utf-8'
);
this.logs = [];
}
_serialize(value) {
if (typeof value === 'string') return value;
if (value?.content) return value.content; // Message
return JSON.stringify(value);
}
}
```
## Complete Implementation
Here's the full context system:
```javascript
/**
* Context & Configuration System
*
* @module core/context
*/
/**
* RunnableConfig - Configuration passed through chains
*/
export class RunnableConfig {
constructor(options = {}) {
this.callbacks = options.callbacks || [];
this.metadata = options.metadata || {};
this.tags = options.tags || [];
this.recursionLimit = options.recursionLimit ?? 25;
this.configurable = options.configurable || {};
}
merge(other) {
return new RunnableConfig({
callbacks: [...this.callbacks, ...(other.callbacks || [])],
metadata: { ...this.metadata, ...(other.metadata || {}) },
tags: [...this.tags, ...(other.tags || [])],
recursionLimit: other.recursionLimit ?? this.recursionLimit,
configurable: { ...this.configurable, ...(other.configurable || {}) }
});
}
child(options = {}) {
return this.merge(new RunnableConfig(options));
}
}
/**
* BaseCallback - Base class for callbacks
*/
export class BaseCallback {
async onStart(runnable, input, config) {}
async onEnd(runnable, output, config) {}
async onError(runnable, error, config) {}
async onLLMNewToken(token, config) {}
async onChainStep(stepName, output, config) {}
}
/**
* CallbackManager - Manages multiple callbacks
*/
export class CallbackManager {
constructor(callbacks = []) {
this.callbacks = callbacks;
}
add(callback) {
this.callbacks.push(callback);
}
async handleStart(runnable, input, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onStart(runnable, input, config))
)
);
}
async handleEnd(runnable, output, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onEnd(runnable, output, config))
)
);
}
async handleError(runnable, error, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onError(runnable, error, config))
)
);
}
async handleLLMNewToken(token, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onLLMNewToken(token, config))
)
);
}
async handleChainStep(stepName, output, config) {
await Promise.all(
this.callbacks.map(cb =>
this._safeCall(() => cb.onChainStep(stepName, output, config))
)
);
}
async _safeCall(fn) {
try {
await fn();
} catch (error) {
console.error('Callback error:', error);
}
}
}
/**
* ConsoleCallback - Logs to console with colors
*/
export class ConsoleCallback extends BaseCallback {
constructor(options = {}) {
super();
this.verbose = options.verbose ?? true;
}
async onStart(runnable, input, config) {
if (this.verbose) {
console.log(`\nβΆ Starting: ${runnable._name}`);
console.log(` Input:`, this._format(input));
if (config.metadata && Object.keys(config.metadata).length > 0) {
console.log(` Metadata:`, config.metadata);
}
}
}
async onEnd(runnable, output, config) {
if (this.verbose) {
console.log(`β Completed: ${runnable._name}`);
console.log(` Output:`, this._format(output));
}
}
async onError(runnable, error, config) {
console.error(`β Error in ${runnable._name}:`, error.message);
}
async onLLMNewToken(token, config) {
process.stdout.write(token);
}
_format(value) {
if (typeof value === 'string') {
return value.length > 100 ? value.substring(0, 97) + '...' : value;
}
if (value?.content) {
return value.content.substring(0, 100);
}
return JSON.stringify(value, null, 2);
}
}
/**
* MetricsCallback - Tracks performance metrics
*/
export class MetricsCallback extends BaseCallback {
constructor() {
super();
this.metrics = {
calls: {},
totalTime: {},
errors: {}
};
this.startTimes = new Map();
}
async onStart(runnable, input, config) {
const key = `${runnable._name}_${Date.now()}_${Math.random()}`;
this.startTimes.set(key, { name: runnable._name, time: Date.now() });
const name = runnable._name;
this.metrics.calls[name] = (this.metrics.calls[name] || 0) + 1;
}
async onEnd(runnable, output, config) {
const name = runnable._name;
// Find the most recent start time for this runnable
let startTime = null;
for (const [key, value] of this.startTimes.entries()) {
if (value.name === name) {
startTime = value.time;
this.startTimes.delete(key);
break;
}
}
if (startTime) {
const duration = Date.now() - startTime;
this.metrics.totalTime[name] = (this.metrics.totalTime[name] || 0) + duration;
}
}
async onError(runnable, error, config) {
const name = runnable._name;
this.metrics.errors[name] = (this.metrics.errors[name] || 0) + 1;
}
getReport() {
const report = [];
for (const [name, calls] of Object.entries(this.metrics.calls)) {
const totalTime = this.metrics.totalTime[name] || 0;
const avgTime = calls > 0 ? (totalTime / calls).toFixed(2) : 0;
const errors = this.metrics.errors[name] || 0;
report.push({
runnable: name,
calls,
avgTime: `${avgTime}ms`,
totalTime: `${totalTime}ms`,
errors,
successRate: calls > 0 ? `${((calls - errors) / calls * 100).toFixed(1)}%` : '0%'
});
}
return report;
}
printReport() {
console.log('\nπ Performance Report:');
console.log('β'.repeat(80));
console.table(this.getReport());
}
reset() {
this.metrics = { calls: {}, totalTime: {}, errors: {} };
this.startTimes.clear();
}
}
export default {
RunnableConfig,
BaseCallback,
CallbackManager,
ConsoleCallback,
MetricsCallback
};
```
## Real-World Examples
### Example 1: Basic Logging
```javascript
import { ConsoleCallback } from './context.js';
const logger = new ConsoleCallback({ verbose: true });
const config = {
callbacks: [logger]
};
// Every step will log
const result = await chain.invoke(input, config);
```
Output:
```
βΆ Starting: PromptTemplate
Input: "Translate to Spanish: Hello"
β Completed: PromptTemplate
Output: "Translate the following to Spanish: Hello"
βΆ Starting: LlamaCppLLM
Input: "Translate the following to Spanish: Hello"
β Completed: LlamaCppLLM
Output: AIMessage("Hola")
```
### Example 2: Performance Monitoring
```javascript
import { MetricsCallback } from './context.js';
const metrics = new MetricsCallback();
const config = {
callbacks: [metrics]
};
// Run multiple times
for (let i = 0; i < 10; i++) {
await chain.invoke(input, config);
}
// Get performance report
metrics.printReport();
```
Output:
```
π Performance Report:
βββββββββββ¬ββββββββββββββββββ¬ββββββββ¬βββββββββββ¬ββββββββββββ¬βββββββββ¬βββββββββββββββ
β (index) β runnable β calls β avgTime β totalTime β errors β successRate β
βββββββββββΌββββββββββββββββββΌββββββββΌβββββββββββΌββββββββββββΌβββββββββΌβββββββββββββββ€
β 0 β 'PromptTemplate'β 10 β '5.20ms' β '52ms' β 0 β '100.0%' β
β 1 β 'LlamaCppLLM' β 10 β '243.5ms'β '2435ms' β 0 β '100.0%' β
βββββββββββ΄ββββββββββββββββββ΄ββββββββ΄βββββββββββ΄ββββββββββββ΄βββββββββ΄βββββββββββββββ
```
### Example 3: Metadata Tracking
```javascript
const config = {
metadata: {
userId: 'user_123',
sessionId: 'sess_456',
requestId: 'req_789'
},
tags: ['production', 'api-v2']
};
await agent.invoke(input, config);
// Every callback receives this metadata
// Useful for logging, debugging, billing
```
### Example 4: Multiple Callbacks
```javascript
const logger = new ConsoleCallback();
const metrics = new MetricsCallback();
const fileLogger = new FileCallback('./logs/agent.json');
const config = {
callbacks: [logger, metrics, fileLogger]
};
await chain.invoke(input, config);
// All three callbacks are triggered
await fileLogger.flush(); // Save to file
metrics.printReport(); // Show metrics
```
### Example 5: Runtime Configuration Override
```javascript
const llm = new LlamaCppLLM({
modelPath: './model.gguf',
temperature: 0.7 // default
});
// Override at runtime
const result1 = await llm.invoke(input, {
configurable: { temperature: 0.2 } // more deterministic
});
const result2 = await llm.invoke(input, {
configurable: { temperature: 1.2 } // more creative
});
```
### Example 6: Custom Callback for API Logging
```javascript
class APILoggerCallback extends Callbacks {
constructor(apiKey) {
super();
this.apiKey = apiKey;
}
async onEnd(runnable, output, config) {
// Send to logging API
await fetch('https://api.yourservice.com/logs', {
method: 'POST',
headers: {
'Authorization': `Bearer ${this.apiKey}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
runnable: runnable._name,
output: this._serialize(output),
metadata: config.metadata,
timestamp: new Date().toISOString()
})
});
}
_serialize(output) {
if (output?.content) return output.content;
return String(output);
}
}
// Usage
const apiLogger = new APILoggerCallback(process.env.API_KEY);
const config = {callbacks: [apiLogger]};
await chain.invoke(input, config);
```
## Advanced Patterns
### Pattern 1: Conditional Callbacks
```javascript
class ConditionalCallback extends Callbacks {
constructor(condition, callback) {
super();
this.condition = condition;
this.callback = callback;
}
async onEnd(runnable, output, config) {
if (this.condition(runnable, output, config)) {
await this.callback.onEnd(runnable, output, config);
}
}
}
// Only log slow operations
const slowLogger = new ConditionalCallback(
(runnable, output, config) => {
// Check if operation took > 1 second
return config.executionTime > 1000;
},
new ConsoleCallback()
);
```
### Pattern 2: Callback Composition
```javascript
class CompositeCallback extends Callbacks {
constructor(callbacks) {
super();
this.callbacks = callbacks;
}
async onStart(runnable, input, config) {
for (const cb of this.callbacks) {
await cb.onStart(runnable, input, config);
}
}
async onEnd(runnable, output, config) {
for (const cb of this.callbacks) {
await cb.onEnd(runnable, output, config);
}
}
async onError(runnable, error, config) {
for (const cb of this.callbacks) {
await cb.onError(runnable, error, config);
}
}
}
// Combine multiple callbacks
const composite = new CompositeCallback([
new ConsoleCallback(),
new MetricsCallback(),
new FileCallback('./logs.json')
]);
```
### Pattern 3: Filtered Logging
```javascript
class FilteredCallback extends Callbacks {
constructor(filter, callback) {
super();
this.filter = filter;
this.callback = callback;
}
async onStart(runnable, input, config) {
if (this.filter(runnable._name, 'start')) {
await this.callback.onStart(runnable, input, config);
}
}
async onEnd(runnable, output, config) {
if (this.filter(runnable._name, 'end')) {
await this.callback.onEnd(runnable, output, config);
}
}
}
// Only log LLM calls
const llmOnly = new FilteredCallback(
(name, event) => name.includes('LLM'),
new ConsoleCallback()
);
```
### Pattern 4: Callback with State
```javascript
class StatefulCallback extends Callbacks {
constructor() {
super();
this.state = {
callCount: 0,
totalTokens: 0,
errors: []
};
}
async onEnd(runnable, output, config) {
this.state.callCount++;
if (output?.additionalKwargs?.usage) {
this.state.totalTokens += output.additionalKwargs.usage.totalTokens;
}
}
async onError(runnable, error, config) {
this.state.errors.push({
runnable: runnable._name,
error: error.message,
timestamp: Date.now()
});
}
getState() {
return {...this.state};
}
}
```
## Common Use Cases
### Use Case 1: Debug Mode
```javascript
const debugConfig = {
callbacks: [new ConsoleCallback({ verbose: true })],
tags: ['debug']
};
// See everything that happens
await agent.invoke(query, debugConfig);
```
### Use Case 2: Production Monitoring
```javascript
const productionConfig = {
callbacks: [
new MetricsCallback(),
new APILoggerCallback(API_KEY)
],
metadata: {
environment: 'production',
version: '1.2.3'
},
tags: ['production']
};
```
### Use Case 3: A/B Testing
```javascript
const configA = {
metadata: { variant: 'A' },
configurable: { temperature: 0.7 }
};
const configB = {
metadata: { variant: 'B' },
configurable: { temperature: 0.9 }
};
// Track which performs better
```
### Use Case 4: User Context
```javascript
const userConfig = {
metadata: {
userId: req.userId,
sessionId: req.sessionId,
plan: req.user.plan // 'free', 'pro', 'enterprise'
}
};
// Different behavior based on user plan
if (userConfig.metadata.plan === 'free') {
userConfig.configurable = { maxTokens: 100 };
} else if (userConfig.metadata.plan === 'pro') {
userConfig.configurable = { maxTokens: 500 };
}
```
## Best Practices
### β
DO:
```javascript
// Use config for cross-cutting concerns
const config = {
callbacks: [logger, metrics],
metadata: { userId, sessionId }
};
// Let config flow automatically
await chain.invoke(input, config);
// Create child configs for nested calls
const childConfig = config.child({ tags: ['nested'] });
// Handle callback errors gracefully (already done in CallbackManager)
```
### β DON'T:
```javascript
// Don't pass config manually at each step
const result1 = await step1(input, config);
const result2 = await step2(result1, config); // Unnecessary
// Don't mutate config
config.metadata.foo = 'bar'; // Bad! Create new config instead
// Don't put business logic in callbacks
// Callbacks are for observability, not logic
```
## Debugging Tips
### Tip 1: Add Timestamps
```javascript
class TimestampCallback extends Callbacks {
async onStart(runnable, input, config) {
console.log(`[${new Date().toISOString()}] ${runnable._name} started`);
}
}
```
### Tip 2: Stack Traces in Callbacks
```javascript
class DebugCallback extends Callbacks {
async onError(runnable, error, config) {
console.error('Full stack trace:');
console.error(error.stack);
console.error('Config:', config);
}
}
```
### Tip 3: Callback Filtering
```javascript
// Only show LLM operations
const config = {
callbacks: [
new FilteredCallback(
name => name.includes('LLM'),
new ConsoleCallback()
)
]
};
```
## Exercises
Practice building with context and callbacks:
### Exercise 13: Build a Simple Logging Callback
Understand the basic callback lifecycle.
**Starter code**: [`exercises/13-simple-logger.js`](exercises/13-simple-logger.js)
### Exercise 14: Build a Metrics Tracker with Metadata
Learn to use config metadata and track metrics.
**Starter code**: [`exercises/14-metrics-metadata.js`](exercises/14-metrics-metadata.js)
### Exercise 15: Config Merging and Child Configs
Understand how configs inherit and merge.
**Starter code**: [`exercises/15-retry-callback.js`](exercises/15-retry-callback.js)
### Exercise 16: Runtime Configuration Override
Learn to override LLM settings at runtime.
**Starter code**: [`exercises/16-runtime-config.js`](exercises/16-runtime-config.js)
## Summary
Congratulations! You've mastered the context and configuration system.
### Key Takeaways
1. **RunnableConfig flows automatically**: No need to pass manually at each step
2. **Callbacks enable observability**: See what's happening without changing code
3. **Metadata carries context**: User info, session data, request IDs
4. **Tags enable filtering**: Organize and filter operations
5. **Callbacks don't break pipelines**: Errors in callbacks are caught
6. **Configuration is composable**: Child configs inherit from parents
7. **Runtime overrides are powerful**: Change behavior without changing code
### What You Built
A context system that:
- β
Flows config through chains automatically
- β
Supports multiple callbacks
- β
Tracks metrics and performance
- β
Enables runtime configuration
- β
Provides observability
- β
Handles errors gracefully
- β
Is infinitely extensible
### Foundation Complete! π
You've completed Part 1 (Foundation). You now understand:
1. **Runnable** - The composability pattern
2. **Messages** - Structured conversation data
3. **LLM Wrapper** - Integrating real models
4. **Context** - Passing state and observability
These four concepts are the foundation of **every** agent framework.
### What's Next
In **Part 2: Composition**, you'll learn:
- Prompt templates
- Output parsers
- LLM chains
- The pipe operator
- Memory systems
β‘οΈ [Continue to Part 2: Composition](../02-composition/01-prompts.md)
## Additional Resources
- [LangChain Callbacks](https://python.langchain.com/docs/modules/callbacks/)
- [OpenTelemetry](https://opentelemetry.io/) - Industry standard for observability
- [Structured Logging](https://www.structlog.org/en/stable/)
## Questions & Discussion
**Q: Why not just use console.log everywhere?**
A: Callbacks are:
- Composable (turn on/off easily)
- Non-invasive (don't clutter code)
- Centralized (one place to change logging)
- Production-ready (can send to monitoring services)
**Q: What's the performance overhead of callbacks?**
A: Minimal if implemented correctly. The CallbackManager calls them in parallel and catches errors, so one slow callback doesn't slow everything down.
**Q: Can I modify the input/output in a callback?**
A: You *can*, but you *shouldn't*. Callbacks are for observation, not transformation. Transformations belong in the Runnable logic.
**Q: How do I pass authentication through chains?**
A: Use metadata:
```javascript
const config = {
metadata: {
authToken: req.headers.authorization
}
};
```
---
**Built with β€οΈ for learners who want to understand AI agents deeply**
[β Previous: LLM Wrapper](03-llm-wrapper.md) | [Tutorial Index](../README.md) | [Next: Prompts β](../02-composition/01-prompts.md) |