janus-llm 1.0.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. janus_llm-1.0.0/LICENSE +191 -0
  2. janus_llm-1.0.0/PKG-INFO +96 -0
  3. janus_llm-1.0.0/README.md +63 -0
  4. janus_llm-1.0.0/janus/__init__.py +3 -0
  5. janus_llm-1.0.0/janus/_tests/__init__.py +0 -0
  6. janus_llm-1.0.0/janus/_tests/conftest.py +31 -0
  7. janus_llm-1.0.0/janus/_tests/test_translate.py +352 -0
  8. janus_llm-1.0.0/janus/cli.py +454 -0
  9. janus_llm-1.0.0/janus/converter.py +127 -0
  10. janus_llm-1.0.0/janus/embedding/__init__.py +0 -0
  11. janus_llm-1.0.0/janus/embedding/_tests/__init__.py +0 -0
  12. janus_llm-1.0.0/janus/embedding/_tests/test_collections.py +83 -0
  13. janus_llm-1.0.0/janus/embedding/_tests/test_vectorize.py +53 -0
  14. janus_llm-1.0.0/janus/embedding/collections.py +89 -0
  15. janus_llm-1.0.0/janus/embedding/database.py +98 -0
  16. janus_llm-1.0.0/janus/embedding/vectorize.py +183 -0
  17. janus_llm-1.0.0/janus/language/__init__.py +0 -0
  18. janus_llm-1.0.0/janus/language/binary/__init__.py +1 -0
  19. janus_llm-1.0.0/janus/language/binary/_tests/__init__.py +0 -0
  20. janus_llm-1.0.0/janus/language/binary/_tests/test_binary.py +33 -0
  21. janus_llm-1.0.0/janus/language/binary/binary.py +186 -0
  22. janus_llm-1.0.0/janus/language/binary/reveng/decompile_script.py +63 -0
  23. janus_llm-1.0.0/janus/language/block.py +259 -0
  24. janus_llm-1.0.0/janus/language/combine.py +101 -0
  25. janus_llm-1.0.0/janus/language/file.py +18 -0
  26. janus_llm-1.0.0/janus/language/mumps/__init__.py +1 -0
  27. janus_llm-1.0.0/janus/language/mumps/_tests/__init__.py +0 -0
  28. janus_llm-1.0.0/janus/language/mumps/_tests/test_mumps.py +28 -0
  29. janus_llm-1.0.0/janus/language/mumps/mumps.py +129 -0
  30. janus_llm-1.0.0/janus/language/mumps/patterns.py +102 -0
  31. janus_llm-1.0.0/janus/language/node.py +9 -0
  32. janus_llm-1.0.0/janus/language/splitter.py +350 -0
  33. janus_llm-1.0.0/janus/language/treesitter/__init__.py +1 -0
  34. janus_llm-1.0.0/janus/language/treesitter/_tests/__init__.py +0 -0
  35. janus_llm-1.0.0/janus/language/treesitter/_tests/test_treesitter.py +51 -0
  36. janus_llm-1.0.0/janus/language/treesitter/treesitter.py +156 -0
  37. janus_llm-1.0.0/janus/llm/__init__.py +1 -0
  38. janus_llm-1.0.0/janus/llm/models_info.py +124 -0
  39. janus_llm-1.0.0/janus/parsers/__init__.py +0 -0
  40. janus_llm-1.0.0/janus/parsers/code_parser.py +288 -0
  41. janus_llm-1.0.0/janus/prompts/__init__.py +0 -0
  42. janus_llm-1.0.0/janus/prompts/prompt.py +148 -0
  43. janus_llm-1.0.0/janus/translate.py +456 -0
  44. janus_llm-1.0.0/janus/utils/__init__.py +0 -0
  45. janus_llm-1.0.0/janus/utils/enums.py +757 -0
  46. janus_llm-1.0.0/janus/utils/logger.py +75 -0
  47. janus_llm-1.0.0/pyproject.toml +80 -0
