Spaces:
Sleeping
Sleeping
File size: 8,464 Bytes
e679d69 |
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 |
from typing import Dict, Optional, Type
from asyncer import asyncify
from lagent.actions.base_action import AsyncActionMixin, BaseAction, tool_api
from lagent.actions.parser import BaseParser, JsonParser
THEME_MAPPING = {
'Default': {
'template': None,
'title': 'Title Slide',
'single': 'Title and Content',
'two': 'Two Content',
}
}
class PPT(BaseAction):
"""Plugin to create ppt slides with text, paragraph, images in good looking styles."""
def __init__(
self,
theme_mapping: Optional[Dict[str, dict]] = None,
description: Optional[dict] = None,
parser: Type[BaseParser] = JsonParser,
):
super().__init__(description, parser)
self.theme_mapping = theme_mapping or THEME_MAPPING
self.pointer = None
self.location = None
@tool_api(explode_return=True)
def create_file(self, theme: str, abs_location: str) -> dict:
"""Create a pptx file with specific themes.
Args:
theme (:class:`str`): the theme used. The value should be one of ['Default'].
abs_location (:class:`str`): the ppt file's absolute location
Returns:
:class:`dict`: operation status
* status: the result of the execution
"""
from pptx import Presentation
self.location = abs_location
try:
self.pointer = Presentation(self.theme_mapping[theme]['template'])
self.pointer.slide_master.name = theme
# print('created')
except Exception as e:
print(e)
return dict(status='created a ppt file.')
@tool_api(explode_return=True)
def add_first_page(self, title: str, subtitle: str) -> dict:
"""Add the first page of ppt.
Args:
title (:class:`str`): the title of ppt
subtitle (:class:`str`): the subtitle of ppt
Returns:
:class:`dict`: operation status
* status: the result of the execution
"""
layout_name = self.theme_mapping[self.pointer.slide_master.name]['title']
layout = next(i for i in self.pointer.slide_master.slide_layouts if i.name == layout_name)
slide = self.pointer.slides.add_slide(layout)
ph_title, ph_subtitle = slide.placeholders
ph_title.text = title
if subtitle:
ph_subtitle.text = subtitle
return dict(status='added page')
@tool_api(explode_return=True)
def add_text_page(self, title: str, bullet_items: str) -> dict:
"""Add text page of ppt.
Args:
title (:class:`str`): the title of the page
bullet_items (:class:`str`): bullet_items should be string, for multiple bullet items, please use [SPAN] to separate them.
Returns:
:class:`dict`: operation status
* status: the result of the execution
""" # noqa: E501
layout_name = self.theme_mapping[self.pointer.slide_master.name]['single']
layout = next(i for i in self.pointer.slide_master.slide_layouts if i.name == layout_name)
slide = self.pointer.slides.add_slide(layout)
ph_title, ph_body = slide.placeholders
ph_title.text = title
ph = ph_body
tf = ph.text_frame
for i, item in enumerate(bullet_items.split('[SPAN]')):
if i == 0:
p = tf.paragraphs[0]
else:
p = tf.add_paragraph()
p.text = item.strip()
p.level = 0
return dict(status='added page')
@tool_api(explode_return=True)
def add_text_image_page(self, title: str, bullet_items: str, image: str) -> dict:
"""Add a text page with one image. Image should be a path.
Args:
title (:class:`str`): the title of the page
bullet_items (:class:`str`): bullet_items should be string, for multiple bullet items, please use [SPAN] to separate them.
image (:class:`str`): the path of the image
Returns:
:class:`dict`: operation status
* status: the result of the execution
""" # noqa: E501
from PIL import Image
layout_name = self.theme_mapping[self.pointer.slide_master.name]['two']
layout = next(i for i in self.pointer.slide_master.slide_layouts if i.name == layout_name)
slide = self.pointer.slides.add_slide(layout)
ph_title, ph_body1, ph_body2 = slide.placeholders
ph_title.text = title
ph = ph_body2
image = Image.open(image)
image_pil = image.to_pil()
left = ph.left
width = ph.width
height = int(width / image_pil.width * image_pil.height)
top = (ph.top + (ph.top + ph.height)) // 2 - height // 2
slide.shapes.add_picture(image.to_path(), left, top, width, height)
ph = ph_body1
tf = ph.text_frame
for i, item in enumerate(bullet_items.split('[SPAN]')):
if i == 0:
p = tf.paragraphs[0]
else:
p = tf.add_paragraph()
p.text = item.strip()
p.level = 0
return dict(status='added page')
@tool_api(explode_return=True)
def submit_file(self) -> dict:
"""When all steps done, YOU MUST use submit_file() to submit your work.
Returns:
:class:`dict`: operation status
* status: the result of the execution
"""
# file_path = os.path.join(self.CACHE_DIR, f'{self._return_timestamp()}.pptx')
# self.pointer.save(file_path)
# retreival_url = upload_file(file_path)
self.pointer.save(self.location)
return dict(status=f'submitted. view ppt at {self.location}')
class AsyncPPT(AsyncActionMixin, PPT):
"""Plugin to create ppt slides with text, paragraph, images in good looking styles."""
@tool_api(explode_return=True)
@asyncify
def create_file(self, theme: str, abs_location: str) -> dict:
"""Create a pptx file with specific themes.
Args:
theme (:class:`str`): the theme used. The value should be one of ['Default'].
abs_location (:class:`str`): the ppt file's absolute location
Returns:
:class:`dict`: operation status
* status: the result of the execution
"""
return super().create_file(theme, abs_location)
@tool_api(explode_return=True)
@asyncify
def add_first_page(self, title: str, subtitle: str) -> dict:
"""Add the first page of ppt.
Args:
title (:class:`str`): the title of ppt
subtitle (:class:`str`): the subtitle of ppt
Returns:
:class:`dict`: operation status
* status: the result of the execution
"""
return super().add_first_page(title, subtitle)
@tool_api(explode_return=True)
@asyncify
def add_text_page(self, title: str, bullet_items: str) -> dict:
"""Add text page of ppt.
Args:
title (:class:`str`): the title of the page
bullet_items (:class:`str`): bullet_items should be string, for multiple bullet items, please use [SPAN] to separate them.
Returns:
:class:`dict`: operation status
* status: the result of the execution
""" # noqa: E501
return super().add_text_page(title, bullet_items)
@tool_api(explode_return=True)
@asyncify
def add_text_image_page(self, title: str, bullet_items: str, image: str) -> dict:
"""Add a text page with one image. Image should be a path.
Args:
title (:class:`str`): the title of the page
bullet_items (:class:`str`): bullet_items should be string, for multiple bullet items, please use [SPAN] to separate them.
image (:class:`str`): the path of the image
Returns:
:class:`dict`: operation status
* status: the result of the execution
""" # noqa: E501
return super().add_text_image_page(title, bullet_items, image)
@tool_api(explode_return=True)
@asyncify
def submit_file(self) -> dict:
"""When all steps done, YOU MUST use submit_file() to submit your work.
Returns:
:class:`dict`: operation status
* status: the result of the execution
"""
return super().submit_file()
|