cortexflow-ai 2.0.0__tar.gz

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 (71) hide show
  1. cortexflow_ai-2.0.0/LICENSE +105 -0
  2. cortexflow_ai-2.0.0/PKG-INFO +609 -0
  3. cortexflow_ai-2.0.0/README.md +567 -0
  4. cortexflow_ai-2.0.0/cortexflow_ai/__init__.py +8 -0
  5. cortexflow_ai-2.0.0/cortexflow_ai/agent/__init__.py +1 -0
  6. cortexflow_ai-2.0.0/cortexflow_ai/agent/pipeline.py +194 -0
  7. cortexflow_ai-2.0.0/cortexflow_ai/agent/runtime.py +467 -0
  8. cortexflow_ai-2.0.0/cortexflow_ai/agent/session.py +168 -0
  9. cortexflow_ai-2.0.0/cortexflow_ai/channels/__init__.py +1 -0
  10. cortexflow_ai-2.0.0/cortexflow_ai/channels/base.py +99 -0
  11. cortexflow_ai-2.0.0/cortexflow_ai/channels/discord_.py +145 -0
  12. cortexflow_ai-2.0.0/cortexflow_ai/channels/email_.py +256 -0
  13. cortexflow_ai-2.0.0/cortexflow_ai/channels/irc.py +261 -0
  14. cortexflow_ai-2.0.0/cortexflow_ai/channels/mastodon_.py +235 -0
  15. cortexflow_ai-2.0.0/cortexflow_ai/channels/matrix.py +196 -0
  16. cortexflow_ai-2.0.0/cortexflow_ai/channels/mattermost.py +235 -0
  17. cortexflow_ai-2.0.0/cortexflow_ai/channels/nextcloud.py +297 -0
  18. cortexflow_ai-2.0.0/cortexflow_ai/channels/signal_.py +221 -0
  19. cortexflow_ai-2.0.0/cortexflow_ai/channels/slack.py +214 -0
  20. cortexflow_ai-2.0.0/cortexflow_ai/channels/sms.py +176 -0
  21. cortexflow_ai-2.0.0/cortexflow_ai/channels/teams.py +214 -0
  22. cortexflow_ai-2.0.0/cortexflow_ai/channels/telegram.py +151 -0
  23. cortexflow_ai-2.0.0/cortexflow_ai/channels/webhook.py +201 -0
  24. cortexflow_ai-2.0.0/cortexflow_ai/channels/whatsapp.py +218 -0
  25. cortexflow_ai-2.0.0/cortexflow_ai/cli.py +805 -0
  26. cortexflow_ai-2.0.0/cortexflow_ai/commands/__init__.py +17 -0
  27. cortexflow_ai-2.0.0/cortexflow_ai/commands/handler.py +202 -0
  28. cortexflow_ai-2.0.0/cortexflow_ai/config.py +180 -0
  29. cortexflow_ai-2.0.0/cortexflow_ai/gateway/__init__.py +1 -0
  30. cortexflow_ai-2.0.0/cortexflow_ai/gateway/main.py +110 -0
  31. cortexflow_ai-2.0.0/cortexflow_ai/gateway/routes.py +295 -0
  32. cortexflow_ai-2.0.0/cortexflow_ai/gateway/websocket.py +189 -0
  33. cortexflow_ai-2.0.0/cortexflow_ai/init_wizard.py +261 -0
  34. cortexflow_ai-2.0.0/cortexflow_ai/memory/__init__.py +1 -0
  35. cortexflow_ai-2.0.0/cortexflow_ai/memory/archiver.py +119 -0
  36. cortexflow_ai-2.0.0/cortexflow_ai/memory/compactor.py +188 -0
  37. cortexflow_ai-2.0.0/cortexflow_ai/memory/long_term.py +382 -0
  38. cortexflow_ai-2.0.0/cortexflow_ai/memory/retrieval.py +337 -0
  39. cortexflow_ai-2.0.0/cortexflow_ai/memory/short_term.py +190 -0
  40. cortexflow_ai-2.0.0/cortexflow_ai/memory/tagging.py +101 -0
  41. cortexflow_ai-2.0.0/cortexflow_ai/models/__init__.py +1 -0
  42. cortexflow_ai-2.0.0/cortexflow_ai/models/deepseek.py +180 -0
  43. cortexflow_ai-2.0.0/cortexflow_ai/models/openai_.py +157 -0
  44. cortexflow_ai-2.0.0/cortexflow_ai/models/router.py +451 -0
  45. cortexflow_ai-2.0.0/cortexflow_ai/observability/__init__.py +1 -0
  46. cortexflow_ai-2.0.0/cortexflow_ai/observability/logs.py +161 -0
  47. cortexflow_ai-2.0.0/cortexflow_ai/observability/metrics.py +324 -0
  48. cortexflow_ai-2.0.0/cortexflow_ai/plugins/__init__.py +1 -0
  49. cortexflow_ai-2.0.0/cortexflow_ai/plugins/base.py +101 -0
  50. cortexflow_ai-2.0.0/cortexflow_ai/plugins/registry.py +150 -0
  51. cortexflow_ai-2.0.0/cortexflow_ai/reflection/__init__.py +1 -0
  52. cortexflow_ai-2.0.0/cortexflow_ai/reflection/engine.py +214 -0
  53. cortexflow_ai-2.0.0/cortexflow_ai/tools/__init__.py +1 -0
  54. cortexflow_ai-2.0.0/cortexflow_ai/tools/base.py +114 -0
  55. cortexflow_ai-2.0.0/cortexflow_ai/tools/file_ops.py +180 -0
  56. cortexflow_ai-2.0.0/cortexflow_ai/tools/registry.py +160 -0
  57. cortexflow_ai-2.0.0/cortexflow_ai/tools/web_search.py +140 -0
  58. cortexflow_ai-2.0.0/cortexflow_ai/update_checker.py +58 -0
  59. cortexflow_ai-2.0.0/cortexflow_ai/voice/__init__.py +1 -0
  60. cortexflow_ai-2.0.0/cortexflow_ai/voice/stt.py +106 -0
  61. cortexflow_ai-2.0.0/cortexflow_ai/voice/tts.py +230 -0
  62. cortexflow_ai-2.0.0/cortexflow_ai/voice/wake_word.py +211 -0
  63. cortexflow_ai-2.0.0/cortexflow_ai/workspace.py +158 -0
  64. cortexflow_ai-2.0.0/cortexflow_ai.egg-info/PKG-INFO +609 -0
  65. cortexflow_ai-2.0.0/cortexflow_ai.egg-info/SOURCES.txt +69 -0
  66. cortexflow_ai-2.0.0/cortexflow_ai.egg-info/dependency_links.txt +1 -0
  67. cortexflow_ai-2.0.0/cortexflow_ai.egg-info/entry_points.txt +2 -0
  68. cortexflow_ai-2.0.0/cortexflow_ai.egg-info/requires.txt +24 -0
  69. cortexflow_ai-2.0.0/cortexflow_ai.egg-info/top_level.txt +1 -0
  70. cortexflow_ai-2.0.0/pyproject.toml +64 -0
  71. cortexflow_ai-2.0.0/setup.cfg +4 -0
