-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex2codeai.py
More file actions
286 lines (224 loc) · 8.15 KB
/
ex2codeai.py
File metadata and controls
286 lines (224 loc) · 8.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import keyword
import copy
import types
from langchain.prompts import PromptTemplate
from langchain.llms.base import LLM
import dill
def save_dill(path: str, obj):
with open(path, "wb") as f:
dill.dump(obj, f)
def save_module(path: str, obj_str):
assert path.endswith(".py"), "Module path must be a .py file"
with open(path, "w") as f:
f.write(obj_str)
class Example:
"""
Example input and output
"""
def __init__(self, input: dict, output):
self.input = input
self.output = output
def to_dict(self):
return {
"input": self.input,
"output": self.output
}
def __repr__(self):
inp = ",".join([f"{k}: {v}" for k, v in self.input.items()])
return f"Input: ({inp}), Output: {self.output}\n"
class Spec:
"""
Base class for all specs
"""
PROMPT = None
def __init__(self, name: str, desc=""):
assert name.isidentifier() and not keyword.iskeyword(name), "Name must be a valid Python identifier"
self.name = name
self.desc = desc
def to_dict(self):
return {
"name": self.name,
"desc": self.desc
}
def invoke(self, llm: LLM):
"""
Invoke the LLM with the prompt
"""
chain = self.PROMPT | llm
str_obj = chain.invoke(self.to_dict())
str_obj = str_obj.replace("```", "")
return str_obj
def generate(self, llm: LLM) -> tuple[str, any]:
"""
Generate the function by invoking the LLM and parsing the output (str)
Args:
llm (LLM): LLM
Returns:
str, obj
"""
str_obj = self.invoke(llm)
return str_obj, self.parse(str_obj)
def parse(self, str_obj: str):
"""
Parse the output of the LLM
Args:
str_obj (str): Output of the LLM
"""
str_obj = str_obj.replace("```", "")
exec(str_obj)
obj = eval(self.name)
return self._wrap_generated_obj(obj, str_obj)
def prompt(self):
return self.PROMPT.format(**self.to_dict())
def _wrap_generated_obj(self, obj, str_obj):
obj.__name__ = self.name
obj.__doc__ = self.desc
return obj
class FuncSpec(Spec):
TEMPLATE = """
You are a Python programmer. Your task is to write a Python function that matches the following examples.
Each example consists of an input and its respective output.
Examples:
{examples}
Description:
{desc}
Write a Python function named `{name}` that implements this logic. Do not include any additional explanation or comments, just the code.
"""
PROMPT = PromptTemplate.from_template(TEMPLATE)
def __init__(self, name: str, desc: str, *examples: Example):
super().__init__(name, desc)
self.examples = list(examples)
def add_example(self, _input: dict, output):
"""
Add an example to the function
Args:
_input (dict): Input of the example
output: Output of the example
"""
example = Example(_input, output)
self.examples.append(example)
return self
def to_dict(self):
d = super().to_dict()
d["examples"] = copy.deepcopy(self.examples)
return d
def __repr__(self):
return f"Name: {self.name}, Description: {self.desc}, Examples: {self.examples}\n"
def _wrap_generated_obj(self, obj, str_obj):
obj = super()._wrap_generated_obj(obj, str_obj)
return obj
class ClassSpec(Spec):
TEMPLATE = """
You are a Python programmer. Your task is to write a simple Python class that matches the following description and has the following methods.
Description:
{desc}
Instance Methods:
{instance_methods}
Class Methods:
{class_methods}
Static Methods:
{static_methods}
Write a Python class named `{name}` that implements this logic. Do not include any additional explanation or comments, just the code.
"""
PROMPT = PromptTemplate.from_template(TEMPLATE)
def __init__(self, name, desc):
super().__init__(name, desc)
self.instance_methods = []
self.class_methods = []
self.static_methods = []
def add_instance_method(self, name:str, desc: str, *examples: Example):
"""
Add an instance method to the class
Args:
name (str): Name of the method
desc (str): Description of the method
examples (Example): Examples of the method
"""
method = FuncSpec(name, desc, *examples)
self.instance_methods.append(method)
return self
def add_class_method(self, name:str, desc: str, *examples: Example):
"""
Add an class method to the class
Args:
name (str): Name of the method
desc (str): Description of the method
examples (Example): Examples of the method
"""
method = FuncSpec(name, desc, *examples)
self.class_methods.append(method)
return self
def add_static_method(self, name:str, desc: str, *examples: Example):
"""
Add a static method to the class
Args:
name (str): Name of the method
desc (str): Description of the method
examples (Example): Examples of the method
"""
method = FuncSpec(name, desc, *examples)
self.static_methods.append(method)
return self
def to_dict(self):
d = super().to_dict()
d["instance_methods"] = copy.deepcopy(self.instance_methods)
d["class_methods"] = copy.deepcopy(self.class_methods)
d["static_methods"] = copy.deepcopy(self.static_methods)
return d
def __repr__(self):
return f"Class Name: {self.name}, Description: {self.desc}\nInstance Methods:{self.instance_methods}\nClass Methods:{self.class_methods}\nStatic Methods:{self.static_methods}\n"
class ModuleSpec(Spec):
TEMPLATE = """
You are a Python programmer. Your task is to write a simple Python module that matches the following description, functions and classes.
Description:
{desc}
Functions:
{functions}
Classes:
{classes}
Write a Python module named `{name}` that implements this logic. Make sure you are importing the necessary modules. Do not include any additional explanation or comments, just the code.
"""
PROMPT = PromptTemplate.from_template(TEMPLATE)
def __init__(self, name, desc):
super().__init__(name, desc)
self.classes = []
self.functions = []
def add_class(self, name:str, desc: str, *examples: Example):
"""
Add a class to the module
Args:
name (str): Name of the class
desc (str): Description of the class
examples (Example): Examples of the class
"""
cls = ClassSpec(name, desc, *examples)
self.classes.append(cls)
return cls
def add_function(self, name:str, desc: str, *examples: Example):
"""
Add a function to the module
Args:
name (str): Name of the function
desc (str): Description of the function
examples (Example): Examples of the function
"""
f = FuncSpec(name, desc, *examples)
self.functions.append(f)
return f
def to_dict(self):
d = super().to_dict()
d["functions"] = copy.deepcopy(self.functions)
d["classes"] = copy.deepcopy(self.classes)
return d
def parse(self, str_obj: str):
"""
Parse the output of the LLM
Args:
str_obj (str): Output of the LLM
"""
str_obj = str_obj.replace("```", "")
module = types.ModuleType(self.name)
exec(str_obj, module.__dict__)
module.__doc__ = self.desc
module.__name__ = self.name
return self._wrap_generated_obj(module, str_obj)