abstractcore 2.5.0__py3-none-any.whl → 2.5.2__py3-none-any.whl
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.
- abstractcore/apps/__main__.py +8 -1
- abstractcore/apps/deepsearch.py +644 -0
- abstractcore/apps/intent.py +614 -0
- abstractcore/assets/model_capabilities.json +50 -34
- abstractcore/config/main.py +2 -1
- abstractcore/config/manager.py +11 -0
- abstractcore/core/session.py +46 -1
- abstractcore/processing/__init__.py +5 -1
- abstractcore/processing/basic_deepsearch.py +2173 -0
- abstractcore/processing/basic_intent.py +690 -0
- abstractcore/providers/anthropic_provider.py +1 -0
- abstractcore/providers/base.py +1 -0
- abstractcore/providers/huggingface_provider.py +95 -4
- abstractcore/providers/lmstudio_provider.py +14 -0
- abstractcore/providers/mlx_provider.py +76 -2
- abstractcore/providers/ollama_provider.py +6 -2
- abstractcore/providers/openai_provider.py +1 -0
- abstractcore/providers/registry.py +6 -6
- abstractcore/structured/handler.py +161 -1
- abstractcore/tools/common_tools.py +98 -3
- abstractcore/utils/cli.py +114 -1
- abstractcore/utils/version.py +1 -1
- {abstractcore-2.5.0.dist-info → abstractcore-2.5.2.dist-info}/METADATA +34 -18
- {abstractcore-2.5.0.dist-info → abstractcore-2.5.2.dist-info}/RECORD +28 -24
- {abstractcore-2.5.0.dist-info → abstractcore-2.5.2.dist-info}/entry_points.txt +4 -0
- {abstractcore-2.5.0.dist-info → abstractcore-2.5.2.dist-info}/WHEEL +0 -0
- {abstractcore-2.5.0.dist-info → abstractcore-2.5.2.dist-info}/licenses/LICENSE +0 -0
- {abstractcore-2.5.0.dist-info → abstractcore-2.5.2.dist-info}/top_level.txt +0 -0
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
"llama-3.2-1b": {
|
|
317
317
|
"max_output_tokens": 2048,
|
|
318
318
|
"tool_support": "prompted",
|
|
319
|
-
"structured_output": "
|
|
319
|
+
"structured_output": "native",
|
|
320
320
|
"parallel_tools": false,
|
|
321
321
|
"vision_support": false,
|
|
322
322
|
"audio_support": false,
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"llama-3.2-3b": {
|
|
330
330
|
"max_output_tokens": 2048,
|
|
331
331
|
"tool_support": "prompted",
|
|
332
|
-
"structured_output": "
|
|
332
|
+
"structured_output": "native",
|
|
333
333
|
"parallel_tools": false,
|
|
334
334
|
"vision_support": false,
|
|
335
335
|
"audio_support": false,
|
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
"llama-3.2-11b-vision": {
|
|
343
343
|
"max_output_tokens": 2048,
|
|
344
344
|
"tool_support": "prompted",
|
|
345
|
-
"structured_output": "
|
|
345
|
+
"structured_output": "native",
|
|
346
346
|
"parallel_tools": false,
|
|
347
347
|
"vision_support": true,
|
|
348
348
|
"image_resolutions": [
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
"llama-3.3-70b": {
|
|
359
359
|
"max_output_tokens": 8192,
|
|
360
360
|
"tool_support": "prompted",
|
|
361
|
-
"structured_output": "
|
|
361
|
+
"structured_output": "native",
|
|
362
362
|
"parallel_tools": true,
|
|
363
363
|
"vision_support": false,
|
|
364
364
|
"audio_support": false,
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
"llama-3.1-8b": {
|
|
372
372
|
"max_output_tokens": 8192,
|
|
373
373
|
"tool_support": "native",
|
|
374
|
-
"structured_output": "
|
|
374
|
+
"structured_output": "native",
|
|
375
375
|
"parallel_tools": true,
|
|
376
376
|
"vision_support": false,
|
|
377
377
|
"audio_support": false,
|
|
@@ -384,7 +384,7 @@
|
|
|
384
384
|
"llama-3.1-70b": {
|
|
385
385
|
"max_output_tokens": 8192,
|
|
386
386
|
"tool_support": "native",
|
|
387
|
-
"structured_output": "
|
|
387
|
+
"structured_output": "native",
|
|
388
388
|
"parallel_tools": true,
|
|
389
389
|
"vision_support": false,
|
|
390
390
|
"audio_support": false,
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
"llama-3.1-405b": {
|
|
398
398
|
"max_output_tokens": 8192,
|
|
399
399
|
"tool_support": "native",
|
|
400
|
-
"structured_output": "
|
|
400
|
+
"structured_output": "native",
|
|
401
401
|
"parallel_tools": true,
|
|
402
402
|
"vision_support": false,
|
|
403
403
|
"audio_support": false,
|
|
@@ -426,7 +426,7 @@
|
|
|
426
426
|
"qwen2.5-0.5b": {
|
|
427
427
|
"max_output_tokens": 8192,
|
|
428
428
|
"tool_support": "prompted",
|
|
429
|
-
"structured_output": "
|
|
429
|
+
"structured_output": "native",
|
|
430
430
|
"parallel_tools": false,
|
|
431
431
|
"vision_support": false,
|
|
432
432
|
"audio_support": false,
|
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
"qwen2.5-1.5b": {
|
|
440
440
|
"max_output_tokens": 8192,
|
|
441
441
|
"tool_support": "prompted",
|
|
442
|
-
"structured_output": "
|
|
442
|
+
"structured_output": "native",
|
|
443
443
|
"parallel_tools": false,
|
|
444
444
|
"vision_support": false,
|
|
445
445
|
"audio_support": false,
|
|
@@ -452,7 +452,7 @@
|
|
|
452
452
|
"qwen2.5-3b": {
|
|
453
453
|
"max_output_tokens": 8192,
|
|
454
454
|
"tool_support": "prompted",
|
|
455
|
-
"structured_output": "
|
|
455
|
+
"structured_output": "native",
|
|
456
456
|
"parallel_tools": false,
|
|
457
457
|
"vision_support": false,
|
|
458
458
|
"audio_support": false,
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
"qwen2.5-7b": {
|
|
466
466
|
"max_output_tokens": 8192,
|
|
467
467
|
"tool_support": "prompted",
|
|
468
|
-
"structured_output": "
|
|
468
|
+
"structured_output": "native",
|
|
469
469
|
"parallel_tools": false,
|
|
470
470
|
"vision_support": false,
|
|
471
471
|
"audio_support": false,
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
"qwen2.5-14b": {
|
|
479
479
|
"max_output_tokens": 8192,
|
|
480
480
|
"tool_support": "prompted",
|
|
481
|
-
"structured_output": "
|
|
481
|
+
"structured_output": "native",
|
|
482
482
|
"parallel_tools": false,
|
|
483
483
|
"vision_support": false,
|
|
484
484
|
"audio_support": false,
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
"qwen2.5-32b": {
|
|
492
492
|
"max_output_tokens": 8192,
|
|
493
493
|
"tool_support": "prompted",
|
|
494
|
-
"structured_output": "
|
|
494
|
+
"structured_output": "native",
|
|
495
495
|
"parallel_tools": false,
|
|
496
496
|
"vision_support": false,
|
|
497
497
|
"audio_support": false,
|
|
@@ -504,7 +504,7 @@
|
|
|
504
504
|
"qwen2.5-72b": {
|
|
505
505
|
"max_output_tokens": 8192,
|
|
506
506
|
"tool_support": "prompted",
|
|
507
|
-
"structured_output": "
|
|
507
|
+
"structured_output": "native",
|
|
508
508
|
"parallel_tools": false,
|
|
509
509
|
"vision_support": false,
|
|
510
510
|
"audio_support": false,
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
"qwen3-0.6b": {
|
|
518
518
|
"max_output_tokens": 8192,
|
|
519
519
|
"tool_support": "prompted",
|
|
520
|
-
"structured_output": "
|
|
520
|
+
"structured_output": "native",
|
|
521
521
|
"parallel_tools": false,
|
|
522
522
|
"vision_support": false,
|
|
523
523
|
"audio_support": false,
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
"qwen3-1.7b": {
|
|
532
532
|
"max_output_tokens": 8192,
|
|
533
533
|
"tool_support": "prompted",
|
|
534
|
-
"structured_output": "
|
|
534
|
+
"structured_output": "native",
|
|
535
535
|
"parallel_tools": false,
|
|
536
536
|
"vision_support": false,
|
|
537
537
|
"audio_support": false,
|
|
@@ -545,7 +545,7 @@
|
|
|
545
545
|
"qwen3-4b": {
|
|
546
546
|
"max_output_tokens": 8192,
|
|
547
547
|
"tool_support": "prompted",
|
|
548
|
-
"structured_output": "
|
|
548
|
+
"structured_output": "native",
|
|
549
549
|
"parallel_tools": false,
|
|
550
550
|
"vision_support": false,
|
|
551
551
|
"audio_support": false,
|
|
@@ -559,7 +559,7 @@
|
|
|
559
559
|
"qwen3-32b": {
|
|
560
560
|
"max_output_tokens": 8192,
|
|
561
561
|
"tool_support": "prompted",
|
|
562
|
-
"structured_output": "
|
|
562
|
+
"structured_output": "native",
|
|
563
563
|
"parallel_tools": false,
|
|
564
564
|
"vision_support": false,
|
|
565
565
|
"audio_support": false,
|
|
@@ -573,7 +573,7 @@
|
|
|
573
573
|
"qwen3-30b-a3b": {
|
|
574
574
|
"max_output_tokens": 8192,
|
|
575
575
|
"tool_support": "prompted",
|
|
576
|
-
"structured_output": "
|
|
576
|
+
"structured_output": "native",
|
|
577
577
|
"parallel_tools": false,
|
|
578
578
|
"vision_support": false,
|
|
579
579
|
"audio_support": false,
|
|
@@ -584,10 +584,26 @@
|
|
|
584
584
|
"aliases": [],
|
|
585
585
|
"max_tokens": 40960
|
|
586
586
|
},
|
|
587
|
+
"qwen3-30b-a3b-2507": {
|
|
588
|
+
"max_output_tokens": 8192,
|
|
589
|
+
"tool_support": "prompted",
|
|
590
|
+
"structured_output": "native",
|
|
591
|
+
"parallel_tools": false,
|
|
592
|
+
"vision_support": false,
|
|
593
|
+
"audio_support": false,
|
|
594
|
+
"thinking_support": true,
|
|
595
|
+
"notes": "Qwen3-30B-A3B-Instruct-2507 with enhanced reasoning, coding, and mathematical skills. Supports up to 256K context, extendable to 1M tokens",
|
|
596
|
+
"source": "Alibaba Qwen3 2507 release",
|
|
597
|
+
"canonical_name": "qwen3-30b-a3b-2507",
|
|
598
|
+
"aliases": [
|
|
599
|
+
"qwen/qwen3-30b-a3b-2507"
|
|
600
|
+
],
|
|
601
|
+
"max_tokens": 262144
|
|
602
|
+
},
|
|
587
603
|
"qwen3-coder-30b": {
|
|
588
604
|
"max_output_tokens": 8192,
|
|
589
605
|
"tool_support": "native",
|
|
590
|
-
"structured_output": "
|
|
606
|
+
"structured_output": "native",
|
|
591
607
|
"parallel_tools": true,
|
|
592
608
|
"vision_support": false,
|
|
593
609
|
"audio_support": false,
|
|
@@ -600,7 +616,7 @@
|
|
|
600
616
|
"qwen2-vl": {
|
|
601
617
|
"max_output_tokens": 8192,
|
|
602
618
|
"tool_support": "prompted",
|
|
603
|
-
"structured_output": "
|
|
619
|
+
"structured_output": "native",
|
|
604
620
|
"parallel_tools": false,
|
|
605
621
|
"vision_support": true,
|
|
606
622
|
"image_resolutions": [
|
|
@@ -643,7 +659,7 @@
|
|
|
643
659
|
"phi-3-mini": {
|
|
644
660
|
"max_output_tokens": 4096,
|
|
645
661
|
"tool_support": "prompted",
|
|
646
|
-
"structured_output": "
|
|
662
|
+
"structured_output": "native",
|
|
647
663
|
"parallel_tools": false,
|
|
648
664
|
"vision_support": false,
|
|
649
665
|
"audio_support": false,
|
|
@@ -656,7 +672,7 @@
|
|
|
656
672
|
"phi-3-small": {
|
|
657
673
|
"max_output_tokens": 8192,
|
|
658
674
|
"tool_support": "prompted",
|
|
659
|
-
"structured_output": "
|
|
675
|
+
"structured_output": "native",
|
|
660
676
|
"parallel_tools": false,
|
|
661
677
|
"vision_support": false,
|
|
662
678
|
"audio_support": false,
|
|
@@ -668,7 +684,7 @@
|
|
|
668
684
|
"phi-3-medium": {
|
|
669
685
|
"max_output_tokens": 4096,
|
|
670
686
|
"tool_support": "prompted",
|
|
671
|
-
"structured_output": "
|
|
687
|
+
"structured_output": "native",
|
|
672
688
|
"parallel_tools": false,
|
|
673
689
|
"vision_support": false,
|
|
674
690
|
"audio_support": false,
|
|
@@ -680,7 +696,7 @@
|
|
|
680
696
|
"phi-3.5-mini": {
|
|
681
697
|
"max_output_tokens": 4096,
|
|
682
698
|
"tool_support": "prompted",
|
|
683
|
-
"structured_output": "
|
|
699
|
+
"structured_output": "native",
|
|
684
700
|
"parallel_tools": false,
|
|
685
701
|
"vision_support": false,
|
|
686
702
|
"audio_support": false,
|
|
@@ -692,7 +708,7 @@
|
|
|
692
708
|
"phi-3.5-moe": {
|
|
693
709
|
"max_output_tokens": 4096,
|
|
694
710
|
"tool_support": "prompted",
|
|
695
|
-
"structured_output": "
|
|
711
|
+
"structured_output": "native",
|
|
696
712
|
"parallel_tools": false,
|
|
697
713
|
"vision_support": false,
|
|
698
714
|
"audio_support": false,
|
|
@@ -705,7 +721,7 @@
|
|
|
705
721
|
"phi-3-vision": {
|
|
706
722
|
"max_output_tokens": 4096,
|
|
707
723
|
"tool_support": "prompted",
|
|
708
|
-
"structured_output": "
|
|
724
|
+
"structured_output": "native",
|
|
709
725
|
"parallel_tools": false,
|
|
710
726
|
"vision_support": true,
|
|
711
727
|
"image_resolutions": [
|
|
@@ -720,7 +736,7 @@
|
|
|
720
736
|
"phi-4": {
|
|
721
737
|
"max_output_tokens": 16000,
|
|
722
738
|
"tool_support": "prompted",
|
|
723
|
-
"structured_output": "
|
|
739
|
+
"structured_output": "native",
|
|
724
740
|
"parallel_tools": false,
|
|
725
741
|
"vision_support": false,
|
|
726
742
|
"audio_support": false,
|
|
@@ -733,7 +749,7 @@
|
|
|
733
749
|
"mistral-7b": {
|
|
734
750
|
"max_output_tokens": 8192,
|
|
735
751
|
"tool_support": "prompted",
|
|
736
|
-
"structured_output": "
|
|
752
|
+
"structured_output": "native",
|
|
737
753
|
"parallel_tools": false,
|
|
738
754
|
"vision_support": false,
|
|
739
755
|
"audio_support": false,
|
|
@@ -941,7 +957,7 @@
|
|
|
941
957
|
"gemma-2b": {
|
|
942
958
|
"max_output_tokens": 8192,
|
|
943
959
|
"tool_support": "none",
|
|
944
|
-
"structured_output": "
|
|
960
|
+
"structured_output": "native",
|
|
945
961
|
"parallel_tools": false,
|
|
946
962
|
"vision_support": false,
|
|
947
963
|
"audio_support": false,
|
|
@@ -953,7 +969,7 @@
|
|
|
953
969
|
"gemma-7b": {
|
|
954
970
|
"max_output_tokens": 8192,
|
|
955
971
|
"tool_support": "none",
|
|
956
|
-
"structured_output": "
|
|
972
|
+
"structured_output": "native",
|
|
957
973
|
"parallel_tools": false,
|
|
958
974
|
"vision_support": false,
|
|
959
975
|
"audio_support": false,
|
|
@@ -1002,7 +1018,7 @@
|
|
|
1002
1018
|
"codegemma": {
|
|
1003
1019
|
"max_output_tokens": 8192,
|
|
1004
1020
|
"tool_support": "none",
|
|
1005
|
-
"structured_output": "
|
|
1021
|
+
"structured_output": "native",
|
|
1006
1022
|
"parallel_tools": false,
|
|
1007
1023
|
"vision_support": false,
|
|
1008
1024
|
"audio_support": false,
|
|
@@ -1033,7 +1049,7 @@
|
|
|
1033
1049
|
"glm-4": {
|
|
1034
1050
|
"max_output_tokens": 4096,
|
|
1035
1051
|
"tool_support": "prompted",
|
|
1036
|
-
"structured_output": "
|
|
1052
|
+
"structured_output": "native",
|
|
1037
1053
|
"parallel_tools": false,
|
|
1038
1054
|
"vision_support": false,
|
|
1039
1055
|
"audio_support": false,
|
|
@@ -1085,7 +1101,7 @@
|
|
|
1085
1101
|
"qwen3": {
|
|
1086
1102
|
"max_output_tokens": 8192,
|
|
1087
1103
|
"tool_support": "prompted",
|
|
1088
|
-
"structured_output": "
|
|
1104
|
+
"structured_output": "native",
|
|
1089
1105
|
"parallel_tools": false,
|
|
1090
1106
|
"vision_support": false,
|
|
1091
1107
|
"audio_support": false,
|
abstractcore/config/main.py
CHANGED
|
@@ -289,7 +289,8 @@ def print_status():
|
|
|
289
289
|
("CLI (utils)", app_defaults["cli"]),
|
|
290
290
|
("Summarizer", app_defaults["summarizer"]),
|
|
291
291
|
("Extractor", app_defaults["extractor"]),
|
|
292
|
-
("Judge", app_defaults["judge"])
|
|
292
|
+
("Judge", app_defaults["judge"]),
|
|
293
|
+
("Intent", app_defaults["intent"])
|
|
293
294
|
]
|
|
294
295
|
|
|
295
296
|
for app_name, app_info in apps:
|
abstractcore/config/manager.py
CHANGED
|
@@ -43,6 +43,8 @@ class AppDefaults:
|
|
|
43
43
|
extractor_model: Optional[str] = "unsloth/Qwen3-4B-Instruct-2507-GGUF"
|
|
44
44
|
judge_provider: Optional[str] = "huggingface"
|
|
45
45
|
judge_model: Optional[str] = "unsloth/Qwen3-4B-Instruct-2507-GGUF"
|
|
46
|
+
intent_provider: Optional[str] = "huggingface"
|
|
47
|
+
intent_model: Optional[str] = "unsloth/Qwen3-4B-Instruct-2507-GGUF"
|
|
46
48
|
|
|
47
49
|
|
|
48
50
|
@dataclass
|
|
@@ -227,6 +229,10 @@ class ConfigurationManager:
|
|
|
227
229
|
"judge": {
|
|
228
230
|
"provider": self.config.app_defaults.judge_provider,
|
|
229
231
|
"model": self.config.app_defaults.judge_model
|
|
232
|
+
},
|
|
233
|
+
"intent": {
|
|
234
|
+
"provider": self.config.app_defaults.intent_provider,
|
|
235
|
+
"model": self.config.app_defaults.intent_model
|
|
230
236
|
}
|
|
231
237
|
},
|
|
232
238
|
"global_defaults": {
|
|
@@ -290,6 +296,9 @@ class ConfigurationManager:
|
|
|
290
296
|
elif app_name == "judge":
|
|
291
297
|
self.config.app_defaults.judge_provider = provider
|
|
292
298
|
self.config.app_defaults.judge_model = model
|
|
299
|
+
elif app_name == "intent":
|
|
300
|
+
self.config.app_defaults.intent_provider = provider
|
|
301
|
+
self.config.app_defaults.intent_model = model
|
|
293
302
|
else:
|
|
294
303
|
raise ValueError(f"Unknown app: {app_name}")
|
|
295
304
|
|
|
@@ -327,6 +336,8 @@ class ConfigurationManager:
|
|
|
327
336
|
return app_defaults.extractor_provider, app_defaults.extractor_model
|
|
328
337
|
elif app_name == "judge":
|
|
329
338
|
return app_defaults.judge_provider, app_defaults.judge_model
|
|
339
|
+
elif app_name == "intent":
|
|
340
|
+
return app_defaults.intent_provider, app_defaults.intent_model
|
|
330
341
|
else:
|
|
331
342
|
# Return default fallback
|
|
332
343
|
return "huggingface", "unsloth/Qwen3-4B-Instruct-2507-GGUF"
|
abstractcore/core/session.py
CHANGED
|
@@ -893,4 +893,49 @@ class BasicSession:
|
|
|
893
893
|
"statistics": extraction_result.get("statistics", {})
|
|
894
894
|
}
|
|
895
895
|
|
|
896
|
-
return self.facts
|
|
896
|
+
return self.facts
|
|
897
|
+
|
|
898
|
+
def analyze_intents(self,
|
|
899
|
+
focus_participant: Optional[str] = None,
|
|
900
|
+
depth: str = "underlying",
|
|
901
|
+
context_type: str = "conversational") -> Dict[str, Any]:
|
|
902
|
+
"""
|
|
903
|
+
Analyze intents in the conversation using BasicIntentAnalyzer.
|
|
904
|
+
|
|
905
|
+
Args:
|
|
906
|
+
focus_participant: Optional role to focus analysis on (e.g., "user", "assistant")
|
|
907
|
+
depth: Depth of intent analysis ("surface", "underlying", "comprehensive")
|
|
908
|
+
context_type: Context type for analysis ("conversational" is default for sessions)
|
|
909
|
+
|
|
910
|
+
Returns:
|
|
911
|
+
Dict containing intent analysis results for each participant
|
|
912
|
+
"""
|
|
913
|
+
if not self.messages:
|
|
914
|
+
return {}
|
|
915
|
+
|
|
916
|
+
if not self.provider:
|
|
917
|
+
raise ValueError("No provider available for intent analysis")
|
|
918
|
+
|
|
919
|
+
try:
|
|
920
|
+
from ..processing import BasicIntentAnalyzer, IntentDepth, IntentContext
|
|
921
|
+
except ImportError:
|
|
922
|
+
raise ImportError("BasicIntentAnalyzer not available")
|
|
923
|
+
|
|
924
|
+
# Create intent analyzer
|
|
925
|
+
analyzer = BasicIntentAnalyzer(self.provider)
|
|
926
|
+
|
|
927
|
+
# Convert depth and context strings to enums
|
|
928
|
+
depth_enum = IntentDepth(depth)
|
|
929
|
+
context_enum = IntentContext(context_type)
|
|
930
|
+
|
|
931
|
+
# Convert session messages to the format expected by analyze_conversation_intents
|
|
932
|
+
message_dicts = [{"role": msg.role, "content": msg.content} for msg in self.messages]
|
|
933
|
+
|
|
934
|
+
# Analyze conversation intents
|
|
935
|
+
results = analyzer.analyze_conversation_intents(
|
|
936
|
+
messages=message_dicts,
|
|
937
|
+
focus_participant=focus_participant,
|
|
938
|
+
depth=depth_enum
|
|
939
|
+
)
|
|
940
|
+
|
|
941
|
+
return results
|
|
@@ -8,9 +8,13 @@ demonstrating how to leverage the core infrastructure for real-world tasks.
|
|
|
8
8
|
from .basic_summarizer import BasicSummarizer, SummaryStyle, SummaryLength
|
|
9
9
|
from .basic_extractor import BasicExtractor
|
|
10
10
|
from .basic_judge import BasicJudge, JudgmentCriteria, Assessment, create_judge
|
|
11
|
+
from .basic_deepsearch import BasicDeepSearch, ResearchReport, ResearchFinding, ResearchPlan, ResearchSubTask
|
|
12
|
+
from .basic_intent import BasicIntentAnalyzer, IntentType, IntentDepth, IntentContext, IdentifiedIntent, IntentAnalysisOutput
|
|
11
13
|
|
|
12
14
|
__all__ = [
|
|
13
15
|
'BasicSummarizer', 'SummaryStyle', 'SummaryLength',
|
|
14
16
|
'BasicExtractor',
|
|
15
|
-
'BasicJudge', 'JudgmentCriteria', 'Assessment', 'create_judge'
|
|
17
|
+
'BasicJudge', 'JudgmentCriteria', 'Assessment', 'create_judge',
|
|
18
|
+
'BasicDeepSearch', 'ResearchReport', 'ResearchFinding', 'ResearchPlan', 'ResearchSubTask',
|
|
19
|
+
'BasicIntentAnalyzer', 'IntentType', 'IntentDepth', 'IntentContext', 'IdentifiedIntent', 'IntentAnalysisOutput'
|
|
16
20
|
]
|