HugoVoxx commited on
Commit
78dd5ab
1 Parent(s): ace9d1f

Upload 9 files

Browse files
Files changed (9) hide show
  1. .gitignore +52 -0
  2. LICENSE +201 -0
  3. README.md +38 -12
  4. main.py +17 -0
  5. pre-requirements.txt +0 -0
  6. prompt.txt +71 -0
  7. reader.py +61 -0
  8. requirements.txt +38 -0
  9. utils.py +28 -0
.gitignore ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Virtual environments
2
+ pyenv
3
+
4
+ # Output file
5
+ output.txt
6
+ output.png
7
+ solution.out
8
+ ag.err
9
+
10
+ # Gradio
11
+ .gradio
12
+
13
+ # Python cache
14
+ __pycache__
15
+ ag4masses/alphageometry/__pycache__/alphageometry.cpython-310.pyc
16
+ ag4masses/alphageometry/__pycache__/ar.cpython-310.pyc
17
+ ag4masses/alphageometry/__pycache__/beam_search.cpython-310.pyc
18
+ ag4masses/alphageometry/__pycache__/dd.cpython-310.pyc
19
+ ag4masses/alphageometry/__pycache__/ddar.cpython-310.pyc
20
+ ag4masses/alphageometry/__pycache__/decoder_stack.cpython-310.pyc
21
+ ag4masses/alphageometry/__pycache__/geometry.cpython-310.pyc
22
+ ag4masses/alphageometry/__pycache__/graph_utils.cpython-310.pyc
23
+ ag4masses/alphageometry/__pycache__/graph.cpython-310.pyc
24
+ ag4masses/alphageometry/__pycache__/lm_inference.cpython-310.pyc
25
+ ag4masses/alphageometry/__pycache__/models.cpython-310.pyc
26
+ ag4masses/alphageometry/__pycache__/numericals.cpython-310.pyc
27
+ ag4masses/alphageometry/__pycache__/pretty.cpython-310.pyc
28
+ ag4masses/alphageometry/__pycache__/problem.cpython-310.pyc
29
+ ag4masses/alphageometry/__pycache__/trace_back.cpython-310.pyc
30
+ ag4masses/alphageometry/__pycache__/transformer_layer.cpython-310.pyc
31
+ ag4mtest/ag.err
32
+ ag4mtest/ag.out
33
+ aglib/meliad/__pycache__/metrics_summary.cpython-310.pyc
34
+ aglib/meliad/__pycache__/optimizer_config.cpython-310.pyc
35
+ aglib/meliad/__pycache__/training_loop.cpython-310.pyc
36
+ aglib/meliad/__pycache__/training_task.cpython-310.pyc
37
+ aglib/meliad/transformer/__pycache__/__init__.cpython-310.pyc
38
+ aglib/meliad/transformer/__pycache__/attention.cpython-310.pyc
39
+ aglib/meliad/transformer/__pycache__/decoder_stack.cpython-310.pyc
40
+ aglib/meliad/transformer/__pycache__/inference_utils.cpython-310.pyc
41
+ aglib/meliad/transformer/__pycache__/memory_factory.cpython-310.pyc
42
+ aglib/meliad/transformer/__pycache__/memory_layer.cpython-310.pyc
43
+ aglib/meliad/transformer/__pycache__/metric_utils.cpython-310.pyc
44
+ aglib/meliad/transformer/__pycache__/models.cpython-310.pyc
45
+ aglib/meliad/transformer/__pycache__/nn_components.cpython-310.pyc
46
+ aglib/meliad/transformer/__pycache__/position_fourier.cpython-310.pyc
47
+ aglib/meliad/transformer/__pycache__/position_t5.cpython-310.pyc
48
+ aglib/meliad/transformer/__pycache__/position.cpython-310.pyc
49
+ aglib/meliad/transformer/__pycache__/synthetic_text_data.cpython-310.pyc
50
+ aglib/meliad/transformer/__pycache__/text_dataset.cpython-310.pyc
51
+ aglib/meliad/transformer/__pycache__/transformer_base.cpython-310.pyc
52
+ aglib/meliad/transformer/__pycache__/transformer_layer.cpython-310.pyc
LICENSE ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
README.md CHANGED
@@ -1,13 +1,39 @@
1
- ---
2
- title: GeoGenSolver
3
- emoji: 📉
4
- colorFrom: purple
5
- colorTo: yellow
6
- sdk: gradio
7
- sdk_version: 5.5.0
8
- app_file: app.py
9
- pinned: false
10
- short_description: 'Generative Illustration and Solver for Vietnamese Geometric '
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ # GeoGenSolver: Generative Illustration and Solver for Vietnamese Geometric Problem
2
+ # Requirements
3
+ Linux or Windows WSL with Python 3.10
4
+ # Setup
5
+ ## Clone this Repo
6
+ ```
7
+ git clone https://github.com/HugoVox/GeoGenSolver.git
8
+ cd GeoGenSolver
9
+ ```
10
+ ## Install necessary Linux packages
11
+ Depending on the exact Linux distribution/version, you may need to install these packages if they are not already installed.
12
+ ```
13
+ sudo apt update
14
+ sudo apt install python3-virtualenv
15
+ sudo apt install python3-tk
16
+ ```
17
+ ## Install Python module dependencies
18
+ Create a virtual env `pyenv` for GeoGenSolver
19
+ ```
20
+ virtualenv -p python3 pyenv
21
+ . pyenv/bin/activate
22
+ pip install --require-hashes --no-deps -r pre-requirements.txt
23
+ pip install --no-deps -r requirements.txt
24
+ ```
25
+ **Note** It is important to install the requirements in the instructed order and templates.
26
+ ## Run
27
+ For example we have the following geometric problem: `Cho tam giác cân ABC (AB = AC), các đường cao AD, BE, cắt nhau tại H. Gọi O là tâm đường tròn ngoại tiếp tam giác AHE. Chứng minh rằng: Bốn điểm A, E, D, B cùng nằm trên một đường tròn.`, here is how it runs
28
+ ```
29
+ python main.py --question "Cho tam giác cân ABC (AB = AC), các đường cao AD, BE, cắt nhau tại H. Gọi O là tâm đường tròn ngoại tiếp tam giác AHE. Chứng minh rằng: Bốn điểm A, E, D, B cùng nằm trên một đường tròn."
30
+ ```
31
+ We implement both Gemma2 and GPT 4o. Default is GPT 4o.
32
+ ```
33
+ # If you want to use Gemma2
34
+ python main.py --model "gemma2-9b-it" --question <input question here>
35
+ ```
36
+ # Issue Log
37
+ **Error:** Running main.py returns `Permission Denied`
38
 
