rmk 0.1.0__py3-none-any.whl → 0.1.1__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.
@@ -1,9 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rmk
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Root Monkey (rmk) is an autonomous AI Agent system.
5
+ Project-URL: Homepage, https://github.com/rootagent
6
+ Project-URL: Repository, https://github.com/rootagent/rmk
5
7
  Author-email: rootmq <mqvvang@gmail.com>
6
- Requires-Python: >=3.12
8
+ Requires-Python: >=3.10
7
9
  Requires-Dist: anthropic>=0.52.0
8
10
  Requires-Dist: dotenv>=0.9.9
9
11
  Requires-Dist: litellm>=1.72.0
@@ -1,4 +1,4 @@
1
- rmonkey/__init__.py,sha256=8u5leZHRym4_CMor70g48x32wcpY6YT-TBBqRYFNLGk,359
1
+ rmonkey/__init__.py,sha256=Rz2jK7CQslRGr9OsGZcCneVWd8fRMiBjv3o2aZZqwNc,355
2
2
  rmonkey/action/__init__.py,sha256=flNLS2Gt9BzrK6TeAv_-z-bXdc3Cvx9N6IJeGc3yKjQ,62
3
3
  rmonkey/action/tool_action.py,sha256=svZNxwgmIUst6JBiKCdEGw_h8Ntm_by9LfgSPpXY52U,655
4
4
  rmonkey/agents/__init__.py,sha256=C5lhR67pMPt2Qm4iorHf4r1fMVKBA6tNGzVWrYQORns,203
@@ -27,7 +27,7 @@ rmonkey/utils/pretty_console.py,sha256=m0nUZ3IAi47rsckhOIRFKqiMKvipN_Ztqt0AlhKJW
27
27
  rmonkey/utils/schema.py,sha256=l7ftopJcZAXzpBZ9JYiULH7qVheSS3vbuIgBtctvptw,773
28
28
  rmonkey/utils/user_rules.py,sha256=D8MkLHyqUFZCBg1PMLW915jun_SKVoo4yzsH0xV1Gzk,439
29
29
  rmonkey/utils/util.py,sha256=nup6b8FqTUTQVgn-yhFnkvNkFNBjMeg7wB3wEsa0vVM,336
30
- rmk-0.1.0.dist-info/METADATA,sha256=7BxaLxt9solcC_HHesVblXhy0kOA7An1PRIzVBbNdcQ,1164
31
- rmk-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
32
- rmk-0.1.0.dist-info/entry_points.txt,sha256=CRR8j38CZ68SvkiYhm7FjCwKRXJrRHHCzNd5HT2LfSI,58
33
- rmk-0.1.0.dist-info/RECORD,,
30
+ rmk-0.1.1.dist-info/METADATA,sha256=YD9W_crOvWfGKMnVaGRmzMOk1EYHKOh_XnasD9vT2u8,1274
31
+ rmk-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
32
+ rmk-0.1.1.dist-info/entry_points.txt,sha256=CRR8j38CZ68SvkiYhm7FjCwKRXJrRHHCzNd5HT2LfSI,58
33
+ rmk-0.1.1.dist-info/RECORD,,
rmonkey/__init__.py CHANGED
@@ -3,7 +3,7 @@ from rmonkey.agents import AskAgent, RootMonkey, SWEAgent
3
3
  from rmonkey.memory import Memory
4
4
  from rmonkey.utils.schema import Message, Role
5
5
 
6
- __version__ = "0.1.0.dev"
6
+ __version__ = "0.1.0"
7
7
 
8
8
  __all__ = [
9
9
  "Role",
File without changes