glchat-plugin 0.2.9__py3-none-any.whl → 0.2.11__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.
@@ -20,12 +20,21 @@ class SearchType(StrEnum):
20
20
  WEB: Get more relevant information from the web. (DEPRECATED)
21
21
  Web Search uses real-time data. Agent selection isn't available in this mode.
22
22
  DEEP_RESEARCH: Get answer from Deep Research Agent.
23
+ ESSENTIALS_DEEP_RESEARCH: Get answer from Deep Research with Essentials mode.
24
+ Provides key points and core insights without noise, optimized for speed and clarity.
25
+ Ideal for quick decision-making support and fast orientation.
26
+ COMPREHENSIVE_DEEP_RESEARCH: Get answer from Deep Research with Comprehensive mode.
27
+ Delivers the full picture with depth and thoroughness, covering all relevant angles,
28
+ details, and supporting data. Suitable for professional research tasks where
29
+ precision matters more than speed.
23
30
  """
24
31
 
25
32
  NORMAL = "normal"
26
33
  SEARCH = "search"
27
34
  _WEB = "web" # Underscore to hide it from normal use
28
- DEEP_RESEARCH = "deep_research"
35
+ _DEEP_RESEARCH = "deep_research"
36
+ ESSENTIALS_DEEP_RESEARCH = "essentials_deep_research"
37
+ COMPREHENSIVE_DEEP_RESEARCH = "comprehensive_deep_research"
29
38
 
30
39
  @property
31
40
  def WEB(cls) -> "SearchType":
@@ -39,3 +48,17 @@ class SearchType(StrEnum):
39
48
  stacklevel=2,
40
49
  )
41
50
  return cls._WEB
51
+
52
+ # ruff: noqa: E501
53
+ @property
54
+ def DEEP_RESEARCH(cls) -> "SearchType":
55
+ """Deprecated: Use ESSENTIALS_DEEP_RESEARCH or COMPREHENSIVE_DEEP_RESEARCH instead.
56
+
57
+ Will be removed in version 0.3.0
58
+ """
59
+ warnings.warn(
60
+ "SearchType.DEEP_RESEARCH is deprecated and will be removed in a future version. Use SearchType.ESSENTIALS_DEEP_RESEARCH or SearchType.COMPREHENSIVE_DEEP_RESEARCH instead.",
61
+ DeprecationWarning,
62
+ stacklevel=2,
63
+ )
64
+ return cls._DEEP_RESEARCH
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: glchat-plugin
3
- Version: 0.2.9
3
+ Version: 0.2.11
4
4
  Author-email: GenAI SDK Team <gat-sdk@gdplabs.id>
5
5
  Requires-Python: <3.13,>=3.11
6
6
  Description-Content-Type: text/markdown
7
7
  Requires-Dist: poetry>=2.1.3
8
- Requires-Dist: bosa-core-binary>=0.8.4
8
+ Requires-Dist: bosa-core-binary>=0.8.6
9
9
  Requires-Dist: gllm-core-binary>=0.3.0
10
10
  Requires-Dist: gllm-inference-binary>=0.5.0
11
11
  Requires-Dist: gllm-pipeline-binary>=0.4.0
@@ -1,7 +1,7 @@
1
1
  glchat_plugin/__init__.py,sha256=SHSBMz7JDU6MecyIrhHu5-3NVs89JkXhyvD3ZGOkWOE,37
2
2
  glchat_plugin/config/__init__.py,sha256=DNnX8B_TvAN89oyMgq32zG1DeaezODrihiAXTwOPT5o,39
3
3
  glchat_plugin/config/app_config.py,sha256=9_ShYtaQ7Rp14sSkrIFLoOAMlbwVlm13EuCxzOn4NCI,426
4
- glchat_plugin/config/constant.py,sha256=yyHkEAtv0uF-B-ip6Qwr3MHOv_LQ-D5beZ7FiLzlaRU,1095
4
+ glchat_plugin/config/constant.py,sha256=D8BCSkwL7AbXUT_zdsXEdLmmuSlLThSJn7-02niZeXI,2340
5
5
  glchat_plugin/context/__init__.py,sha256=3Wx_apMIS6z-m6eRs6hoyOsJFLJfKmMFOkrPDkPQfJI,40
6
6
  glchat_plugin/context/context_manager.py,sha256=0lhO0w_hd5dUdIEJQ2LOJFZsgpzitQU_aPZfTfQK3vw,1302
7
7
  glchat_plugin/handler/__init__.py,sha256=H5DJaAfwwtRsvMcOaEzHfGMQk25H7la0E7uPfksWtoQ,40
@@ -19,7 +19,7 @@ glchat_plugin/storage/base_anonymizer_storage.py,sha256=oFwovWrsjM7v1YjeN-4p-M3O
19
19
  glchat_plugin/storage/base_chat_history_storage.py,sha256=JvUUFMu_9jRBQ9yug_x7S4rQjZEA1vM5ombDvz-7zCE,11095
20
20
  glchat_plugin/tools/__init__.py,sha256=OFotHbgQ8mZEbdlvlv5aVMdxfubPvkVWAcTwhIPdIqQ,542
21
21
  glchat_plugin/tools/decorators.py,sha256=AvQBV18wzXWdC483RSSmpfh92zsqTyp8SzDLIkreIGU,3925
22
- glchat_plugin-0.2.9.dist-info/METADATA,sha256=BBTe7j1LPHl4MTwaMXB0bIvFmEmJdKCj2nAtAv385yk,2063
23
- glchat_plugin-0.2.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
- glchat_plugin-0.2.9.dist-info/top_level.txt,sha256=fzKSXmct5dY4CAKku4-mkdHX-QPAyQVvo8vpQj8qizY,14
25
- glchat_plugin-0.2.9.dist-info/RECORD,,
22
+ glchat_plugin-0.2.11.dist-info/METADATA,sha256=2rPdxeHViAjDibsyvbElHc-Lli63qsPIzUotDFFdRB4,2064
23
+ glchat_plugin-0.2.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
24
+ glchat_plugin-0.2.11.dist-info/top_level.txt,sha256=fzKSXmct5dY4CAKku4-mkdHX-QPAyQVvo8vpQj8qizY,14
25
+ glchat_plugin-0.2.11.dist-info/RECORD,,