@@ -0,0 +1,105 @@
1
+ Business Source License 1.1
2
+
3
+ Parameters
4
+
5
+ Licensor: Amit Chandra
6
+ Licensed Work: CortexFlow
7
+ The Licensed Work is (c) 2026 Amit Chandra
8
+ Additional Use Grant: None — any production use of the Licensed Work
9
+ requires a commercial license from Licensor.
10
+ Non-production use (development, evaluation,
11
+ testing, and personal/internal non-revenue-
12
+ generating use) is permitted free of charge under
13
+ the terms below.
14
+ Change Date: 2030-06-26
15
+ Change License: Apache License, Version 2.0
16
+
17
+ For information about alternative licensing arrangements for the
18
+ Licensed Work, contact: ask.amitchandra@gmail.com
19
+
20
+ Notice
21
+
22
+ The Business Source License (this document, or the "License") is not an
23
+ Open Source license. However, the Licensed Work will eventually be
24
+ made available under an Open Source license, as stated in this License.
25
+
26
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights
27
+ Reserved. "Business Source License" is a trademark of MariaDB
28
+ Corporation Ab.
29
+
30
+ -----------------------------------------------------------------------
31
+
32
+ Business Source License 1.1
33
+
34
+ Terms
35
+
36
+ The Licensor hereby grants you the right to copy, modify, create
37
+ derivative works, redistribute, and make non-production use of the
38
+ Licensed Work. The Licensor may make an Additional Use Grant, above,
39
+ permitting limited production use.
40
+
41
+ Effective on the Change Date, or the fourth anniversary of the first
42
+ publicly available distribution of a specific version of the Licensed
43
+ Work under this License, whichever comes first, the Licensor hereby
44
+ grants you rights under the terms of the Change License, and the
45
+ rights granted in the paragraph above terminate.
46
+
47
+ If your use of the Licensed Work does not comply with the requirements
48
+ currently in effect as described in this License, you must purchase a
49
+ commercial license from the Licensor, its affiliated entities, or
50
+ authorized resellers, or you must refrain from using the Licensed Work.
51
+
52
+ All copies of the original and modified Licensed Work, and derivative
53
+ works of the Licensed Work, are subject to this License. This License
54
+ applies separately for each version of the Licensed Work and the
55
+ Change Date may vary for each version of the Licensed Work released by
56
+ Licensor.
57
+
58
+ You must conspicuously display this License on each original or
59
+ modified copy of the Licensed Work. If you receive the Licensed Work
60
+ in original or modified form from a third party, the terms and
61
+ conditions set forth in this License apply to your use of that work.
62
+
63
+ Any use of the Licensed Work in violation of this License will
64
+ automatically terminate your rights under this License for the current
65
+ and all other versions of the Licensed Work.
66
+
67
+ This License does not grant you any right in any trademark or logo of
68
+ Licensor or its affiliates (provided that you may use a trademark or
69
+ logo of Licensor as expressly required by this License).
70
+
71
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS
72
+ PROVIDED ON AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES
73
+ AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION)
74
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
75
+ NON-INFRINGEMENT, AND TITLE.
76
+
77
+ MariaDB hereby grants you permission to use this License's text to
78
+ license your works, and to refer to it using the trademark "Business
79
+ Source License", as long as you comply with the Covenants of Licensor
80
+ below.
81
+
82
+ Covenants of Licensor
83
+
84
+ In consideration of the right to use this License's text and the
85
+ "Business Source License" name and trademark, Licensor covenants to
86
+ MariaDB, and to all other recipients of the licensed work to be
87
+ provided by Licensor:
88
+
89
+ 1. To specify as the Change License the GPL Version 2.0 or any later
90
+ version, or a license that is compatible with GPL Version 2.0 or a
91
+ later version, where "compatible" means that software provided
92
+ under the Change License can be included in a program with software
93
+ provided under GPL Version 2.0 or a later version, or to specify
94
+ Apache License Version 2.0, which is hereby acknowledged as an
95
+ acceptable Change License for purposes of this covenant. Licensor
96
+ may specify additional Change Licenses without limitation.
97
+
98
+ 2. To either: (a) specify an additional grant of rights to use that
99
+ does not impose any additional restriction on the right granted in
100
+ this License, as the Additional Use Grant; or (b) insert the text
101
+ "None".
102
+
103
+ 3. To specify a Change Date.
104
+
105
+ 4. Not to modify this License in any other way.