Tyler Lastovich commited on
Commit
773061f
·
1 Parent(s): 367fe32

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +326 -0
app.py ADDED
@@ -0,0 +1,326 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import json
3
+ import os
4
+ import duckduckgo
5
+ os.system('pip install gradio==2.8.12')
6
+ import gradio as gr
7
+
8
+ openai.api_key = os.environ.get('OPENAI')
9
+
10
+ def callAPI(input_prompt, engine_type="text-davinciplus-001", temp=0.2):
11
+ try:
12
+ output = openai.Completion.create(
13
+ engine=engine_type,
14
+ prompt=input_prompt,
15
+ max_tokens=250,
16
+ temperature=temp,
17
+ n=1,
18
+ stop="\n---"
19
+ )
20
+ output = json.dumps(output)
21
+ output = json.loads(output)['choices'][0]
22
+ for ind in output:
23
+ if (ind == 'text'):
24
+ output = output[ind]
25
+ return output
26
+ else:
27
+ print('Error: failed to find text in output')
28
+ raise RuntimeError
29
+ except:
30
+ print('Error: failed to make successful OpenAI API call')
31
+ print(output)
32
+ raise RuntimeError
33
+
34
+ def makeValues(text_array):
35
+ print(text_array)
36
+ try:
37
+ output = {}
38
+ for text in text_array:
39
+ if text == '':
40
+ pass
41
+ else:
42
+ try:
43
+ split_text = text.split(": ", 1)
44
+ if split_text[1] == "none" or split_text[1] == "None" or split_text[1] == '':
45
+ output[str(split_text[0])] = ""
46
+ else:
47
+ output[str(split_text[0])] = split_text[1].strip()
48
+ except:
49
+ split_text = text.split(":", 1)
50
+ if split_text[1] == "none" or split_text[1] == "None" or split_text[1] == '':
51
+ output[str(split_text[0])] = ""
52
+ else:
53
+ output[str(split_text[0])] = split_text[1].strip()
54
+ return output
55
+
56
+ except:
57
+ print("error converting array values to dict")
58
+ print(output)
59
+ print(text)
60
+ raise RuntimeError
61
+
62
+ def company(model, input=None):
63
+ if not input:
64
+ return "Error: Please supply a company's name"
65
+ else:
66
+ company_text="Fill in the company facts table truthfully. If unsure list none.\n---\nFord\nstock_symbol: F\nstock_market: NYSE\nceo: Jim Farley\nheadquarters: Dearborn, MI\nindustry: automotive, manufacturing, electric vehicle\nfounded_date: 1903\nfounders: Henry Ford\nlegal_name: Ford Motor Company\ncompany_website: https://ford.com\nsummary: Ford Motor Company is an American multinational automobile manufacturer headquartered in Dearborn, Michigan, United States.\ncompetitors: Chevrolet, Toyota, Honda\nwikipedia_url: https://en.wikipedia.org/wiki/Ford_Motor_Company\ncrunchbase_url: https://www.crunchbase.com/organization/ford\ninstagram_url: https://www.instagram.com/ford\ntwitter_url: https://twitter.com/Ford\nyoutube_url: https://www.youtube.com/user/ford\n---\n"
67
+ loaded_prompt=company_text+input
68
+ engine_used=model
69
+ result=callAPI(loaded_prompt, engine_used, 0.2)
70
+ result = result.split('\n')
71
+ formatted_result=makeValues(result)
72
+ try:
73
+ final={}
74
+ final['triples']={}
75
+ final['metadata']={}
76
+ final['subject']=input
77
+ final['type']='company'
78
+ final['triples']['stock_symbol'] = formatted_result['stock_symbol']
79
+ final['triples']['stock_market'] = formatted_result['stock_market']
80
+ final['triples']['ceo'] = formatted_result['ceo']
81
+ final['triples']['industry'] = formatted_result['industry'].split(',')
82
+ final['triples']['headquarters'] = formatted_result['headquarters']
83
+ final['triples']['founded_date'] = formatted_result['founded_date']
84
+ final['triples']['founders'] = formatted_result['founders'].split(',')
85
+ final['triples']['legal_name'] = formatted_result['legal_name']
86
+ final['triples']['company_website'] = formatted_result['company_website']
87
+ final['triples']['wikipedia_url'] = formatted_result['wikipedia_url']
88
+ final['triples']['summary'] = formatted_result['summary']
89
+ final['metadata']['producer']='MIDAS v0.01'
90
+ final['metadata']['nlp_model']=engine_used
91
+ print(final)
92
+ #json_result = json.dumps(final)
93
+ except:
94
+ print('Error: could not form JSON from key:values')
95
+ print(formatted_result)
96
+ return '{"Error": "could not form JSON from key:values"}'
97
+ return final
98
+
99
+ def person(model, input=None):
100
+ if not input:
101
+ return "Error: Please supply a company's name"
102
+ else:
103
+ person_text="Fill in the persons fact table truthfully. If unsure list none.\n---\nJim Farley\ncommon_name: Jim Farley\nborn: 1956\nlegal_name: Jim Farley\nsummary: Jim Farley is the CEO of Ford Motor Company.\nwikipedia_url: https://en.wikipedia.org/wiki/Jim_Farley\ninstagram_url:\ntwitter_url:\nyoutube_url:\n---\n"
104
+ loaded_prompt=person_text+input
105
+ engine_used=model
106
+ result=callAPI(loaded_prompt, engine_used, 0)
107
+ result = result.split('\n')
108
+ formatted_result=makeValues(result)
109
+ try:
110
+ final={}
111
+ final['triples']={}
112
+ final['metadata']={}
113
+ final['subject']=input
114
+ final['type']='person'
115
+ final['triples']['common_name'] = formatted_result['common_name']
116
+ final['triples']['born'] = formatted_result['born']
117
+ final['triples']['legal_name'] = formatted_result['legal_name']
118
+ final['triples']['instagram_url'] = formatted_result['instagram_url']
119
+ final['triples']['twitter_url'] = formatted_result['twitter_url']
120
+ final['triples']['wikipedia_url'] = formatted_result['wikipedia_url']
121
+ final['triples']['summary'] = formatted_result['summary']
122
+ final['metadata']['producer']='MIDAS v0.01'
123
+ final['metadata']['nlp_model']=engine_used
124
+ print(final)
125
+ #json_result = json.dumps(final)
126
+ except:
127
+ print('Error: could not form JSON from key:values')
128
+ print(formatted_result)
129
+ return '{"Error": "could not form JSON from key:values"}'
130
+ return final
131
+
132
+ model_options = {
133
+ "Davinci Plus Instruct (OpenAI)": "text-davinciplus-001",
134
+ "Davinci Instruct (OpenAI)": "text-davinci-001",
135
+ "Davinci (OpenAI)": "davinci",
136
+ "Curie Instruct (OpenAI)": "text-curie-001",
137
+ "GPT-J": "gpt-j",
138
+ }
139
+
140
+ def start(model=None,types=None, text=None):
141
+ if not text or not types or not model:
142
+ return "Error: Please supply an input"
143
+ else:
144
+ if model_options[model] == 'gpt-j':
145
+ return "GPT-J coming soon"
146
+ else:
147
+ if types == "Company":
148
+ return company(model_options[model], text)
149
+ if types == "Person":
150
+ return person(model_options[model], text)
151
+
152
+ custom_css = '''
153
+ @import url('https://use.typekit.net/kmj7hxn.css');
154
+
155
+ .gradio-bg {
156
+ font-family: 'Roc Grotesk', sans-serif;
157
+ }
158
+ .gradio-bg .gradio-page {
159
+ display: flex;
160
+ width: 100vw;
161
+ min-height: 50vh;
162
+ flex-direction: column;
163
+ justify-content: center;
164
+ align-items: center;
165
+ margin: 0px;
166
+ max-width: 100vw;
167
+ background: transparent;
168
+ }
169
+ .gradio-bg .gradio-page .content {
170
+ padding: 0px;
171
+ margin: 0px;
172
+ }
173
+ .gradio-interface {
174
+ width: 100vw;
175
+ max-width: 1400px;
176
+ }
177
+ .gradio-interface .panel:nth-child(2) .component:nth-child(3) {
178
+ display:none
179
+ }
180
+ .gradio-interface[theme=default] .panel-header {
181
+ letter-spacing: 0.1em;
182
+ font-weight: 500;
183
+ margin-left: 5px;
184
+ margin-bottom: 4px;
185
+ }
186
+ .gradio-bg .panel-buttons {
187
+ justify-content: flex-end;
188
+ background: #D8CBFE;
189
+ margin: 0;
190
+ border: none;
191
+ padding: 15px;
192
+ padding-top: 0px;
193
+ border-radius: 0px 0px 15px 15px;
194
+ }
195
+ .panel-button:nth-child(1){
196
+ display:none;
197
+ }
198
+ .gradio-bg .panel-button {
199
+ flex: 0 0 0;
200
+ min-width: 150px;
201
+ }
202
+ .gradio-bg .gradio-interface .panel-button.submit {
203
+ background: #7131FA;
204
+ border-radius: 50px;
205
+ color: #FFFFFF;
206
+ font-size: 18px;
207
+ min-width: 150px;
208
+ letter-spacing: 0.06em;
209
+ line-height: 100%;
210
+ flex: 0 0 0;
211
+ transition: all ease-in-out 240ms;
212
+ }
213
+ .gradio-bg .gradio-interface .panel-button.submit:hover {
214
+ background-color: #9f72ff;
215
+ box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
216
+ }
217
+ .input_text:focus {
218
+ border-color: #FA7880;
219
+ }
220
+ .input-text[theme=default] input,
221
+ .input-text[theme=default] textarea {
222
+ line-height: 110%;
223
+ color: #7131FA;
224
+ border-radius: 5px;
225
+ padding: 15px;
226
+ border: none;
227
+ background: #FFFFFF;
228
+ }
229
+ .input-text[theme=default] {
230
+ font-weight: 500;
231
+ font-size: 28px;
232
+ padding: 17px;
233
+ border-radius: 8px;
234
+ }
235
+ .input-text textarea:focus-visible {
236
+ outline: none;
237
+ }
238
+ .input-dropdown[theme=default] .selector {
239
+ font-weight: 500;
240
+ background: rgba(255,255,255,0.5);
241
+ padding: 7px 12px 7px 12px;
242
+ }
243
+ .input-dropdown[theme=default] .dropdown-item {
244
+ font-weight: 500;
245
+ }
246
+ .input-dropdown[theme=default] .dropdown-item:hover {
247
+ background: #FFFFFF;
248
+ color: #7131FA;
249
+ font-weight: 500;
250
+ }
251
+ .gradio-bg .gradio-interface .input-radio .radio-item.selected {
252
+ background-color: #7131FA;
253
+ }
254
+ .gradio-bg .gradio-interface .input-radio .selected .radio-circle {
255
+ border-color: #4365c4;
256
+ }
257
+ .gradio-bg .gradio-interface .output-json {
258
+ background: #333;
259
+ padding: 25px;
260
+ border-radius: 10px;
261
+ font-size: 16px;
262
+ color: #eee;
263
+ }
264
+ .text-green-500 {
265
+ color: #cabdff;
266
+ }
267
+ .panel:nth-child(1) {
268
+ margin-left: 50px;
269
+ margin-right: 10px;
270
+ margin-bottom: 80px;
271
+ max-width: 575px;
272
+ }
273
+ .panel {
274
+ background: transparent;
275
+ }
276
+ .gradio-bg .gradio-interface[theme=default] .component-set {
277
+ background: #D8CBFE;
278
+ border: none;
279
+ box-shadow: none;
280
+ border-radius: 15px 15px 0px 0px;
281
+ padding: 20px;
282
+ padding-bottom: 12px;
283
+ }
284
+ .panel:nth-child(2) .gradio-interface[theme=default] .panel-header {
285
+ display: none;
286
+ }
287
+ .labels {
288
+ height: 20px;
289
+ width: auto;
290
+ }
291
+ @media (max-width: 1000px){
292
+ .panel:nth-child(1) {
293
+ margin-left: 0px;
294
+ margin-right: 0px;
295
+ }
296
+ .gradio-bg .gradio-interface .output-json {
297
+ height: auto;
298
+ }
299
+ }
300
+ .footer {
301
+ display: none !important;
302
+ }
303
+ '''
304
+
305
+ iface = gr.Interface(
306
+ fn=start,
307
+ inputs=[
308
+ gr.inputs.Dropdown([
309
+ "Davinci Plus Instruct (OpenAI)",
310
+ "Davinci Instruct (OpenAI)",
311
+ "Davinci (OpenAI)",
312
+ "Curie Instruct (OpenAI)",
313
+ "GPT-J"], label="Model"),
314
+ gr.inputs.Dropdown(["Company", "Person"], label="Entity Type"),
315
+ gr.inputs.Textbox(lines=1, label="Subject")
316
+ ],
317
+ outputs=[
318
+ gr.outputs.JSON(label="JSON Triples")
319
+ ],
320
+ css=custom_css,
321
+ theme="default",
322
+ allow_flagging='never',
323
+ allow_screenshot=False,
324
+ )
325
+
326
+ iface.launch(enable_queue=True)