noesium 0.1.0__py3-none-any.whl → 0.2.0__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.
Files changed (59) hide show
  1. noesium/agents/askura_agent/__init__.py +22 -0
  2. noesium/agents/askura_agent/askura_agent.py +480 -0
  3. noesium/agents/askura_agent/conversation.py +164 -0
  4. noesium/agents/askura_agent/extractor.py +175 -0
  5. noesium/agents/askura_agent/memory.py +14 -0
  6. noesium/agents/askura_agent/models.py +239 -0
  7. noesium/agents/askura_agent/prompts.py +202 -0
  8. noesium/agents/askura_agent/reflection.py +234 -0
  9. noesium/agents/askura_agent/summarizer.py +30 -0
  10. noesium/agents/askura_agent/utils.py +6 -0
  11. noesium/agents/deep_research/__init__.py +13 -0
  12. noesium/agents/deep_research/agent.py +398 -0
  13. noesium/agents/deep_research/prompts.py +84 -0
  14. noesium/agents/deep_research/schemas.py +42 -0
  15. noesium/agents/deep_research/state.py +54 -0
  16. noesium/agents/search/__init__.py +5 -0
  17. noesium/agents/search/agent.py +474 -0
  18. noesium/agents/search/state.py +28 -0
  19. noesium/core/__init__.py +1 -1
  20. noesium/core/agent/base.py +10 -2
  21. noesium/core/goalith/decomposer/llm_decomposer.py +1 -1
  22. noesium/core/llm/__init__.py +1 -1
  23. noesium/core/llm/base.py +2 -2
  24. noesium/core/llm/litellm.py +42 -21
  25. noesium/core/llm/llamacpp.py +25 -4
  26. noesium/core/llm/ollama.py +43 -22
  27. noesium/core/llm/openai.py +25 -5
  28. noesium/core/llm/openrouter.py +1 -1
  29. noesium/core/toolify/base.py +9 -2
  30. noesium/core/toolify/config.py +2 -2
  31. noesium/core/toolify/registry.py +21 -5
  32. noesium/core/tracing/opik_tracing.py +7 -7
  33. noesium/core/vector_store/__init__.py +2 -2
  34. noesium/core/vector_store/base.py +1 -1
  35. noesium/core/vector_store/pgvector.py +10 -13
  36. noesium/core/vector_store/weaviate.py +2 -1
  37. noesium/toolkits/__init__.py +1 -0
  38. noesium/toolkits/arxiv_toolkit.py +310 -0
  39. noesium/toolkits/audio_aliyun_toolkit.py +441 -0
  40. noesium/toolkits/audio_toolkit.py +370 -0
  41. noesium/toolkits/bash_toolkit.py +332 -0
  42. noesium/toolkits/document_toolkit.py +454 -0
  43. noesium/toolkits/file_edit_toolkit.py +552 -0
  44. noesium/toolkits/github_toolkit.py +395 -0
  45. noesium/toolkits/gmail_toolkit.py +575 -0
  46. noesium/toolkits/image_toolkit.py +425 -0
  47. noesium/toolkits/memory_toolkit.py +398 -0
  48. noesium/toolkits/python_executor_toolkit.py +334 -0
  49. noesium/toolkits/search_toolkit.py +451 -0
  50. noesium/toolkits/serper_toolkit.py +623 -0
  51. noesium/toolkits/tabular_data_toolkit.py +537 -0
  52. noesium/toolkits/user_interaction_toolkit.py +365 -0
  53. noesium/toolkits/video_toolkit.py +168 -0
  54. noesium/toolkits/wikipedia_toolkit.py +420 -0
  55. {noesium-0.1.0.dist-info → noesium-0.2.0.dist-info}/METADATA +56 -48
  56. {noesium-0.1.0.dist-info → noesium-0.2.0.dist-info}/RECORD +59 -23
  57. {noesium-0.1.0.dist-info → noesium-0.2.0.dist-info}/licenses/LICENSE +1 -1
  58. {noesium-0.1.0.dist-info → noesium-0.2.0.dist-info}/WHEEL +0 -0
  59. {noesium-0.1.0.dist-info → noesium-0.2.0.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,26 @@
1
- noesium/core/__init__.py,sha256=A43qGT8y35NZfO8qGLwRdmizmQqgWAUGr0a2LmSz7ZY,151
1
+ noesium/agents/askura_agent/__init__.py,sha256=JMQpxNxvUdV_H236RcW8F7PTvpZi57sAUR5ZCfY4A2E,672
2
+ noesium/agents/askura_agent/askura_agent.py,sha256=wbvnZoAO7SSepF99nLXdNl49xJOe4Ea1aOp3eJf2CVY,20660
3
+ noesium/agents/askura_agent/conversation.py,sha256=wigf25vdi1h0acWBN_hU2Tnjv05pmy6m2IN4eEBaSR8,7177
4
+ noesium/agents/askura_agent/extractor.py,sha256=THzRCy120O23pUoNb1kzpKpUuffL8nPMOXCPuEYeCdY,7474
5
+ noesium/agents/askura_agent/memory.py,sha256=SgacTTFH7yzUlUPxvupEXI1aE8r3fiCiU2BlZ0QSWiM,243
6
+ noesium/agents/askura_agent/models.py,sha256=3Sm1vPSQ0dVFrPyrp6SZ5AR_BJVfC_WTNwdaqQ_lCKE,8163
7
+ noesium/agents/askura_agent/prompts.py,sha256=BrQe1hk-ayQnPWxk0TcteE-by_Twh70ejHVrRFlxUpY,9874
8
+ noesium/agents/askura_agent/reflection.py,sha256=hJNMsu4-H1qO7QVNSjne4Id0NQgjHyNssy5ZI0pXVXE,10447
9
+ noesium/agents/askura_agent/summarizer.py,sha256=99obYfSVmZMvJSj3vP7eFYmULt_expODU_5DX_vyOuc,1140
10
+ noesium/agents/askura_agent/utils.py,sha256=afTjj7snsxu9MPzuZigB7PzDfHUB9C_LsTX8WEGxDkc,236
11
+ noesium/agents/deep_research/__init__.py,sha256=Fi-mJNj7ovIqAXA35vqIm1dvZE7W90sGeI6aEnV6Pmg,255
12
+ noesium/agents/deep_research/agent.py,sha256=O1nbwdyWnHWSpHWSYBMqPUC_QQbMPpHmGOV91aXki2k,15710
13
+ noesium/agents/deep_research/prompts.py,sha256=xMhUoGby76WApBfSL6bjacRahDzNpQM1Se472kZ-Ty8,3878
14
+ noesium/agents/deep_research/schemas.py,sha256=kLGtQgLlnTG5sllobK0xKdsgxdgBuTWDmk8ef1rMWp8,1509
15
+ noesium/agents/deep_research/state.py,sha256=kIXDTV1-rRYNIHPPspDVVrsnHrVJT0T45sXcwx7YNG4,1199
16
+ noesium/agents/search/__init__.py,sha256=rh_CriiUt-s6Ux8qgu39k4bBl_vkETVgCBKB54_CBZM,65
17
+ noesium/agents/search/agent.py,sha256=Fffg_nHQmVrlN2YSf-6q9k07OrELun0Rg9jxO90KxBA,19495
18
+ noesium/agents/search/state.py,sha256=uKio0wJxkjWbW_VDKoDg21XPLZMIgSMF1BRfHy92X9g,581
19
+ noesium/core/__init__.py,sha256=03RptDWvn2mnMVqC5SHGXjzh2WkfuWZ0oetPC3y5T4k,151
2
20
  noesium/core/consts.py,sha256=kQkfpHhtuDMZbr6E02C1VvMZiTmBgNuRsJo2WF8kcqU,155
3
21
  noesium/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
22
  noesium/core/agent/__init__.py,sha256=Bds12umS_T4WzSXriph3DL_Bndf_Dz7pbhchv4dEoJQ,306
5
- noesium/core/agent/base.py,sha256=FyAPigcAfEMgZXZ60gccn2n-7JLCRazeEr6LvkRUhoA,8548
23
+ noesium/core/agent/base.py,sha256=cHyhkX8S_vZ_J9N_YChPRyPlsMU4twzvpa0szJE1rjw,8694
6
24
  noesium/core/goalith/errors.py,sha256=xCDeys0secxL_8_AqWjigV3c6UnQ-M-FpS8BOe2-Hgs,543
7
25
  noesium/core/goalith/service.py,sha256=8nvDhZMrhujS9brfVai6LKA2H_jgi9SrQ_UG5X4xKSk,611
8
26
  noesium/core/goalith/conflict/conflict.py,sha256=olnEPlmuKyXrL3XWfe13pe3N-k7VgsVBo6U-DwiXDJc,3683
@@ -10,21 +28,21 @@ noesium/core/goalith/conflict/detector.py,sha256=v7ZqwlmQwMEgR3m_iFjPD5fEzPfusQs
10
28
  noesium/core/goalith/decomposer/__init__.py,sha256=iX-Ev5rzihigxMGQEoTPk8PHvTRIvq0766NfG76dVLo,272
11
29
  noesium/core/goalith/decomposer/base.py,sha256=Pg5Gaw7w7mgTrXktw8ijGsnYmHakvpraq1twcnDUczs,1265
12
30
  noesium/core/goalith/decomposer/callable_decomposer.py,sha256=MTFm_VdjnuWgLNK9VA5zD17GI1YMiPYkbVUO08Ua2sA,2055
13
- noesium/core/goalith/decomposer/llm_decomposer.py,sha256=5ERtdPR204k5Au89nvrOH-fZaDl9a-UPYZQo8tAWwXA,12249
31
+ noesium/core/goalith/decomposer/llm_decomposer.py,sha256=_tZtNCQuvS8xvIAk5H_2KgOARJ_oN4eZ2J8uqad-bp8,12249
14
32
  noesium/core/goalith/decomposer/prompts.py,sha256=23-bFA80dWC_WcTB0BiPj7SwYFkgPrmjQNGhkhwj8BA,5235
15
33
  noesium/core/goalith/decomposer/simple_decomposer.py,sha256=k0TmDO7flkOzI4zWBm3UzqgjxMm0KWCWp4vItY1bIrI,1852
16
34
  noesium/core/goalith/goalgraph/graph.py,sha256=JIoGw2X4Sefxi5eoTx7N_MGcD33YYU3vHYb6xAzoKwY,16549
17
35
  noesium/core/goalith/goalgraph/node.py,sha256=Q7bXV0o0-E_anxUH6rLfZaYXZh2xEjeTRCQ5Hx0T3gQ,6998
18
36
  noesium/core/goalith/replanner/base.py,sha256=HBWU5uBftT3uzW8e8_g258EZdj2hAHxpH7UWMRiy4hk,780
19
37
  noesium/core/goalith/replanner/replanner.py,sha256=AI53IWCQ7D_eJ98aW7UkoALote0vOlxfq-XA0UCVn-g,1082
20
- noesium/core/llm/__init__.py,sha256=7RBY8ydEBYtmUGgCPmpJXpB-_Zwr5D63S8s4FY-gBPY,5245
21
- noesium/core/llm/base.py,sha256=TiCp5Qobfm4vVuvo4wdg4IrPS7DjjpS0XYznWlIy6N8,4532
22
- noesium/core/llm/litellm.py,sha256=2HQxr_jF12SqGnzUy1WUILoWkB_Qt0fKi6cHRgaPJFA,19358
23
- noesium/core/llm/llamacpp.py,sha256=b_oY2s6QybMnLf1EhNbeIIwJQek7Qd_L0wMmymSsM10,17832
38
+ noesium/core/llm/__init__.py,sha256=nGrmUVsfFlPocn2XGaTBnPVFjapz7jaow9rB7MKSCIU,5245
39
+ noesium/core/llm/base.py,sha256=Vy7GAkLPTTK42219slYv-7Id-ZgHFdVayuMlHzlnstE,4532
40
+ noesium/core/llm/litellm.py,sha256=yHplcL2hIvr0IUSQCGQZtyv_wKfv77ABxhyBZ_p-cIw,19990
41
+ noesium/core/llm/llamacpp.py,sha256=0VPkEju57qZ0D9W1fRwI3PaxrAXGhm1rfW-2VL7dcuk,18430
24
42
  noesium/core/llm/message.py,sha256=GUUdNVynSwzPZp6_Xq3ICv-9sQFyOVvsvSo_n1C1_uE,5775
25
- noesium/core/llm/ollama.py,sha256=NnxrxBwzHP1N5FH1VJgsyQqKSn3rF8B__Z32OV6Bm8Y,15593
26
- noesium/core/llm/openai.py,sha256=gCySMHiRNG5r8fsjQe_HyCueZVfSqnf-_kfEL3p4UMk,19052
27
- noesium/core/llm/openrouter.py,sha256=0Vkzz-YOszXfA0FOKERzM6h4Dwhts07Lp8j0OxsOe-c,3131
43
+ noesium/core/llm/ollama.py,sha256=jnxEbIZvWJ8az6nnMjrtCYWZfaojWfVcGmhWwGXEb6E,16226
44
+ noesium/core/llm/openai.py,sha256=x3xJ216hKAoHOJqmzb6RnigDX8NlHIRq9U4-kis2F5k,19617
45
+ noesium/core/llm/openrouter.py,sha256=Any9wZq-2IOserudom5IYNC5zrJc_Q2amnfw8Bh0D24,3131
28
46
  noesium/core/llm/prompt.py,sha256=LVL7qZhvUWBdCYmoM3ybbLOnhnUBu6reM6J75KQ1qeA,19753
29
47
  noesium/core/memory/__init__.py,sha256=P-Qk09fXVexIt-NvHR5b4ZqZ2Z9n4SRpOcevR3NxLzM,265
30
48
  noesium/core/memory/base.py,sha256=wN5X1tN3LqQTCYJjiefBTZYZivMdru83eEs2F6pVKQU,15648
@@ -62,25 +80,43 @@ noesium/core/routing/strategies/__init__.py,sha256=643Cw5-Nbm12Pa2YoFyP-Xqve_VCp
62
80
  noesium/core/routing/strategies/dynamic_complexity.py,sha256=kXI6Mn3Hhpg-chtJkQQ4ZiHMzRjG73SoB2BFEFrN3IQ,13637
63
81
  noesium/core/routing/strategies/self_assessment.py,sha256=A_VFvEbUkYBIRz-wHxqPJ6h-1PJs2O5AIX6eiJaNkAI,5459
64
82
  noesium/core/toolify/__init__.py,sha256=mVvZSu4FykwrIl6S4unI2CXk0CVebhb-bHG-0lv1r_U,957
65
- noesium/core/toolify/base.py,sha256=iO79UqJ8E_k2pK1QUMV2ziPf7e9smWMzvSPG-XnFXFI,11439
66
- noesium/core/toolify/config.py,sha256=UIEDz2iWGzCFXU45_J1bj3V0YPPIvsa4imFNc6yNTjk,4261
83
+ noesium/core/toolify/base.py,sha256=cThGND1xtalv5iD6riH3cg3oP80QzdH7x-NAEoZ6FBQ,11568
84
+ noesium/core/toolify/config.py,sha256=F4AlLgSGNHB2f6VJfEjqz0zqavOaXUbc2DjkgX29iqQ,4261
67
85
  noesium/core/toolify/mcp_integration.py,sha256=AEnkRWBR_XQ3nzq6gWkp2mjXz5DCKwUskvyVffxWzWw,9181
68
- noesium/core/toolify/registry.py,sha256=DbBUR4j55ux-So8-1HTG3TPscuPA1VUlDWbkdxcG8M4,5765
86
+ noesium/core/toolify/registry.py,sha256=ZqKmwnRNjprDeYsbjRqYfuABtz0tEtVAeLMeBAdKPdk,6409
69
87
  noesium/core/toolify/toolkits/__init__.py,sha256=-TFS324sAs74G6m1sbnI2QTmGW_oeHMn8WiKGoK2gcU,25
70
88
  noesium/core/tracing/__init__.py,sha256=BQ_AZGHPpcDPCZXsTuhrbud-PD20eBOIUgQ1p3BiuMk,986
71
89
  noesium/core/tracing/langgraph_hooks.py,sha256=8clMfaziTI--UrG40H2XzK4TSIQ5v6ZvEZxhoskThug,13793
72
- noesium/core/tracing/opik_tracing.py,sha256=tEaPGcGCVwc9A99TauekFbIDgIzKDPEjt55JkypZna0,4530
90
+ noesium/core/tracing/opik_tracing.py,sha256=BdGTjsHIsNWmQsb10RUilaoFIL_s391wkSzd9o4CBn4,4530
73
91
  noesium/core/tracing/token_tracker.py,sha256=i5LMZeSLo2uwKM8UVPDdx20-D3_A2yfS6XJqS_6MIYw,5778
74
92
  noesium/core/utils/__init__.py,sha256=Pi8evCA88bp0ew2G-W9tVxuucLTxGdSVJdDlxNrP6kI,144
75
93
  noesium/core/utils/logging.py,sha256=bXD-3jukvcK384XiCFtCRyL968O4U-lXSkupwxzbj4I,5656
76
94
  noesium/core/utils/statistics.py,sha256=Us_MFv4AIJDbX-F2E7C9UeVRp1ha3SE8MFhHz6-utGc,428
77
95
  noesium/core/utils/typing.py,sha256=Z2CiZt432QiZFnLCX41j_XybGYIPziqagXmMJ1NknBs,427
78
- noesium/core/vector_store/__init__.py,sha256=Xr5AnIq_f9bF0tbm6Ltv5pnbGryplmMifIEDlFSpVoI,2473
79
- noesium/core/vector_store/base.py,sha256=PSRjWNv1EDtcrg9E2I_8yW5ddKN58KsSgTXrAh9GlDY,2926
80
- noesium/core/vector_store/pgvector.py,sha256=2tfn-hvH7Gu7MRHWW05ELLo3t_QsLPNnPJ00HhISC8E,10158
81
- noesium/core/vector_store/weaviate.py,sha256=bEGeL-DqmDmiSTRYp3eSPrZb6RT-exRDN55aGETyfZQ,14623
82
- noesium-0.1.0.dist-info/licenses/LICENSE,sha256=y8lHGeHp0BleF7gTcVubhitWtsd5op7rCe0Mna4Oo44,1069
83
- noesium-0.1.0.dist-info/METADATA,sha256=lGp4o5dGFN1hXdfBBu8d6Q1NIC-uKDeJQ2hpcPTmjCQ,16923
84
- noesium-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
85
- noesium-0.1.0.dist-info/top_level.txt,sha256=IW36N4DMZNJLo2bt_QMlnw-NZepN5fnqmEKbTbb7Tug,8
86
- noesium-0.1.0.dist-info/RECORD,,
96
+ noesium/core/vector_store/__init__.py,sha256=iLd4ouQkZhGq33vflWpyocVdnfrlFeyI_B6dM8jU9n0,2473
97
+ noesium/core/vector_store/base.py,sha256=mX9HnMUqZV0dAh37vwS9d9culNjWuA-JKwjHZcNdiYk,2926
98
+ noesium/core/vector_store/pgvector.py,sha256=GXGh38x3u28iUwW7fxOiROdoRH7uyuBL1LIY4xPB9mA,10148
99
+ noesium/core/vector_store/weaviate.py,sha256=1kCgoACKPJ63ZWYhm_LSAAK5beZmsjeubhTe0MxiWFs,14673
100
+ noesium/toolkits/__init__.py,sha256=dTspWGfE_X6-lCMSPUH_k1bL6NucAv5hdaikiLPf_8c,69
101
+ noesium/toolkits/arxiv_toolkit.py,sha256=b0ogtdkW4_Hk8orbM9NTrPzu4IyK7vq05nvN-K8W9bI,11358
102
+ noesium/toolkits/audio_aliyun_toolkit.py,sha256=wFfxYhXIXrHci8xk26qHkr1ctzk-vh1HbLlv0ywN-7E,17259
103
+ noesium/toolkits/audio_toolkit.py,sha256=CmNnQCAi5QSqgnL7lOsKab5VwWpXa5SuwqADLcUGEew,13391
104
+ noesium/toolkits/bash_toolkit.py,sha256=VQpeL2KPk2nCQg7qpZkqAaI6R5jrmu7DRx4ubBhws3M,10868
105
+ noesium/toolkits/document_toolkit.py,sha256=IlfIVkBDj8Xqet3wKGKg6mb0EQKN1Bs-Xoc_eggtQbI,15588
106
+ noesium/toolkits/file_edit_toolkit.py,sha256=aCE7KargJ28OIBblzTt1eCT7hM-H5L69cVO60XeTaCU,19393
107
+ noesium/toolkits/github_toolkit.py,sha256=Y5nZAJwEiSokKMlLpZibrart6WX_9yQT2-IiElKFo-4,14840
108
+ noesium/toolkits/gmail_toolkit.py,sha256=-yLXBl7IygByljJ99OpHNuZNOwvwPaVWUyymhFmLevA,23408
109
+ noesium/toolkits/image_toolkit.py,sha256=au1U5jNW9u5WhGYkIP9FCI582AM1DtMedWAP6TQjoPI,14506
110
+ noesium/toolkits/memory_toolkit.py,sha256=3GtqL4Lyvgsiw9LIGAJHpqpsq6rOnR-WnRtKXqNSRUU,14861
111
+ noesium/toolkits/python_executor_toolkit.py,sha256=eK9vlBp5cdG2X9jTe8I2CUlIZ9TSkvrCNm59koKHoK4,11402
112
+ noesium/toolkits/search_toolkit.py,sha256=rPCv4G5IgQqWg8hh23t8dLBxI2C498WuNfhBj0U7Ovs,17781
113
+ noesium/toolkits/serper_toolkit.py,sha256=IyXtcZttc8obMtchkzMm8PBV1o7HBAFHamLBTHjEtW4,21168
114
+ noesium/toolkits/tabular_data_toolkit.py,sha256=5kofmB5TsLPOYnPCqCvmGrHfxSRBPcNaww6oM4UZGsQ,20572
115
+ noesium/toolkits/user_interaction_toolkit.py,sha256=_FnSL75eb9f21IlV4KzVXGhda6RRJc3rvYo34Tt51nY,13650
116
+ noesium/toolkits/video_toolkit.py,sha256=zd65drrbB3AGFZGBVieadGZC7sCxemrtYUg1uoQen7E,5858
117
+ noesium/toolkits/wikipedia_toolkit.py,sha256=mQyIuMPGS-vttWWoaV-RmSg5b5MJ4hoLa1H1cUsmst0,15333
118
+ noesium-0.2.0.dist-info/licenses/LICENSE,sha256=uxyIWSLWuSDg9cwA8ehH8LvzOWPM66UGQiOTUQuqTO0,1071
119
+ noesium-0.2.0.dist-info/METADATA,sha256=yGm-sZNdz54NW8bCqOGgwkwq0fqX-wtG4XiwU7dbrKA,17475
120
+ noesium-0.2.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
121
+ noesium-0.2.0.dist-info/top_level.txt,sha256=IW36N4DMZNJLo2bt_QMlnw-NZepN5fnqmEKbTbb7Tug,8
122
+ noesium-0.2.0.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Xiaming Chen
3
+ Copyright (c) 2025, Mirasoth Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal