honeyhive.experiments
Experiments module for HoneyHive SDK.
This module provides experiment management functionality including: - Experiment run creation and management - External dataset support with EXT- prefix - Result aggregation from backend - Run comparison and analysis - Evaluator framework integration
The experiments module replaces the legacy evaluation module while maintaining backward compatibility through deprecation aliases.
ExperimentContext
Lightweight experiment context for metadata linking.
NOTE: This is NOT a replacement for tracer config. This is just a convenience class for organizing experiment metadata that gets passed to the tracer.
The tracer handles actual metadata propagation when is_evaluation=True.
Attributes:
| Name | Type | Description |
|---|---|---|
run_id |
Experiment run identifier |
|
dataset_id |
Dataset identifier (may have EXT- prefix) |
|
source |
Source identifier (default: "evaluation") |
|
metadata |
Additional metadata dictionary |
Example
context = ExperimentContext( ... run_id="run-123", ... dataset_id="EXT-abc", ... ) tracer_config = context.to_tracer_config("dp-1") tracer_config["is_evaluation"] True
Source code in src/honeyhive/experiments/core.py
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 | |
run_id
instance-attribute
run_id = run_id
dataset_id
instance-attribute
dataset_id = dataset_id
run_name
instance-attribute
run_name = run_name
source
instance-attribute
source = source
metadata
instance-attribute
metadata = metadata or {}
to_tracer_config
Convert to tracer initialization config.
This returns kwargs for HoneyHiveTracer(...) initialization. The tracer will automatically propagate all metadata to spans when is_evaluation=True.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
datapoint_id
|
str
|
Datapoint identifier for this execution |
required |
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dictionary of tracer initialization kwargs |
Example
config = context.to_tracer_config("dp-1") config { 'is_evaluation': True, 'run_id': 'run-123', 'dataset_id': 'EXT-abc', 'datapoint_id': 'dp-1', 'source': 'evaluation' }
Source code in src/honeyhive/experiments/core.py
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 | |
EvalResult
Result container for evaluator execution.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
init_method
instance-attribute
init_method = init_method or function
eval_settings
instance-attribute
eval_settings: Optional[EvalSettings] = EvalSettings(
name=init_method
)
weight
instance-attribute
weight = weight
to_dict
to_dict() -> dict
Convert result to dictionary.
Source code in src/honeyhive/experiments/evaluators.py
263 264 265 | |
copy
copy() -> EvalResult
Source code in src/honeyhive/experiments/evaluators.py
267 268 269 270 271 | |
EvalSettings
dataclass
Configuration settings for evaluators.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
copy
copy() -> EvalSettings
Create a deep copy of the settings.
Source code in src/honeyhive/experiments/evaluators.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
keys
keys()
Return dictionary keys.
Source code in src/honeyhive/experiments/evaluators.py
106 107 108 | |
update
update(eval_settings: Any | None) -> None
Update settings from dict or EvalSettings instance.
Source code in src/honeyhive/experiments/evaluators.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
extract_eval_settings_and_kwargs
staticmethod
Extract evaluator settings and kwargs from a combined dict.
Source code in src/honeyhive/experiments/evaluators.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |
dict
dict() -> dict
Convert to dictionary, excluding name.
Source code in src/honeyhive/experiments/evaluators.py
155 156 157 158 159 | |
EvaluatorSettings
dataclass
Hierarchical settings management for evaluators.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
default_kwargs
class-attribute
instance-attribute
defaults_yaml_settings
class-attribute
instance-attribute
defaults_yaml_settings: EvalSettings = None
defaults_yaml_kwargs
class-attribute
instance-attribute
explicit_kwargs
class-attribute
instance-attribute
resolve_settings
resolve_settings(
settings: EvalSettings | None = None,
) -> EvalSettings
Resolve settings from all sources in priority order.
Source code in src/honeyhive/experiments/evaluators.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |
resolve_kwargs
Resolve kwargs from all sources in priority order.
Source code in src/honeyhive/experiments/evaluators.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | |
aevaluator
Bases: evaluator
Async evaluator decorator class.
Source code in src/honeyhive/experiments/evaluators.py
1168 1169 1170 1171 1172 1173 1174 1175 | |
raw
async
raw(*args, **kwargs)
Source code in src/honeyhive/experiments/evaluators.py
1174 1175 | |
evaluator
Sync evaluator decorator class with pipeline support.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
all_evaluators
class-attribute
instance-attribute
all_evaluator_settings
class-attribute
instance-attribute
all_evaluator_settings: dict[str, EvaluatorSettings] = (
dict()
)
explicit_config
instance-attribute
explicit_config = None
pre_apply_aggregation
pre_apply_aggregation(
eval_results: tuple[EvalResult] | list[EvalResult],
eval_scores: tuple | list,
final_settings: EvalSettings,
) -> tuple[EvalResult, Any] | Coroutine
Source code in src/honeyhive/experiments/evaluators.py
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | |
post_apply_aggregation
post_apply_aggregation(
eval_results: (
tuple[EvalResult] | list[EvalResult] | EvalResult
),
aggregate_score: Any,
final_settings: EvalSettings,
)
Wrap aggregated score in EvalResult.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
sync_apply_aggregation
sync_apply_aggregation(
eval_results: (
tuple[EvalResult] | list[EvalResult] | EvalResult
),
eval_scores: tuple | list | Any,
final_settings: EvalSettings,
) -> tuple[EvalResult, Any]
Synchronously apply aggregation to results.
Source code in src/honeyhive/experiments/evaluators.py
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | |
async_apply_aggregation
async
async_apply_aggregation(
eval_results: tuple[EvalResult] | list[EvalResult],
eval_scores: tuple | list,
final_settings: EvalSettings,
) -> tuple[EvalResult, Any]
Asynchronously apply aggregation to results.
Source code in src/honeyhive/experiments/evaluators.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 | |
pre_apply_transformation
pre_apply_transformation(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
)
Apply transformation expression to evaluation score.
Source code in src/honeyhive/experiments/evaluators.py
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 | |
post_apply_transformation
post_apply_transformation(
eval_result: EvalResult,
transformed_score: Any,
final_settings: EvalSettings,
)
Wrap transformed score in EvalResult.
Source code in src/honeyhive/experiments/evaluators.py
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | |
async_apply_transformation
async
async_apply_transformation(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
) -> tuple[EvalResult, Any]
Asynchronously apply transformation to result.
Source code in src/honeyhive/experiments/evaluators.py
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 | |
sync_apply_transformation
sync_apply_transformation(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
) -> tuple[EvalResult, Any]
Synchronously apply transformation to result.
Source code in src/honeyhive/experiments/evaluators.py
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | |
pre_run_checker
pre_run_checker(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
) -> bool
Evaluate checker expression against score.
Source code in src/honeyhive/experiments/evaluators.py
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | |
post_run_checker
post_run_checker(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
checker_score: Any = None,
) -> bool
Process checker result and optionally run assertions.
Source code in src/honeyhive/experiments/evaluators.py
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | |
run_asserts
run_asserts(
eval_score: Any, final_settings: EvalSettings
) -> bool
Source code in src/honeyhive/experiments/evaluators.py
585 586 587 588 589 590 591 592 593 594 595 596 | |
run_checker
run_checker(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
) -> bool
Synchronously run checker logic on evaluation result.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
arun_checker
async
arun_checker(
eval_result: EvalResult,
eval_score: Any,
final_settings: EvalSettings,
) -> bool
Asynchronously run checker logic on evaluation result.
Source code in src/honeyhive/experiments/evaluators.py
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 | |
parse_wraps
staticmethod
Parse wraps parameter into evaluator name and settings.
Source code in src/honeyhive/experiments/evaluators.py
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 | |
create_wrapper
staticmethod
create_wrapper(
base_callable: evaluator,
wrapped_eval_settings: EvalSettings,
wrapped_eval_kwargs: dict,
wrapper_name: str,
) -> Callable
Create a wrapper function for an evaluator, given the base evaluator, the wrapped evaluator settings, the wrapped evaluator kwargs, and the wrapper name.
The wrapped_eval / base_callable's settings and kwargs update any previous settings and kwargs. The wrapper's settings do NOT update the wrapped evaluator's settings. The wrapper's kwargs DO update the wrapped evaluator's kwargs.
The final settings and kwargs are passed into the wrapped evaluator during calltime. Due to the ordering of the dict unpacking, the wrapper's kwargs will update the wrapped evaluator's kwargs. The settings are also passed as kwargs into the base callable.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base_callable
|
evaluator
|
The base evaluator to be wrapped. |
required |
wrapped_eval_settings
|
EvalSettings
|
Settings for the wrapped evaluator. |
required |
wrapped_eval_kwargs
|
dict
|
Additional keyword arguments for the wrapped evaluator. |
required |
wrapper_name
|
str
|
Name for the wrapper function. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Callable |
Callable
|
A wrapper function that calls the base evaluator with the provided settings and arguments. |
Source code in src/honeyhive/experiments/evaluators.py
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 | |
create_wrapped_evaluator
staticmethod
create_wrapped_evaluator(
evaluator_settings: EvaluatorSettings,
) -> None
Source code in src/honeyhive/experiments/evaluators.py
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 | |
aresolve_pipeline
async
staticmethod
aresolve_pipeline(score, *args, **kwargs)
Asynchronously resolve pipeline of evaluators.
Source code in src/honeyhive/experiments/evaluators.py
815 816 817 818 819 820 821 822 823 | |
resolve_pipeline
staticmethod
resolve_pipeline(score, *args, **kwargs)
Synchronously resolve pipeline of evaluators.
Source code in src/honeyhive/experiments/evaluators.py
825 826 827 828 829 830 831 | |
get_final_settings_and_kwargs
get_final_settings_and_kwargs(call_kwargs)
Extract and merge final settings and kwargs for execution.
Source code in src/honeyhive/experiments/evaluators.py
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 | |
async_call
async
async_call(*call_args, **call_kwargs)
Source code in src/honeyhive/experiments/evaluators.py
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 | |
sync_call
sync_call(*call_args, **call_kwargs)
Source code in src/honeyhive/experiments/evaluators.py
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 | |
raw
raw(*args, **kwargs)
Execute wrapped function without evaluator pipeline.
Source code in src/honeyhive/experiments/evaluators.py
1052 1053 1054 | |
araw
async
araw(*args, **kwargs)
Asynchronously execute wrapped function without pipeline.
Source code in src/honeyhive/experiments/evaluators.py
1056 1057 1058 | |
AggregatedMetrics
Bases: BaseModel
Aggregated metrics model for experiment results.
Supports the backend response format with a 'details' array containing MetricDetail objects.
Backend Response Format (per OpenAPI spec): { "aggregation_function": "average", "details": [ { "metric_name": "accuracy", "metric_type": "numeric", "event_name": "llm_call", "event_type": "model", "aggregate": 0.85, "values": [0.8, 0.9, 0.85], "datapoints": {"passed": [...], "failed": [...]} }, ... ] }
Example
metrics = AggregatedMetrics( ... aggregation_function="average", ... details=[{"metric_name": "accuracy", "aggregate": 0.85}] ... ) metrics.get_metric("accuracy") MetricDetail(metric_name='accuracy', aggregate=0.85, ...) metrics.list_metrics() ['accuracy']
Source code in src/honeyhive/experiments/models.py
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 | |
aggregation_function
class-attribute
instance-attribute
aggregation_function: Optional[str] = Field(
None,
description="Aggregation function used (average, sum, min, max)",
)
details
class-attribute
instance-attribute
details: List[MetricDetail] = Field(
default_factory=list,
description="List of metric details from backend",
)
get_metric
Get a specific metric by name.
Supports both the new 'details' array format (returns MetricDetail) and the legacy model_extra format (returns dict) for backward compatibility.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
metric_name
|
str
|
Name of the metric to retrieve |
required |
Returns:
| Type | Description |
|---|---|
Optional[Union[MetricDetail, Dict[str, Any]]]
|
MetricDetail object (new format), dict (legacy format), or None if not found |
Example
metrics.get_metric("accuracy") MetricDetail(metric_name='accuracy', aggregate=0.85, ...)
Source code in src/honeyhive/experiments/models.py
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 | |
list_metrics
List all metric names in this result.
Supports both the new 'details' array format and the legacy model_extra format for backward compatibility.
Returns:
| Type | Description |
|---|---|
List[str]
|
List of metric names from details array or model_extra keys |
Example
metrics.list_metrics() ['accuracy', 'latency', 'cost']
Source code in src/honeyhive/experiments/models.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | |
get_all_metrics
Get all metrics as a dictionary.
Supports both the new 'details' array format (returns MetricDetail values) and the legacy model_extra format (returns dict values) for backward compatibility.
Returns:
| Type | Description |
|---|---|
Dict[str, Union[MetricDetail, Dict[str, Any]]]
|
Dictionary mapping metric names to MetricDetail objects or dicts |
Example
metrics.get_all_metrics() { 'accuracy': MetricDetail(metric_name='accuracy', aggregate=0.85, ...), 'latency': MetricDetail(metric_name='latency', aggregate=120.5, ...) }
Source code in src/honeyhive/experiments/models.py
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 | |
ExperimentResultSummary
Bases: BaseModel
Aggregated experiment result from backend.
This model represents the complete result of an experiment run, including pass/fail status, aggregated metrics, and datapoint results.
Retrieved from: GET /runs/:run_id/result
Source code in src/honeyhive/experiments/models.py
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 | |
run_id
class-attribute
instance-attribute
run_id: str = Field(
..., description="Experiment run identifier"
)
status
class-attribute
instance-attribute
status: str = Field(
...,
description="Run status (pending, completed, running, failed, cancelled)",
)
success
class-attribute
instance-attribute
success: bool = Field(
..., description="Overall success status of the run"
)
passed
class-attribute
instance-attribute
failed
class-attribute
instance-attribute
metrics
class-attribute
instance-attribute
metrics: AggregatedMetrics = Field(
..., description="Aggregated metrics from backend"
)
datapoints
class-attribute
instance-attribute
datapoints: List[DatapointResult] = Field(
default_factory=list,
description="List of datapoint results from backend",
)
print_table
Print evaluation results in a formatted table.
Displays: - Run summary (ID, status, pass/fail counts) - Aggregated metrics - Per-datapoint details (if available)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
run_name
|
Optional[str]
|
Optional run name to display in table title |
None
|
Example
result = evaluate(...) result.print_table(run_name="My Experiment")
Source code in src/honeyhive/experiments/models.py
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 | |
ExperimentRunStatus
Extended status enum with all backend values.
The generated Status enum only includes 'pending' and 'completed', but the backend supports additional states.
Source code in src/honeyhive/experiments/models.py
25 26 27 28 29 30 31 32 33 34 35 36 37 | |
PENDING
class-attribute
instance-attribute
PENDING = 'pending'
COMPLETED
class-attribute
instance-attribute
COMPLETED = 'completed'
RUNNING
class-attribute
instance-attribute
RUNNING = 'running'
FAILED
class-attribute
instance-attribute
FAILED = 'failed'
CANCELLED
class-attribute
instance-attribute
CANCELLED = 'cancelled'
RunComparisonResult
Bases: BaseModel
Comparison between two experiment runs.
This model represents the delta analysis between a new run and an old run, including metric changes and datapoint differences.
Retrieved from: GET /runs/:new_run_id/compare-with/:old_run_id
Source code in src/honeyhive/experiments/models.py
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 | |
new_run_id
class-attribute
instance-attribute
new_run_id: str = Field(
..., description="New experiment run identifier"
)
old_run_id
class-attribute
instance-attribute
old_run_id: str = Field(
..., description="Old experiment run identifier"
)
common_datapoints
class-attribute
instance-attribute
common_datapoints: int = Field(
...,
description="Number of datapoints common to both runs",
)
new_only_datapoints
class-attribute
instance-attribute
new_only_datapoints: int = Field(
default=0,
description="Number of datapoints only in new run",
)
old_only_datapoints
class-attribute
instance-attribute
old_only_datapoints: int = Field(
default=0,
description="Number of datapoints only in old run",
)
metric_deltas
class-attribute
instance-attribute
metric_deltas: Dict[str, Any] = Field(
default_factory=dict,
description="Metric name to delta information mapping",
)
get_metric_delta
Get delta information for a specific metric.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
metric_name
|
str
|
Name of the metric |
required |
Returns:
| Type | Description |
|---|---|
Optional[Dict[str, Any]]
|
Delta information including new_value, old_value, delta, percent_change |
Example
comparison.get_metric_delta("accuracy") { 'new_value': 0.85, 'old_value': 0.80, 'delta': 0.05, 'percent_change': 6.25 }
Source code in src/honeyhive/experiments/models.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | |
list_improved_metrics
List metrics that improved in the new run.
Returns:
| Type | Description |
|---|---|
List[str]
|
List of metric names where improved_count > 0 |
Source code in src/honeyhive/experiments/models.py
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | |
list_degraded_metrics
List metrics that degraded in the new run.
Returns:
| Type | Description |
|---|---|
List[str]
|
List of metric names where degraded_count > 0 |
Source code in src/honeyhive/experiments/models.py
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 | |
evaluate
evaluate(
function: Callable,
*,
dataset: Optional[List[Dict[str, Any]]] = None,
dataset_id: Optional[str] = None,
evaluators: Optional[List[Callable]] = None,
instrumentors: Optional[List[Callable[[], Any]]] = None,
api_key: Optional[str] = None,
server_url: Optional[str] = None,
project: Optional[str] = None,
name: Optional[str] = None,
run_id: Optional[str] = None,
max_workers: int = 10,
aggregate_function: str = "average",
verbose: bool = False,
print_results: bool = True
) -> Any
Run experiment evaluation with backend aggregation.
This is the main user-facing API for running experiments. It: 1. Prepares dataset (external or HoneyHive) 2. Creates experiment run via API 3. Executes function against dataset with tracer multi-instance 4. Runs evaluators (if provided) 5. Retrieves aggregated results from backend
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
function
|
Callable
|
User function to execute against each datapoint. Can be either a synchronous function or an async function. Async functions are automatically detected and executed with asyncio.run(). |
required |
dataset
|
Optional[List[Dict[str, Any]]]
|
External dataset (list of dicts with 'inputs' and 'ground_truth') |
None
|
dataset_id
|
Optional[str]
|
HoneyHive dataset ID (alternative to external dataset) |
None
|
evaluators
|
Optional[List[Callable]]
|
List of evaluator functions (optional) |
None
|
instrumentors
|
Optional[List[Callable[[], Any]]]
|
List of instrumentor factory functions. Each factory should return a new instrumentor instance when called. This ensures each datapoint gets its own tracer and instrumentor instance for proper trace routing. Example: [lambda: OpenAIInstrumentor()] |
None
|
api_key
|
Optional[str]
|
HoneyHive API key (or set HONEYHIVE_API_KEY/HH_API_KEY env var) |
None
|
server_url
|
Optional[str]
|
HoneyHive server URL (or set HONEYHIVE_SERVER_URL/ HH_SERVER_URL/HH_API_URL env var) |
None
|
project
|
Optional[str]
|
Deprecated and ignored. Project scope is determined by the API key. |
None
|
name
|
Optional[str]
|
Experiment run name (auto-generated if not provided) |
None
|
run_id
|
Optional[str]
|
Experiment run ID to send to the backend (auto-generated UUID if not provided). The backend's returned run_id is always honored as the final ID. |
None
|
max_workers
|
int
|
ThreadPool size for concurrent execution (default: 10) |
10
|
aggregate_function
|
str
|
Backend aggregation function ("average", "sum", "min", "max") |
'average'
|
verbose
|
bool
|
Enable verbose logging |
False
|
print_results
|
bool
|
Print formatted results table after evaluation (default: True) |
True
|
Returns:
| Type | Description |
|---|---|
Any
|
ExperimentResultSummary with backend-computed aggregates |
Raises:
| Type | Description |
|---|---|
ValueError
|
If neither dataset nor dataset_id provided, or both provided |
Examples:
>>> from honeyhive import HoneyHive
>>> from honeyhive.experiments import evaluate
>>>
>>> # Define function to test (sync)
>>> def my_function(inputs, ground_truth):
... # Your LLM call or function logic
... return {"output": "result"}
>>>
>>> # Async functions are also supported
>>> async def my_async_function(inputs, ground_truth):
... result = await some_async_llm_call()
... return {"output": result}
>>>
>>> # External dataset
>>> dataset = [
... {"inputs": {"query": "test1"}, "ground_truth": {"answer": "a1"}},
... {"inputs": {"query": "test2"}, "ground_truth": {"answer": "a2"}}
... ]
>>>
>>> result = evaluate(
... function=my_function, # or my_async_function
... dataset=dataset,
... api_key="hh_...",
... name="My Experiment"
... )
>>>
>>> print(f"Success: {result.success}")
>>> print(f"Passed: {len(result.passed)}")
>>> print(f"Metrics: {result.metrics.list_metrics()}")
>>>
>>> # HoneyHive dataset
>>> result = evaluate(
... function=my_function,
... dataset_id="ds-123",
... api_key="hh_..."
... )
>>>
>>> # With instrumentors for automatic LLM tracing
>>> from openinference.instrumentation.openai import OpenAIInstrumentor
>>> result = evaluate(
... function=my_function,
... dataset=dataset,
... api_key="hh_...",
... instrumentors=[lambda: OpenAIInstrumentor()]
... )
Source code in src/honeyhive/experiments/core.py
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 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 | |
run_experiment
run_experiment(
function: Callable,
dataset: List[Dict[str, Any]],
datapoint_ids: List[str],
*,
server_url: Optional[str] = None,
experiment_context: ExperimentContext,
api_key: Optional[str] = None,
max_workers: int = 10,
verbose: bool = False,
instrumentors: Optional[List[Callable[[], Any]]] = None,
evaluators: Optional[List[Callable]] = None
) -> List[Dict[str, Any]]
Run experiment with tracer multi-instance pattern.
CRITICAL: Each datapoint gets its OWN tracer instance for isolation. This prevents: - Metadata contamination between datapoints - Race conditions in concurrent execution - Session ID collisions
Threading Model: - Uses ThreadPoolExecutor (not multiprocessing) - I/O-bound operations (LLM calls, API requests) - Each tracer instance is completely isolated - Python 3.11+ GIL improvements for I/O
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
function
|
Callable
|
User function to execute against each datapoint. Can be either a synchronous function or an async function. Async functions are automatically detected and executed with asyncio.run(). |
required |
dataset
|
List[Dict[str, Any]]
|
List of datapoint dictionaries |
required |
datapoint_ids
|
List[str]
|
List of datapoint IDs (parallel to dataset) |
required |
experiment_context
|
ExperimentContext
|
ExperimentContext with run metadata |
required |
api_key
|
Optional[str]
|
HoneyHive API key for tracer (or set HONEYHIVE_API_KEY env var) |
None
|
max_workers
|
int
|
ThreadPool size (default: 10) |
10
|
verbose
|
bool
|
Enable verbose logging |
False
|
instrumentors
|
Optional[List[Callable[[], Any]]]
|
List of instrumentor factory functions. Each factory should return a new instrumentor instance when called. This ensures each datapoint gets its own instrumentor instance for proper trace routing. Example: [lambda: OpenAIInstrumentor(), lambda: AnthropicInstrumentor()] |
None
|
evaluators
|
Optional[List[Callable]]
|
Optional list of evaluator callables. When set, each
evaluator runs inline on the user function's outputs inside
the per-datapoint chain span; their normalized scores attach
to the chain span via |
None
|
Returns:
| Type | Description |
|---|---|
List[Dict[str, Any]]
|
List of execution results (one per datapoint) |
Examples:
>>> def my_function(inputs, ground_truth):
... return {"output": "test"}
>>>
>>> # Async functions are also supported
>>> async def my_async_function(inputs, ground_truth):
... result = await some_async_call()
... return {"output": result}
>>>
>>> context = ExperimentContext(
... run_id="run-123",
... dataset_id="ds-456",
... )
>>>
>>> results = run_experiment(
... function=my_function, # or my_async_function
... dataset=[{"inputs": {}, "ground_truth": {}}],
... datapoint_ids=["dp-1"],
... experiment_context=context,
... api_key="hh_...",
... max_workers=10,
... instrumentors=[lambda: OpenAIInstrumentor()]
... )
Source code in src/honeyhive/experiments/core.py
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 | |
compare_runs
compare_runs(
client: Any,
new_run_id: str,
old_run_id: str,
project_id: Optional[str] = None,
aggregate_function: str = "average",
) -> RunComparisonResult
Compare two experiment runs using backend aggregated comparison.
Backend Endpoint: GET /runs/:new_run_id/compare-with/:old_run_id
The backend computes aggregated metrics for both runs and then compares them: - Common datapoints between runs (by datapoint_id) - Per-metric improved/degraded/same classification - Old and new aggregate values for each metric - Statistical aggregation (average, sum, min, max)
❌ DO NOT compute these client-side! ✅ Use backend endpoint for all comparisons
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
client
|
Any
|
HoneyHive API client |
required |
new_run_id
|
str
|
New experiment run ID |
required |
old_run_id
|
str
|
Old experiment run ID |
required |
project_id
|
Optional[str]
|
Deprecated and ignored. Project scope is determined by the API key. |
None
|
aggregate_function
|
str
|
Aggregation function ("average", "sum", "min", "max") |
'average'
|
Returns:
| Type | Description |
|---|---|
RunComparisonResult
|
RunComparisonResult with delta calculations |
Examples:
>>> comparison = compare_runs(client, "run-new", "run-old")
>>> comparison.common_datapoints
3
>>> delta = comparison.get_metric_delta("accuracy")
>>> delta
{
'old_aggregate': 0.80,
'new_aggregate': 0.85,
'found_count': 3,
'improved_count': 1,
'degraded_count': 0,
'improved': ['EXT-abc123'],
'degraded': []
}
>>> comparison.list_improved_metrics()
['accuracy', 'error_rate']
>>> comparison.list_degraded_metrics()
[]
Source code in src/honeyhive/experiments/results.py
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 | |
get_run_metrics
Get raw metrics for a run (without aggregation).
Backend Endpoint: GET /runs/:run_id/result (returns metrics in response)
This returns raw metric data without aggregation, useful for: - Debugging individual datapoint metrics - Custom aggregation logic (if needed) - Detailed metric analysis
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
client
|
Any
|
HoneyHive API client |
required |
run_id
|
str
|
Experiment run ID |
required |
project_id
|
Optional[str]
|
Deprecated and ignored. Project scope is determined by the API key. |
None
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Raw metrics data from backend |
Examples:
>>> metrics = get_run_metrics(client, "run-123")
>>> metrics["events"]
[{'event_id': '...', 'metrics': {...}}, ...]
Source code in src/honeyhive/experiments/results.py
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 | |
get_run_result
get_run_result(
client: Any,
run_id: str,
project_id: Optional[str] = None,
aggregate_function: str = "average",
) -> ExperimentResultSummary
Get aggregated experiment result from backend.
Backend Endpoint: GET /runs/:run_id/result?aggregate_function=
The backend computes: - Pass/fail status for each datapoint - Metric aggregations (average, sum, min, max) - Composite metrics - Overall run status
❌ DO NOT compute these client-side! ✅ Use backend endpoint for all aggregations
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
client
|
Any
|
HoneyHive API client |
required |
run_id
|
str
|
Experiment run ID |
required |
project_id
|
Optional[str]
|
Deprecated and ignored. Project scope is determined by the API key. |
None
|
aggregate_function
|
str
|
Aggregation function ("average", "sum", "min", "max") |
'average'
|
Returns:
| Type | Description |
|---|---|
ExperimentResultSummary
|
ExperimentResultSummary with all aggregated metrics |
Raises:
| Type | Description |
|---|---|
HTTPError
|
If backend request fails |
ValueError
|
If response format is invalid |
Examples:
>>> from honeyhive import HoneyHive
>>> client = HoneyHive(api_key="...")
>>> result = get_run_result(client, "run-123", None, "average")
>>> result.success
True
>>> result.metrics.get_metric("accuracy")
{'aggregate': 0.85, 'values': [0.8, 0.9, 0.85]}
Source code in src/honeyhive/experiments/results.py
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 | |
generate_external_datapoint_id
generate_external_datapoint_id(
datapoint: Dict[str, Any],
index: int,
custom_id: Optional[str] = None,
) -> str
Generate EXT- prefixed datapoint ID for external datapoints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
datapoint
|
Dict[str, Any]
|
Datapoint dictionary |
required |
index
|
int
|
Index in dataset (for stable ordering) |
required |
custom_id
|
Optional[str]
|
Optional custom ID (will be prefixed with EXT-) |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Datapoint ID with EXT- prefix |
Examples:
>>> datapoint = {"inputs": {"query": "test"}}
>>> generate_external_datapoint_id(datapoint, 0)
'EXT-f1e2d3c4b5a6'
>>> generate_external_datapoint_id(datapoint, 0, custom_id="dp-1")
'EXT-dp-1'
Source code in src/honeyhive/experiments/utils.py
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 | |
generate_external_dataset_id
generate_external_dataset_id(
datapoints: List[Dict[str, Any]],
custom_id: Optional[str] = None,
) -> str
Generate EXT- prefixed dataset ID for external datasets.
External datasets are managed by the user (not stored in HoneyHive). They require an EXT- prefix to distinguish them from HoneyHive datasets.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
datapoints
|
List[Dict[str, Any]]
|
List of datapoint dictionaries |
required |
custom_id
|
Optional[str]
|
Optional custom ID (will be prefixed with EXT-) |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Dataset ID with EXT- prefix |
Examples:
>>> datapoints = [{"inputs": {"query": "test"}}]
>>> generate_external_dataset_id(datapoints)
'EXT-a1b2c3d4e5f6'
>>> generate_external_dataset_id(datapoints, custom_id="my-dataset")
'EXT-my-dataset'
Source code in src/honeyhive/experiments/utils.py
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 | |
prepare_external_dataset
prepare_external_dataset(
datapoints: List[Dict[str, Any]],
custom_dataset_id: Optional[str] = None,
) -> Tuple[str, List[str]]
Prepare external dataset with EXT- IDs.
This function generates a dataset ID and datapoint IDs for an external dataset, ensuring all IDs have the EXT- prefix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
datapoints
|
List[Dict[str, Any]]
|
List of datapoint dictionaries |
required |
custom_dataset_id
|
Optional[str]
|
Optional custom dataset ID |
None
|
Returns:
| Type | Description |
|---|---|
Tuple[str, List[str]]
|
Tuple of (dataset_id, datapoint_ids) |
Examples:
>>> datapoints = [
... {"inputs": {"query": "test1"}},
... {"inputs": {"query": "test2"}}
... ]
>>> dataset_id, datapoint_ids = prepare_external_dataset(datapoints)
>>> dataset_id.startswith("EXT-")
True
>>> all(dp_id.startswith("EXT-") for dp_id in datapoint_ids)
True
Source code in src/honeyhive/experiments/utils.py
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 | |
prepare_run_request_data
prepare_run_request_data(
run_id: str,
name: str,
*,
dataset_id: Optional[str],
event_ids: Optional[List[str]] = None,
datapoint_ids: Optional[List[str]] = None,
configuration: Optional[Dict[str, Any]] = None,
metadata: Optional[Dict[str, Any]] = None,
description: Optional[str] = None,
results: Optional[Dict[str, Any]] = None,
status: str = "pending"
) -> Dict[str, Any]
Prepare run request data with EXT- transformation.
CRITICAL: Backend requires special handling for external datasets: - If dataset_id starts with "EXT-": - Move to metadata.offline_dataset_id - Set dataset_id = None (prevents FK constraint error) - Otherwise, use dataset_id normally
Backend Logic (from backend_service/app/services/experiment_run.service.ts):
if (dataset_id && dataset_id.startsWith('EXT-')) {
metadata = { ...metadata, offline_dataset_id: dataset_id };
dataset_id = undefined; // Avoid FK constraint
}
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
run_id
|
str
|
Experiment run identifier |
required |
name
|
str
|
Run name |
required |
dataset_id
|
Optional[str]
|
Dataset identifier (may have EXT- prefix) |
required |
event_ids
|
Optional[List[str]]
|
List of event/session IDs (optional) |
None
|
configuration
|
Optional[Dict[str, Any]]
|
Run configuration (optional) |
None
|
metadata
|
Optional[Dict[str, Any]]
|
Additional metadata (optional) |
None
|
description
|
Optional[str]
|
Run description (optional) |
None
|
results
|
Optional[Dict[str, Any]]
|
Run results (optional) |
None
|
status
|
str
|
Run status (default: "pending") |
'pending'
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Request data dictionary ready for backend API |
Examples:
>>> # External dataset
>>> data = prepare_run_request_data(
... run_id="run-123",
... name="My Experiment",
... dataset_id="EXT-abc123"
... )
>>> data["dataset_id"] # None (moved to metadata)
>>> data["metadata"]["offline_dataset_id"]
'EXT-abc123'
>>> # HoneyHive dataset
>>> data = prepare_run_request_data(
... run_id="run-123",
... name="My Experiment",
... dataset_id="ds-789"
... )
>>> data["dataset_id"]
'ds-789'
Source code in src/honeyhive/experiments/utils.py
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 | |