Spaces:
Runtime error
Runtime error
Update content.py
Browse files- content.py +105 -105
content.py
CHANGED
@@ -1,106 +1,106 @@
|
|
1 |
-
import requests
|
2 |
-
import gradio as gr
|
3 |
-
|
4 |
-
from helper import generate_access_token
|
5 |
-
|
6 |
-
def generate_content(grade, subject, topics, learning_outcomes, notes, stories, activities, group_dicussion, extras):
|
7 |
-
|
8 |
-
data = {
|
9 |
-
"institution_id": "inst789",
|
10 |
-
"teacher_id": "teacher456",
|
11 |
-
"grade": grade,
|
12 |
-
"subject": subject,
|
13 |
-
"topics": topics.split(", "),
|
14 |
-
"learning_outcomes": learning_outcomes.split(", "),
|
15 |
-
"content_type": {
|
16 |
-
"notes": notes,
|
17 |
-
"stories": stories,
|
18 |
-
"activities": activities,
|
19 |
-
"group_dicussion": group_dicussion
|
20 |
-
},
|
21 |
-
"extras": extras.split(", ")
|
22 |
-
}
|
23 |
-
|
24 |
-
access_token = generate_access_token()
|
25 |
-
|
26 |
-
if access_token is None:
|
27 |
-
return {"Error": "Failed to generate access token"}
|
28 |
-
|
29 |
-
response = requests.post("http://20.193.151.200:8080/k12/generate/content",
|
30 |
-
headers={
|
31 |
-
"accept": "application/json",
|
32 |
-
"content-type": "application/json",
|
33 |
-
"Authorization": f"{access_token}"},
|
34 |
-
json=data)
|
35 |
-
|
36 |
-
if(str(response.status_code)[0] != '2'):
|
37 |
-
return {"Error": f"{response.status_code}"}
|
38 |
-
|
39 |
-
return response.json()
|
40 |
-
|
41 |
-
def get_content_generation(request_id):
|
42 |
-
|
43 |
-
access_token = generate_access_token()
|
44 |
-
|
45 |
-
if access_token is None:
|
46 |
-
return {"Error": "Failed to generate access token"}
|
47 |
-
|
48 |
-
url = f"http://20.193.151.200:8080/k12/generate/content/{request_id}"
|
49 |
-
headers = {"accept": "application/json",
|
50 |
-
"Authorization": access_token}
|
51 |
-
|
52 |
-
response = requests.get(url, headers=headers)
|
53 |
-
|
54 |
-
if str(response.status_code)[0] == "2":
|
55 |
-
return response.json()
|
56 |
-
else:
|
57 |
-
return {"Error" : f"{response.status_code}"}
|
58 |
-
|
59 |
-
def post_interface():
|
60 |
-
|
61 |
-
with gr.Blocks() as post_page:
|
62 |
-
grade = gr.Textbox(label="Grade", value="8")
|
63 |
-
subject = gr.Textbox(label="Subject", value="Science")
|
64 |
-
|
65 |
-
topics = gr.Textbox(label="Topics (comma-separated)", value="Plant and Animal Cells, Reproduction in Humans and Animals")
|
66 |
-
learning_outcomes = gr.Textbox(label="Learning Outcomes (comma-separated)")
|
67 |
-
|
68 |
-
notes = gr.Radio(label="Notes", choices=["Yes", "No"], value="No")
|
69 |
-
stories = gr.Radio(label="Stories", choices=["Yes", "No"], value="No")
|
70 |
-
activities = gr.Radio(label="Activities", choices=["Yes", "No"], value="No")
|
71 |
-
group_dicussion = gr.Radio(label="Group Discussion", choices=["Yes", "No"], value="No")
|
72 |
-
|
73 |
-
extras = gr.Textbox(label="Extras (comma-separated)")
|
74 |
-
|
75 |
-
submit_button = gr.Button("Invoke Request")
|
76 |
-
output = gr.JSON(label="Content Generation ID")
|
77 |
-
|
78 |
-
submit_button.click(
|
79 |
-
fn=generate_content,
|
80 |
-
inputs=[grade, subject, topics, learning_outcomes, notes, stories, activities, group_dicussion, extras],
|
81 |
-
outputs=output,
|
82 |
-
)
|
83 |
-
|
84 |
-
return post_page
|
85 |
-
|
86 |
-
def get_interface():
|
87 |
-
with gr.Blocks() as get_page:
|
88 |
-
|
89 |
-
interface = gr.Interface(
|
90 |
-
fn=get_content_generation,
|
91 |
-
inputs=gr.Textbox(label="Enter Request ID"),
|
92 |
-
outputs="json",
|
93 |
-
)
|
94 |
-
|
95 |
-
return get_page
|
96 |
-
|
97 |
-
def content_generation():
|
98 |
-
gr.Markdown("# Content Generation")
|
99 |
-
with gr.Blocks() as content_generation:
|
100 |
-
with gr.Tabs():
|
101 |
-
with gr.TabItem("POST"):
|
102 |
-
post_interface()
|
103 |
-
with gr.TabItem("GET"):
|
104 |
-
get_interface()
|
105 |
-
|
106 |
return content_generation
|
|
|
1 |
+
import requests
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
from helper import generate_access_token
|
5 |
+
|
6 |
+
def generate_content(grade, subject, topics, learning_outcomes, notes, stories, activities, group_dicussion, extras):
|
7 |
+
|
8 |
+
data = {
|
9 |
+
"institution_id": "inst789",
|
10 |
+
"teacher_id": "teacher456",
|
11 |
+
"grade": grade,
|
12 |
+
"subject": subject,
|
13 |
+
"topics": topics.split(", "),
|
14 |
+
"learning_outcomes": learning_outcomes.split(", "),
|
15 |
+
"content_type": {
|
16 |
+
"notes": notes,
|
17 |
+
"stories": stories,
|
18 |
+
"activities": activities,
|
19 |
+
"group_dicussion": group_dicussion
|
20 |
+
},
|
21 |
+
"extras": extras.split(", ")
|
22 |
+
}
|
23 |
+
|
24 |
+
access_token = generate_access_token()
|
25 |
+
|
26 |
+
if access_token is None:
|
27 |
+
return {"Error": "Failed to generate access token"}
|
28 |
+
|
29 |
+
response = requests.post("http://20.193.151.200:8080/v1/k12/generate/content",
|
30 |
+
headers={
|
31 |
+
"accept": "application/json",
|
32 |
+
"content-type": "application/json",
|
33 |
+
"Authorization": f"{access_token}"},
|
34 |
+
json=data)
|
35 |
+
|
36 |
+
if(str(response.status_code)[0] != '2'):
|
37 |
+
return {"Error": f"{response.status_code}"}
|
38 |
+
|
39 |
+
return response.json()
|
40 |
+
|
41 |
+
def get_content_generation(request_id):
|
42 |
+
|
43 |
+
access_token = generate_access_token()
|
44 |
+
|
45 |
+
if access_token is None:
|
46 |
+
return {"Error": "Failed to generate access token"}
|
47 |
+
|
48 |
+
url = f"http://20.193.151.200:8080/k12/generate/content/{request_id}"
|
49 |
+
headers = {"accept": "application/json",
|
50 |
+
"Authorization": access_token}
|
51 |
+
|
52 |
+
response = requests.get(url, headers=headers)
|
53 |
+
|
54 |
+
if str(response.status_code)[0] == "2":
|
55 |
+
return response.json()
|
56 |
+
else:
|
57 |
+
return {"Error" : f"{response.status_code}"}
|
58 |
+
|
59 |
+
def post_interface():
|
60 |
+
|
61 |
+
with gr.Blocks() as post_page:
|
62 |
+
grade = gr.Textbox(label="Grade", value="8")
|
63 |
+
subject = gr.Textbox(label="Subject", value="Science")
|
64 |
+
|
65 |
+
topics = gr.Textbox(label="Topics (comma-separated)", value="Plant and Animal Cells, Reproduction in Humans and Animals")
|
66 |
+
learning_outcomes = gr.Textbox(label="Learning Outcomes (comma-separated)")
|
67 |
+
|
68 |
+
notes = gr.Radio(label="Notes", choices=["Yes", "No"], value="No")
|
69 |
+
stories = gr.Radio(label="Stories", choices=["Yes", "No"], value="No")
|
70 |
+
activities = gr.Radio(label="Activities", choices=["Yes", "No"], value="No")
|
71 |
+
group_dicussion = gr.Radio(label="Group Discussion", choices=["Yes", "No"], value="No")
|
72 |
+
|
73 |
+
extras = gr.Textbox(label="Extras (comma-separated)")
|
74 |
+
|
75 |
+
submit_button = gr.Button("Invoke Request")
|
76 |
+
output = gr.JSON(label="Content Generation ID")
|
77 |
+
|
78 |
+
submit_button.click(
|
79 |
+
fn=generate_content,
|
80 |
+
inputs=[grade, subject, topics, learning_outcomes, notes, stories, activities, group_dicussion, extras],
|
81 |
+
outputs=output,
|
82 |
+
)
|
83 |
+
|
84 |
+
return post_page
|
85 |
+
|
86 |
+
def get_interface():
|
87 |
+
with gr.Blocks() as get_page:
|
88 |
+
|
89 |
+
interface = gr.Interface(
|
90 |
+
fn=get_content_generation,
|
91 |
+
inputs=gr.Textbox(label="Enter Request ID"),
|
92 |
+
outputs="json",
|
93 |
+
)
|
94 |
+
|
95 |
+
return get_page
|
96 |
+
|
97 |
+
def content_generation():
|
98 |
+
gr.Markdown("# Content Generation")
|
99 |
+
with gr.Blocks() as content_generation:
|
100 |
+
with gr.Tabs():
|
101 |
+
with gr.TabItem("POST"):
|
102 |
+
post_interface()
|
103 |
+
with gr.TabItem("GET"):
|
104 |
+
get_interface()
|
105 |
+
|
106 |
return content_generation
|