orbynt-protocol 0.1.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 (68) hide show
  1. orbynt_protocol-0.1.0/LICENSE +184 -0
  2. orbynt_protocol-0.1.0/PKG-INFO +712 -0
  3. orbynt_protocol-0.1.0/README.md +686 -0
  4. orbynt_protocol-0.1.0/omp/__init__.py +44 -0
  5. orbynt_protocol-0.1.0/omp/cli/__init__.py +2 -0
  6. orbynt_protocol-0.1.0/omp/cli/main.py +210 -0
  7. orbynt_protocol-0.1.0/omp/core/__init__.py +26 -0
  8. orbynt_protocol-0.1.0/omp/core/checksum.py +12 -0
  9. orbynt_protocol-0.1.0/omp/core/compressor.py +24 -0
  10. orbynt_protocol-0.1.0/omp/core/framer.py +278 -0
  11. orbynt_protocol-0.1.0/omp/core/reader.py +104 -0
  12. orbynt_protocol-0.1.0/omp/core/writer.py +131 -0
  13. orbynt_protocol-0.1.0/omp/exceptions.py +15 -0
  14. orbynt_protocol-0.1.0/omp/inject/__init__.py +23 -0
  15. orbynt_protocol-0.1.0/omp/inject/adapters/__init__.py +14 -0
  16. orbynt_protocol-0.1.0/omp/inject/adapters/anthropic.py +19 -0
  17. orbynt_protocol-0.1.0/omp/inject/adapters/base.py +43 -0
  18. orbynt_protocol-0.1.0/omp/inject/adapters/gemini.py +17 -0
  19. orbynt_protocol-0.1.0/omp/inject/adapters/generic.py +14 -0
  20. orbynt_protocol-0.1.0/omp/inject/adapters/openai.py +18 -0
  21. orbynt_protocol-0.1.0/omp/inject/prompt.py +83 -0
  22. orbynt_protocol-0.1.0/omp/inject/templates.py +2 -0
  23. orbynt_protocol-0.1.0/omp/inspect.py +39 -0
  24. orbynt_protocol-0.1.0/omp/merge.py +82 -0
  25. orbynt_protocol-0.1.0/omp/proto/__init__.py +2 -0
  26. orbynt_protocol-0.1.0/omp/proto/adapter.proto +59 -0
  27. orbynt_protocol-0.1.0/omp/proto/adapter_pb2.py +42 -0
  28. orbynt_protocol-0.1.0/omp/proto/common.proto +45 -0
  29. orbynt_protocol-0.1.0/omp/proto/common_pb2.py +42 -0
  30. orbynt_protocol-0.1.0/omp/proto/embedding.proto +31 -0
  31. orbynt_protocol-0.1.0/omp/proto/embedding_pb2.py +34 -0
  32. orbynt_protocol-0.1.0/omp/proto/encryption.proto +25 -0
  33. orbynt_protocol-0.1.0/omp/proto/encryption_pb2.py +32 -0
  34. orbynt_protocol-0.1.0/omp/proto/graph.proto +42 -0
  35. orbynt_protocol-0.1.0/omp/proto/graph_pb2.py +36 -0
  36. orbynt_protocol-0.1.0/omp/proto/identity.proto +58 -0
  37. orbynt_protocol-0.1.0/omp/proto/identity_pb2.py +41 -0
  38. orbynt_protocol-0.1.0/omp/proto/memory.proto +53 -0
  39. orbynt_protocol-0.1.0/omp/proto/memory_pb2.py +40 -0
  40. orbynt_protocol-0.1.0/omp/proto/orb.proto +33 -0
  41. orbynt_protocol-0.1.0/omp/proto/orb_pb2.py +35 -0
  42. orbynt_protocol-0.1.0/omp/proto/passport.proto +105 -0
  43. orbynt_protocol-0.1.0/omp/proto/passport_pb2.py +58 -0
  44. orbynt_protocol-0.1.0/omp/proto/query.proto +23 -0
  45. orbynt_protocol-0.1.0/omp/proto/query_pb2.py +32 -0
  46. orbynt_protocol-0.1.0/omp/proto/registry.proto +31 -0
  47. orbynt_protocol-0.1.0/omp/proto/registry_pb2.py +34 -0
  48. orbynt_protocol-0.1.0/omp/proto/response.proto +22 -0
  49. orbynt_protocol-0.1.0/omp/proto/response_pb2.py +33 -0
  50. orbynt_protocol-0.1.0/omp/protos.py +81 -0
  51. orbynt_protocol-0.1.0/omp/query/__init__.py +4 -0
  52. orbynt_protocol-0.1.0/omp/query/engine.py +73 -0
  53. orbynt_protocol-0.1.0/omp/schema/__init__.py +22 -0
  54. orbynt_protocol-0.1.0/omp/schema/builder.py +339 -0
  55. orbynt_protocol-0.1.0/omp/schema/convert.py +103 -0
  56. orbynt_protocol-0.1.0/omp/schema/validator.py +21 -0
  57. orbynt_protocol-0.1.0/omp/schema/version.py +10 -0
  58. orbynt_protocol-0.1.0/orbynt_protocol.egg-info/PKG-INFO +712 -0
  59. orbynt_protocol-0.1.0/orbynt_protocol.egg-info/SOURCES.txt +66 -0
  60. orbynt_protocol-0.1.0/orbynt_protocol.egg-info/dependency_links.txt +1 -0
  61. orbynt_protocol-0.1.0/orbynt_protocol.egg-info/entry_points.txt +2 -0
  62. orbynt_protocol-0.1.0/orbynt_protocol.egg-info/requires.txt +12 -0
  63. orbynt_protocol-0.1.0/orbynt_protocol.egg-info/top_level.txt +1 -0
  64. orbynt_protocol-0.1.0/pyproject.toml +36 -0
  65. orbynt_protocol-0.1.0/setup.cfg +4 -0
  66. orbynt_protocol-0.1.0/tests/test_api.py +137 -0
  67. orbynt_protocol-0.1.0/tests/test_cli.py +46 -0
  68. orbynt_protocol-0.1.0/tests/test_framer.py +39 -0