@@ -0,0 +1,191 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ https://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ Copyright 2024 The MITRE Corporation All Rights Reserved
180
+
181
+ Licensed under the Apache License, Version 2.0 (the "License");
182
+ you may not use this file except in compliance with the License.
183
+ You may obtain a copy of the License at
184
+
185
+ https://www.apache.org/licenses/LICENSE-2.0
186
+
187
+ Unless required by applicable law or agreed to in writing, software
188
+ distributed under the License is distributed on an "AS IS" BASIS,
189
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
190
+ See the License for the specific language governing permissions and
191
+ limitations under the License.
@@ -0,0 +1,96 @@
1
+ Metadata-Version: 2.1
2
+ Name: janus-llm
3
+ Version: 1.0.0
4
+ Summary: A transcoding library using LLMs.
5
+ Home-page: https://github.com/janus-llm/janus-llm
6
+ License: Apache 2.0
7
+ Author: Michael Doyle
8
+ Author-email: mdoyle@mitre.org
9
+ Requires-Python: >=3.10,<4.0
10
+ Classifier: License :: Other/Proprietary License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Requires-Dist: chromadb (>=0.4.14,<0.5.0)
16
+ Requires-Dist: gitpython (>=3.1.32,<4.0.0)
17
+ Requires-Dist: gpt4all (>=2.0.2,<3.0.0)
18
+ Requires-Dist: langchain (>=0.0.306,<0.0.307)
19
+ Requires-Dist: langchain-community (>=0.0.16,<0.0.17)
20
+ Requires-Dist: numpy (>=1.24.3,<2.0.0)
21
+ Requires-Dist: openai (>=0.27.6,<0.28.0)
22
+ Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
23
+ Requires-Dist: rich (>=13.3.5,<14.0.0)
24
+ Requires-Dist: text-generation (>=0.6.0,<0.7.0)
25
+ Requires-Dist: tiktoken (>=0.4.0,<0.5.0)
26
+ Requires-Dist: transformers (>=4.31.0,<5.0.0)
27
+ Requires-Dist: tree-sitter (>=0.20.1,<0.21.0)
28
+ Requires-Dist: typer (>=0.9.0,<0.10.0)
29
+ Project-URL: Documentation, https://janus-llm.github.io/janus-llm
30
+ Project-URL: Repository, https://github.com/janus-llm/janus-llm
31
+ Description-Content-Type: text/markdown
32
+
33
+
34
+ <p align="center">
35
+ <img src="assets/icons/logo_horizontal.png">
36
+ </p>
37
+ <p align="center">
38
+ <a href="https://github.com/janus-llm/janus-llm/actions/workflows/pages.yml" target="_blank">
39
+ <img src="https://github.com/janus-llm/janus-llm/actions/workflows/pages.yml/badge.svg" alt="Pages">
40
+ </a>
41
+ <a href="https://github.com/janus-llm/janus-llm/actions/workflows/publish.yml" target="_blank">
42
+ <img src="https://github.com/janus-llm/janus-llm/actions/workflows/publish.yml/badge.svg" alt="Publish">
43
+ </a>
44
+ <a href="https://github.com/psf/black" target="_blank">
45
+ <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code Style: black">
46
+ <a href="https://pypi.org/project/janus-llm" target="_blank">
47
+ <img src="https://img.shields.io/pypi/pyversions/janus-llm" alt="Python versions">
48
+ <a href="https://pypi.org/project/janus-llm" target="_blank">
49
+ <img src="https://img.shields.io/pypi/v/janus-llm?color=%2334D058&label=pypi%20package" alt="Package version">
50
+ </a>
51
+ </p>
52
+
53
+ ## Overview
54
+
55
+ Janus (`janus-llm`) uses LLMs to aid in the modernization of legacy IT systems. The repository can currently do the following:
56
+
57
+ 1. Chunk code of over 100 programming languages to fit within different model context windows and add to a [Chroma](https://trychroma.com) vector database.
58
+ 2. Translate from one programming language to another on a file-by-file basis using an LLM with varying results (with the `translate.py` script).
59
+ 3. Translate from a binary file to a programming language using Ghidra decompilation.
60
+ 4. Do 1-3 with a CLI tool (`janus`).
61
+
62
+ ## Roadmap
63
+
64
+ ### Priorities
65
+
66
+ 1. Scripts interacting with Chroma Vector DB for RAG translation and understanding.
67
+ 2. Evaluation of outputs in CLI using LLM self-evaluation or static analysis.
68
+
69
+ ## Installation
70
+
71
+ ```shell
72
+ pip install janus-llm
73
+ ```
74
+
75
+ ### Installing from Source
76
+
77
+ Clone the repository:
78
+
79
+ ```shell
80
+ git clone git@github.com:janus-llm/janus-llm.git
81
+ ```
82
+
83
+ **NOTE**: Make sure you're using Python 3.10 or 3.11.
84
+
85
+ Then, install the requirements:
86
+
87
+ ```shell
88
+ curl -sSkL https://install.python-poetry.org | python -
89
+ export PATH=$PATH:$HOME/.local/bin
90
+ poetry install
91
+ ```
92
+
93
+ ### Contributing
94
+
95
+ See our [contributing pages](https://janus-llm.github.io/janus-llm/contributing.html)
96
+
@@ -0,0 +1,63 @@
1
+
2
+ <p align="center">
3
+ <img src="assets/icons/logo_horizontal.png">
4
+ </p>
5
+ <p align="center">
6
+ <a href="https://github.com/janus-llm/janus-llm/actions/workflows/pages.yml" target="_blank">
7
+ <img src="https://github.com/janus-llm/janus-llm/actions/workflows/pages.yml/badge.svg" alt="Pages">
8
+ </a>
9
+ <a href="https://github.com/janus-llm/janus-llm/actions/workflows/publish.yml" target="_blank">
10
+ <img src="https://github.com/janus-llm/janus-llm/actions/workflows/publish.yml/badge.svg" alt="Publish">
11
+ </a>
12
+ <a href="https://github.com/psf/black" target="_blank">
13
+ <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code Style: black">
14
+ <a href="https://pypi.org/project/janus-llm" target="_blank">
15
+ <img src="https://img.shields.io/pypi/pyversions/janus-llm" alt="Python versions">
16
+ <a href="https://pypi.org/project/janus-llm" target="_blank">
17
+ <img src="https://img.shields.io/pypi/v/janus-llm?color=%2334D058&label=pypi%20package" alt="Package version">
18
+ </a>
19
+ </p>
20
+
21
+ ## Overview
22
+
23
+ Janus (`janus-llm`) uses LLMs to aid in the modernization of legacy IT systems. The repository can currently do the following:
24
+
25
+ 1. Chunk code of over 100 programming languages to fit within different model context windows and add to a [Chroma](https://trychroma.com) vector database.
26
+ 2. Translate from one programming language to another on a file-by-file basis using an LLM with varying results (with the `translate.py` script).
27
+ 3. Translate from a binary file to a programming language using Ghidra decompilation.
28
+ 4. Do 1-3 with a CLI tool (`janus`).
29
+
30
+ ## Roadmap
31
+
32
+ ### Priorities
33
+
34
+ 1. Scripts interacting with Chroma Vector DB for RAG translation and understanding.
35
+ 2. Evaluation of outputs in CLI using LLM self-evaluation or static analysis.
36
+
37
+ ## Installation
38
+
39
+ ```shell
40
+ pip install janus-llm
41
+ ```
42
+
43
+ ### Installing from Source
44
+
45
+ Clone the repository:
46
+
47
+ ```shell
48
+ git clone git@github.com:janus-llm/janus-llm.git
49
+ ```
50
+
51
+ **NOTE**: Make sure you're using Python 3.10 or 3.11.
52
+
53
+ Then, install the requirements:
54
+
55
+ ```shell
56
+ curl -sSkL https://install.python-poetry.org | python -
57
+ export PATH=$PATH:$HOME/.local/bin
58
+ poetry install
59
+ ```
60
+
61
+ ### Contributing
62
+
63
+ See our [contributing pages](https://janus-llm.github.io/janus-llm/contributing.html)
@@ -0,0 +1,3 @@
1
+ from .translate import Translator
2
+
3
+ __version__ = "1.0.0"
File without changes
@@ -0,0 +1,31 @@
1
+ # from https://stackoverflow.com/a/76349078
2
+ # configure our tests by default not to run slow tests
3
+ #
4
+ # to run slow tests along with the other tests, use:
5
+ # pytest -m slow
6
+
7
+ allowed_markers = (
8
+ "filterwarnings",
9
+ "parametrize",
10
+ "skip",
11
+ "skipif",
12
+ "usefixtures",
13
+ "xfail",
14
+ )
15
+
16
+
17
+ def pytest_collection_modifyitems(config, items):
18
+ for item in items:
19
+ if all(False for x in item.iter_markers() if x.name not in allowed_markers):
20
+ item.add_marker("always_run")
21
+ if markexpr := config.getoption("markexpr", "False"):
22
+ config.option.markexpr = f"always_run or ({markexpr})"
23
+ print("[Including tests marked as slow]")
24
+ else:
25
+ config.option.markexpr = "always_run"
26
+ print("[Use -m slow to include tests marked as slow]")
27
+
28
+
29
+ def pytest_configure(config):
30
+ config.addinivalue_line("markers", "always_run: mark test as always run")
31
+ config.addinivalue_line("markers", "slow: mark test as slow")