39
+ **Solution:** Run the following command: `chmod +x ag4masses/utils/run.sh`. Then rerun the executing command above again.
main.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from reader import Reader
2
+ from utils import *
3
+ import argparse
4
+
5
+ if __name__ == '__main__':
6
+ parser = argparse.ArgumentParser(description='Generate Geometry Answer')
7
+ parser.add_argument('--model', type=str, default='gpt-4o-mini', help='Model to use for generation', choices=['gpt-4o-mini', 'gemma2-9b-it'])
8
+ parser.add_argument('--question', type=str, required=True, help='Question to generate answer for')
9
+ args = parser.parse_args()
10
+ if args.model == 'gpt-4o-mini':
11
+ get_github_token()
12
+ elif args.model == 'gemma2-9b-it':
13
+ get_grog_api()
14
+ reader = Reader(model=args.model)
15
+ input = translate(args.question)
16
+ reader.main(input)
17
+ run_ag()
pre-requirements.txt ADDED
The diff for this file is too large to render. See raw diff
 
prompt.txt ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ You are an Artificial General Intelligence. Your task is to provide the problem definition language based on the problem statement.
2
+ 1. Problem Definition Format: Each problem is represented as a sequence of premises followed by a conclusion.
3
+ - Premises: Define points, lines, and circles. Use clauses to construct points step-by-step as if drawn with a compass and straightedge.
4
+ - Conclusion: A single statement verifying the final geometry condition.
5
+ 2. Premise Structure:
6
+ - Clauses: Each clause specifies one or more points using defined actions. Clauses are separated by ';', with no trailing ';' before the '?' that separates premises from the conclusion.
7
+ - Actions: Each clause uses one or two actions to define points in terms of geometry constraints.
8
+ ######
9
+ Example:
10
+ - For constructing the midpoint M of segment AB: m = midpoint m a b
11
+ - To intersect a line and a circle at P: p = on_circle p o a, on_line p b c
12
+ ######
13
+ 3. Actions: Use only the following actions, each with a specific format and function. Clauses with 2 actions define points by their intersection.
14
+ 3.1. Basic Point Constructions:
15
+ - x = angle_bisector x a b c : Construct a point X on the angle bisector of angle ABC
16
+ - x = circle x a b c : Construct point X as the circumcenter of ABC, or ABC inscribed in (X)
17
+ - x = foot x a b c : Construct X as the foot of A on BC
18
+ - x = incenter x a b c : Construct X as the incenter of ABC
19
+ - x y z i = incenter2 x y z i a b c : Construct I as the incenter of ABC with touchpoints X, Y, Z
20
+ - x y = segment x y : Construct two distinct points X, Y
21
+ - x = excenter x a b c : Construct X as the excenter of ABC
22
+ - x = lc_tangent x a o : Construct E on the tangent of circle (O, A) with touchpoint A
23
+ - x = tangent x o a : Construct X such that OA is perpendicular to AX
24
+ - x = midpoint x a b : Construct X as the midpoint of AB'
25
+ - x = mirror x a b : Construct X such that B is the midpoint of AX
26
+ - x = on_bline x a b : Construct X on the perpendicular bisector of AB
27
+ - x = on_circle x o a : Construct X such that OA = OX
28
+ - x = on_line x a b : Construct X on line AB
29
+ - x = on_pline x a b c : Construct X such that XA is parallel to BC
30
+ - x = on_tline x a b c : Construct X such that XA is perpendicular to BC
31
+ - x = orthocenter x a b c : Construct X as the orthocenter of ABC
32
+ - x = parallelogram x a b c : Construct X such that ABCX is a parallelogram
33
+ - a b c = r_triangle a b c : Construct right triangle ABC
34
+ - a b c = triangle a b c : Construct triangle ABC
35
+ - a b c = iso_triangle a b c : Construct isosceles triangle ABC such that AB = AC
36
+ - a b c d = isquare a b c d : Construct square ABCD
37
+ - x y = tangent x y a o b : Construct points X, Y as the tangent touch points from A to circle (O, B)
38
+ 3.2. Intersection Actions:
39
+ - x = on_line x a b, on_line x c d : Construct point X as the intersection of line AB and line CD
40
+ - x = on_circle x o a, on_line x b c : Construct point X as the intersection of line BC and circle (O, A)
41
+ - x = lc_tangent x a o, on_line x b c : Construct point X as the intersection of the tangent of circle (O, A) with touchpoint A and line BC
42
+ - x = on_line x a b, angle_bisector x c d e : Construct point X as the intersection of line AB and the angle bisector of angle CDE
43
+ - x = on_tline x a b c, on_circle x o d : Construct point X as the intersection of the line perpendicular to BC from A and circle (O, D)
44
+ - x = on_circle x o a, angle_bisector x c d e : Construct point X as the intersection of circle (O, A) and the angle bisector of angle CDE
45
+ - x = on_pline x a b c, on_circle x o d : Construct point X as the intersection of the line parallel to BC from A and circle (O, D)
46
+ - x = on_tline x a b c, on_tline x d e f : Construct point X as the intersection of the line perpendicular to BC from A and the line perpendicular to EF from D
47
+ 4. Conclusion Types: After ?, state a single goal from the list below:
48
+ - coll a b c : points a b c are collinear
49
+ - cong a b c e : segments ab and cd are congruent (length equal)
50
+ - contri a b c p q r : triangles abc and pqr are congruent
51
+ - cyclic a b c d : 4 points a b c d are cocyclic, or quadrilateral abcd is inscribed, or quadrilateral abcd is cyclic
52
+ - eqangle a b c d p q r s : the angles between lines ab-cd and pq-rs are equal. Note that angles have directions (signs) so the order between a b and c d matters. eqangle a b c d c d a b is false. The way to think about it is, angle ab-cd is the angle to turn line ab clockwise so it is parallel with the line cd. You can use counter-clockwise as the convention too, as long as for all angles the same convention is used
53
+ - eqratio a b c d p q r s : segment length ab/cd = pq/rs, or ab.rs = cd.pq
54
+ - midp m a b : point m is the midpoint of a and b
55
+ - para a b c d : segments ab and cd are parallel
56
+ - perp a b c d : segments ab and cd are perpendicular to each other
57
+ - simtri a b c p q r : triangles abc and pqr are similar
58
+ ######
59
+ Example Problem Transformation:
60
+ user: Given a triangle ABC with three acute angles connected to the circle (O). The altitudes AD, BE, CF intersect at H and intersect the circle (O) at M, N, P respectively. Prove that: Quadrilateral CEHD is inscribed
61
+ assistant: a b c = triangle a b c; o = circle o a b c; d = foot d a b c; e = foot e b a c; f = foot f c a b; h = orthocenter h a b c; m = on_line m a d, on_circle m o a; n = on_line n b e, on_circle n o a; p = on_line p c f, on_circle p o a ? cyclic c e h d
62
+
63
+ user: Given a right triangle ABC at A. On side AC, take point M, construct a circle (O) with diameter MC. Line BM intersects circle (O) at D. Line AD intersects circle (O) at S. Prove that ABCD is an inscribed quadrilateral.
64
+ assistant: a b c = r_triangle a b c; m = on_line m a c; o = midpoint o m c; d = on_line d b m, on_circle d o m; s = on_line s a d, on_circle s o m ? cyclic a b c d
65
+
66
+ user: Given triangle ABC, bisector AD, median AM. The line perpendicular to AD at D intersects AB, AM at X, Y respectively. The line perpendicular to AB at X intersects AD at Z. Prove that YZ is perpendicular to BC.
67
+ assistant: a b c = triangle a b c; d = angle_bisector d b a c, on_line d b c; m = midpoint m b c; x = on_tline x d a d, on_line x a b; y = on_tline y d a d, on_line y a m; z = on_tline z x a b, on_line z a d ? perp y z b c
68
+
69
+ user: Given acute triangle ABC, Draw altitudes AD, BE, CF. Let H be the orthocenter of the triangle. Let M, N, P, Q be the perpendicular projections of D onto AB, BE, CF, AC, respectively. Prove: quadrilateral BMND is inscribed.
70
+ assistant: a b c = triangle a b c; d = foot d a b c; e = foot e b a c; f = foot f c a b; h = orthocenter h a b c; m = foot m d a b; n = foot n d b e; p = foot p d c f; q = foot q d a c ? cyclic b m n d
71
+ ######
reader.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from groq import Groq
2
+ from openai import OpenAI
3
+ import os
4
+ import regex as re
5
+ class Reader:
6
+ def __init__(self, model:str):
7
+ self.model_name = model
8
+ if model == 'gemma2-9b-it':
9
+ self.client = Groq()
10
+ elif model == 'gpt-4o-mini':
11
+ token = os.environ["GITHUB_TOKEN"]
12
+ endpoint = "https://models.inference.ai.azure.com"
13
+ self.client = OpenAI(base_url=endpoint,api_key=token)
14
+ self.prompt = None
15
+ def get_prompt(self) -> str:
16
+ """
17
+ Get the prompt from the prompt.txt file
18
+ """
19
+ with open('prompt.txt', 'r', encoding='utf-8') as f:
20
+ self.prompt = f.read()
21
+ def refine(self, input:str) -> str:
22
+ """
23
+ Refine the input
24
+ """
25
+ fix = re.sub(r'[;]\s*[?]\s*', ' ? ', input)
26
+ clean = re.sub(r'\s+', ' ', fix)
27
+ return clean
28
+ def reader(self, input: str) -> str:
29
+ """
30
+ Generate a response from the input
31
+ Args:
32
+ input (str): Math question from the user
33
+
34
+ Returns:
35
+ str: The generated response
36
+ """
37
+
38
+ chat_completion = self.client.chat.completions.create(
39
+ messages=[
40
+ { "role": "system", "content": self.prompt},
41
+ { "role": "user", "content": input,}
42
+ ],
43
+ model=self.model_name,
44
+ temperature=0.5,
45
+ max_tokens=2048,
46
+ top_p=1.0,
47
+ stop=None,
48
+ stream=False,
49
+ )
50
+ return self.refine(chat_completion.choices[0].message.content)
51
+ def write_output(self, output:str):
52
+ """
53
+ Write the output to the output.txt file
54
+ """
55
+ with open('ag4mout/output.txt', 'w', encoding='utf-8') as f:
56
+ f.write("Output\n")
57
+ f.write(output.strip())
58
+ def main(self, input:str) -> str:
59
+ self.get_prompt()
60
+ result = self.reader(input)
61
+ self.write_output(result)
requirements.txt ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiofiles==23.2.1
2
+ annotated-types==0.7.0
3
+ anyio==4.6.0
4
+ certifi==2024.8.30
5
+ colorama==0.4.6
6
+ deep-translator==1.11.4
7
+ distro==1.9.0
8
+ exceptiongroup==1.2.2
9
+ fastapi==0.115.4
10
+ ffmpy==0.4.0
11
+ gradio==5.5.0
12
+ gradio-client==1.4.2
13
+ groq==0.11.0
14
+ h11==0.14.0
15
+ httpcore==1.0.6
16
+ httpx==0.27.2
17
+ huggingface-hub==0.25.1
18
+ idna==3.10
19
+ jinja2==3.1.4
20
+ jiter==0.7.0
21
+ openai==1.54.3
22
+ orjson==3.10.11
23
+ pydantic==2.9.2
24
+ pydantic-core==2.23.4
25
+ python-multipart==0.0.12
26
+ pydub==0.25.1
27
+ ruff==0.7.3
28
+ safehttpx==0.1.1
29
+ semantic-version==2.10.0
30
+ shellingham==1.5.4
31
+ sniffio==1.3.1
32
+ starlette==0.41.2
33
+ tomlkit==0.12.0
34
+ tqdm==4.67.0
35
+ typer==0.13.0
36
+ typing-extensions==4.12.2
37
+ uvicorn==0.32.0
38
+ websockets==12.0
utils.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import subprocess, os
2
+ import regex as re
3
+ from deep_translator import GoogleTranslator
4
+ def get_grog_api():
5
+ os.environ["GROQ_API_KEY"]="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"
6
+ def get_github_token():
7
+ os.environ['GITHUB_TOKEN'] ="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"
8
+ def translate(input:str) -> str:
9
+ translated = GoogleTranslator(source='vi', target='en').translate(text=input)
10
+ return translated
11
+ def run_ag():
12
+ subprocess.run(["ag4masses/utils/run.sh"])
13
+ def read_solution():
14
+ with open('ag4mout/solution.out', 'r', encoding='utf-8') as f:
15
+ lines = f.readlines()
16
+ paragraphs = ''.join(lines).split('\n\n')
17
+ theorem_premises = paragraphs[0].strip()
18
+ auxiliary_constructions = paragraphs[1].strip()
19
+ proof_steps = paragraphs[2].strip()
20
+ proof_steps = re.sub(r'\d+\. ', '- Ta có:\n', proof_steps)
21
+ proof_steps = re.sub(r' & ', '\n', proof_steps)
22
+ proof_steps = re.sub(r' ⇒ ', '\n⇒ ', proof_steps)
23
+ result = {
24
+ theorem_premises.split('\n')[0]: GoogleTranslator(target='vi').translate(text='\n'.join(theorem_premises.split('\n')[1:])),
25
+ auxiliary_constructions.split('\n')[0]: GoogleTranslator(target='vi').translate(text='\n'.join(auxiliary_constructions.split('\n')[1:])),
26
+ proof_steps.split('\n')[0]: GoogleTranslator(target='vi').translate(text='\n'.join(proof_steps.split('\n')[1:]))
27
+ }
28
+ return result