@@ -0,0 +1,184 @@
1
+ Copyright 2026 Tetala Lakshmi Abhishek Reddy
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ https://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction, and
12
+ distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by the
15
+ copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all other
18
+ entities that control, are controlled by, or are under common control with
19
+ that entity. For the purposes of this definition, "control" means (i) the
20
+ power, direct or indirect, to cause the direction or management of such entity,
21
+ whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or
22
+ more of the outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" or "Your" shall mean an individual or Legal Entity exercising permissions
25
+ 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 source, and
29
+ configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical transformation or
32
+ translation of a Source form, including but not limited to compiled object
33
+ code, generated documentation, and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or Object form,
36
+ made available under the License, as indicated by a copyright notice that is
37
+ included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
40
+ is based on or derived from the Work and for which the editorial revisions,
41
+ annotations, elaborations, or other modifications represent, as a whole, an
42
+ original work of authorship. For the purposes of this License, Derivative Works
43
+ shall not include works that remain separable from, or merely link (or bind by
44
+ name) to the interfaces of, the Work and Derivative Works thereof.
45
+
46
+ "Contribution" shall mean any work of authorship, including the original
47
+ version of the Work and any modifications or additions to that Work or
48
+ Derivative Works thereof, that is intentionally submitted to Licensor for
49
+ inclusion in the Work by the copyright owner or by an individual or Legal
50
+ Entity authorized to submit on behalf of the copyright owner. For the purposes
51
+ of this definition, "submitted" means any form of electronic, verbal, or
52
+ written communication sent to the Licensor or its representatives, including
53
+ but not limited to communication on electronic mailing lists, source code
54
+ control systems, and issue tracking systems that are managed by, or on behalf
55
+ of, the Licensor for the purpose of discussing and improving the Work, but
56
+ excluding communication that is conspicuously marked or otherwise designated
57
+ in writing by the copyright owner as "Not a Contribution."
58
+
59
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
60
+ of whom a Contribution has been received by Licensor and subsequently
61
+ incorporated within the Work.
62
+
63
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
64
+ License, each Contributor hereby grants to You a perpetual, worldwide,
65
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
66
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
67
+ sublicense, and distribute the Work and such Derivative Works in Source or
68
+ Object form.
69
+
70
+ 3. Grant of Patent License. Subject to the terms and conditions of this
71
+ License, each Contributor hereby grants to You a perpetual, worldwide,
72
+ non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this
73
+ section) patent license to make, have made, use, offer to sell, sell, import,
74
+ and otherwise transfer the Work, where such license applies only to those
75
+ patent claims licensable by such Contributor that are necessarily infringed by
76
+ their Contribution(s) alone or by combination of their Contribution(s) with the
77
+ Work to which such Contribution(s) was submitted. If You institute patent
78
+ litigation against any entity (including a cross-claim or counterclaim in a
79
+ lawsuit) alleging that the Work or a Contribution incorporated within the Work
80
+ constitutes direct or contributory patent infringement, then any patent
81
+ licenses granted to You under this License for that Work shall terminate as of
82
+ the date such litigation is filed.
83
+
84
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
85
+ Derivative Works thereof in any medium, with or without modifications, and in
86
+ Source or Object form, provided that You meet the following conditions:
87
+
88
+ (a) You must give any other recipients of the Work or Derivative Works a copy
89
+ of this License; and
90
+
91
+ (b) You must cause any modified files to carry prominent notices stating that
92
+ You changed the files; and
93
+
94
+ (c) You must retain, in the Source form of any Derivative Works that You
95
+ distribute, all copyright, patent, trademark, and attribution notices from the
96
+ Source form of the Work, excluding those notices that do not pertain to any
97
+ part of the Derivative Works; and
98
+
99
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then
100
+ any Derivative Works that You distribute must include a readable copy of the
101
+ attribution notices contained within such NOTICE file, excluding those notices
102
+ that do not pertain to any part of the Derivative Works, in at least one of the
103
+ following places: within a NOTICE text file distributed as part of the
104
+ Derivative Works; within the Source form or documentation, if provided along
105
+ with the Derivative Works; or, within a display generated by the Derivative
106
+ Works, if and wherever such third-party notices normally appear. The contents
107
+ of the NOTICE file are for informational purposes only and do not modify the
108
+ License. You may add Your own attribution notices within Derivative Works that
109
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
110
+ provided that such additional attribution notices cannot be construed as
111
+ modifying the License.
112
+
113
+ You may add Your own copyright statement to Your modifications and may provide
114
+ additional or different license terms and conditions for use, reproduction, or
115
+ distribution of Your modifications, or for any such Derivative Works as a
116
+ whole, provided Your use, reproduction, and distribution of the Work otherwise
117
+ complies with the conditions stated in this License.
118
+
119
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
120
+ Contribution intentionally submitted for inclusion in the Work by You to the
121
+ Licensor shall be under the terms and conditions of this License, without any
122
+ additional terms or conditions. Notwithstanding the above, nothing herein shall
123
+ supersede or modify the terms of any separate license agreement you may have
124
+ executed with Licensor regarding such Contributions.
125
+
126
+ 6. Trademarks. This License does not grant permission to use the trade names,
127
+ trademarks, service marks, or product names of the Licensor, except as required
128
+ for reasonable and customary use in describing the origin of the Work and
129
+ reproducing the content of the NOTICE file.
130
+
131
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
132
+ writing, Licensor provides the Work (and each Contributor provides its
133
+ Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
134
+ KIND, either express or implied, including, without limitation, any warranties
135
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
136
+ PARTICULAR PURPOSE. You are solely responsible for determining the
137
+ appropriateness of using or redistributing the Work and assume any risks
138
+ associated with Your exercise of permissions under this License.
139
+
140
+ 8. Limitation of Liability. In no event and under no legal theory, whether in
141
+ tort (including negligence), contract, or otherwise, unless required by
142
+ applicable law (such as deliberate and grossly negligent acts) or agreed to in
143
+ writing, shall any Contributor be liable to You for damages, including any
144
+ direct, indirect, special, incidental, or consequential damages of any character
145
+ arising as a result of this License or out of the use or inability to use the
146
+ Work (including but not limited to damages for loss of goodwill, work stoppage,
147
+ computer failure or malfunction, or any and all other commercial damages or
148
+ losses), even if such Contributor has been advised of the possibility of such
149
+ damages.
150
+
151
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or
152
+ Derivative Works thereof, You may choose to offer, and charge a fee for,
153
+ acceptance of support, warranty, indemnity, or other liability obligations
154
+ and/or rights consistent with this License. However, in accepting such
155
+ obligations, You may act only on Your own behalf and on Your sole
156
+ responsibility, not on behalf of any other Contributor, and only if You agree
157
+ to indemnify, defend, and hold each Contributor harmless for any liability
158
+ incurred by, or claims asserted against, such Contributor by reason of your
159
+ accepting any such warranty or additional liability.
160
+
161
+ END OF TERMS AND CONDITIONS
162
+
163
+ APPENDIX: How to apply the Apache License to your work.
164
+
165
+ To apply the Apache License to your work, attach the following boilerplate
166
+ notice, with the fields enclosed by brackets "[]" replaced with your own
167
+ identifying information. Do not include the brackets. The text should be
168
+ enclosed in the appropriate comment syntax for the file format. We also
169
+ recommend that a file or class name and description of purpose be included on
170
+ the same "printed page" as the copyright notice for easier identification
171
+ within third-party archives.
172
+
173
+ Copyright [yyyy] [name of copyright owner]
174
+
175
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
176
+ this file except in compliance with the License. You may obtain a copy of the
177
+ License at
178
+
179
+ https://www.apache.org/licenses/LICENSE-2.0
180
+
181
+ Unless required by applicable law or agreed to in writing, software distributed
182
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
183
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
184
+ specific language governing permissions and limitations under the License.