@_vrsen/openswarm 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +152 -0
- package/bin/openswarm.js +38 -0
- package/config.py +34 -0
- package/data_analyst_agent/.cursor/rules/data_analyst.mdc +43 -0
- package/data_analyst_agent/__init__.py +3 -0
- package/data_analyst_agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/data_analyst_agent/__pycache__/data_analyst_agent.cpython-312.pyc +0 -0
- package/data_analyst_agent/data_analyst_agent.py +45 -0
- package/data_analyst_agent/instructions.md +173 -0
- package/data_analyst_agent/test_files/test_file.csv +21 -0
- package/data_analyst_agent/tools/__init__.py +6 -0
- package/deep_research/__init__.py +1 -0
- package/deep_research/__pycache__/__init__.cpython-312.pyc +0 -0
- package/deep_research/__pycache__/deep_research.cpython-312.pyc +0 -0
- package/deep_research/deep_research.py +27 -0
- package/deep_research/instructions.md +104 -0
- package/deep_research/tools/__init__.py +1 -0
- package/docs_agent/__init__.py +3 -0
- package/docs_agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/docs_agent/__pycache__/docs_agent.cpython-312.pyc +0 -0
- package/docs_agent/docs_agent.py +61 -0
- package/docs_agent/instructions.md +418 -0
- package/docs_agent/tools/ConvertDocument.py +323 -0
- package/docs_agent/tools/CreateDocument.py +287 -0
- package/docs_agent/tools/ListDocuments.py +134 -0
- package/docs_agent/tools/ModifyDocument.py +247 -0
- package/docs_agent/tools/RestoreDocument.py +79 -0
- package/docs_agent/tools/ViewDocument.py +153 -0
- package/docs_agent/tools/__init__.py +1 -0
- package/docs_agent/tools/__pycache__/ConvertDocument.cpython-312.pyc +0 -0
- package/docs_agent/tools/__pycache__/CreateDocument.cpython-312.pyc +0 -0
- package/docs_agent/tools/__pycache__/ListDocuments.cpython-312.pyc +0 -0
- package/docs_agent/tools/__pycache__/ModifyDocument.cpython-312.pyc +0 -0
- package/docs_agent/tools/__pycache__/RestoreDocument.cpython-312.pyc +0 -0
- package/docs_agent/tools/__pycache__/ViewDocument.cpython-312.pyc +0 -0
- package/docs_agent/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__init__.py +1 -0
- package/docs_agent/tools/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/doc_file_utils.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_blocks.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_constants.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_core.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_css.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_images.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_page.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_paragraphs.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_playwright.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_selectors.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_docx_shared.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/__pycache__/html_validation.cpython-312.pyc +0 -0
- package/docs_agent/tools/utils/doc_file_utils.py +29 -0
- package/docs_agent/tools/utils/html_docx_blocks.py +262 -0
- package/docs_agent/tools/utils/html_docx_constants.py +78 -0
- package/docs_agent/tools/utils/html_docx_core.py +138 -0
- package/docs_agent/tools/utils/html_docx_css.py +262 -0
- package/docs_agent/tools/utils/html_docx_images.py +293 -0
- package/docs_agent/tools/utils/html_docx_page.py +185 -0
- package/docs_agent/tools/utils/html_docx_paragraphs.py +342 -0
- package/docs_agent/tools/utils/html_docx_playwright.py +184 -0
- package/docs_agent/tools/utils/html_docx_selectors.py +196 -0
- package/docs_agent/tools/utils/html_docx_shared.py +23 -0
- package/docs_agent/tools/utils/html_docx_tables.py +942 -0
- package/docs_agent/tools/utils/html_validation.py +102 -0
- package/helpers.py +59 -0
- package/image_generation_agent/__init__.py +1 -0
- package/image_generation_agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/image_generation_agent/__pycache__/image_generation_agent.cpython-312.pyc +0 -0
- package/image_generation_agent/image_generation_agent.py +31 -0
- package/image_generation_agent/instructions.md +80 -0
- package/image_generation_agent/tools/CombineImages.py +211 -0
- package/image_generation_agent/tools/EditImages.py +200 -0
- package/image_generation_agent/tools/GenerateImages.py +184 -0
- package/image_generation_agent/tools/RemoveBackground.py +108 -0
- package/image_generation_agent/tools/__init__.py +2 -0
- package/image_generation_agent/tools/__pycache__/CombineImages.cpython-312.pyc +0 -0
- package/image_generation_agent/tools/__pycache__/EditImages.cpython-312.pyc +0 -0
- package/image_generation_agent/tools/__pycache__/GenerateImages.cpython-312.pyc +0 -0
- package/image_generation_agent/tools/__pycache__/RemoveBackground.cpython-312.pyc +0 -0
- package/image_generation_agent/tools/utils/__init__.py +2 -0
- package/image_generation_agent/tools/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/image_generation_agent/tools/utils/__pycache__/image_io.cpython-312.pyc +0 -0
- package/image_generation_agent/tools/utils/image_io.py +308 -0
- package/onboard.py +325 -0
- package/orchestrator/__init__.py +3 -0
- package/orchestrator/__pycache__/__init__.cpython-312.pyc +0 -0
- package/orchestrator/__pycache__/orchestrator.cpython-312.pyc +0 -0
- package/orchestrator/instructions.md +90 -0
- package/orchestrator/orchestrator.py +33 -0
- package/package.json +49 -0
- package/patches/__init__.py +1 -0
- package/patches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/patches/__pycache__/patch_agency_swarm_dual_comms.cpython-312.pyc +0 -0
- package/patches/__pycache__/patch_file_attachment_refs.cpython-312.pyc +0 -0
- package/patches/__pycache__/patch_ipython_interpreter_composio.cpython-312.pyc +0 -0
- package/patches/dom-to-pptx+1.1.5.patch +133440 -0
- package/patches/patch_agency_swarm_dual_comms.py +199 -0
- package/patches/patch_file_attachment_refs.py +74 -0
- package/patches/patch_ipython_interpreter_composio.py +54 -0
- package/pyproject.toml +67 -0
- package/run.py +343 -0
- package/server.py +26 -0
- package/shared_instructions.md +119 -0
- package/shared_tools/CopyFile.py +68 -0
- package/shared_tools/ExecuteTool.py +184 -0
- package/shared_tools/FindTools.py +101 -0
- package/shared_tools/ManageConnections.py +43 -0
- package/shared_tools/SearchTools.py +44 -0
- package/shared_tools/__init__.py +7 -0
- package/shared_tools/__pycache__/CopyFile.cpython-312.pyc +0 -0
- package/shared_tools/__pycache__/ExecuteTool.cpython-312.pyc +0 -0
- package/shared_tools/__pycache__/FindTools.cpython-312.pyc +0 -0
- package/shared_tools/__pycache__/ManageConnections.cpython-312.pyc +0 -0
- package/shared_tools/__pycache__/SearchTools.cpython-312.pyc +0 -0
- package/shared_tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/slides_agent/.cursor/rules/slides-agent-workflow.mdc +9 -0
- package/slides_agent/__init__.py +1 -0
- package/slides_agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/slides_agent/__pycache__/slides_agent.cpython-312.pyc +0 -0
- package/slides_agent/instructions.md +298 -0
- package/slides_agent/pptx/SKILL.md +528 -0
- package/slides_agent/pptx/html2pptx.md +625 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/slides_agent/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/slides_agent/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/slides_agent/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/slides_agent/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/slides_agent/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/slides_agent/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/slides_agent/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/slides_agent/pptx/ooxml/scripts/pack.py +169 -0
- package/slides_agent/pptx/ooxml/scripts/unpack.py +29 -0
- package/slides_agent/pptx/ooxml/scripts/validate.py +69 -0
- package/slides_agent/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/slides_agent/pptx/ooxml/scripts/validation/base.py +951 -0
- package/slides_agent/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/slides_agent/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/slides_agent/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/slides_agent/pptx/ooxml.md +427 -0
- package/slides_agent/pptx/scripts/html2pptx.js +1092 -0
- package/slides_agent/pptx/scripts/inventory.py +1020 -0
- package/slides_agent/pptx/scripts/rearrange.py +231 -0
- package/slides_agent/pptx/scripts/replace.py +385 -0
- package/slides_agent/pptx/scripts/thumbnail.py +451 -0
- package/slides_agent/slides_agent.py +109 -0
- package/slides_agent/test_deck/_theme.css +92 -0
- package/slides_agent/test_deck/assets/placeholder.svg +11 -0
- package/slides_agent/test_deck/slide_01_title.html +10 -0
- package/slides_agent/test_deck/slide_02_image_split.html +23 -0
- package/slides_agent/test_deck/slide_03_kpi.html +21 -0
- package/slides_agent/tools/ApplyPptxTextReplacements.py +91 -0
- package/slides_agent/tools/BuildPptxFromHtmlSlides.py +221 -0
- package/slides_agent/tools/CheckSlide.py +218 -0
- package/slides_agent/tools/CheckSlideCanvasOverflow.py +221 -0
- package/slides_agent/tools/CreateImageMontage.py +261 -0
- package/slides_agent/tools/CreatePptxThumbnailGrid.py +168 -0
- package/slides_agent/tools/DeleteSlide.py +78 -0
- package/slides_agent/tools/DownloadImage.py +79 -0
- package/slides_agent/tools/EnsureRasterImage.py +157 -0
- package/slides_agent/tools/ExtractPptxTextInventory.py +104 -0
- package/slides_agent/tools/GenerateImage.py +189 -0
- package/slides_agent/tools/ImageSearch.py +127 -0
- package/slides_agent/tools/InsertNewSlides.py +393 -0
- package/slides_agent/tools/ManageTheme.py +112 -0
- package/slides_agent/tools/ModifySlide.py +563 -0
- package/slides_agent/tools/ReadSlide.py +26 -0
- package/slides_agent/tools/RearrangePptxSlidesFromTemplate.py +114 -0
- package/slides_agent/tools/RestoreSnapshot.py +89 -0
- package/slides_agent/tools/SlideScreenshot.py +66 -0
- package/slides_agent/tools/__init__.py +54 -0
- package/slides_agent/tools/__pycache__/ApplyPptxTextReplacements.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/BuildPptxFromHtmlSlides.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/CheckSlide.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/CheckSlideCanvasOverflow.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/CreateImageMontage.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/CreatePptxThumbnailGrid.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/DeleteSlide.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/DownloadImage.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/EnsureRasterImage.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/ExtractPptxTextInventory.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/GenerateImage.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/ImageSearch.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/InsertNewSlides.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/ManageTheme.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/ModifySlide.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/ReadSlide.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/RearrangePptxSlidesFromTemplate.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/RestoreSnapshot.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/SlideScreenshot.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/slide_file_utils.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/slide_html_utils.cpython-312.pyc +0 -0
- package/slides_agent/tools/__pycache__/template_registry.cpython-312.pyc +0 -0
- package/slides_agent/tools/deck_utils.py +31 -0
- package/slides_agent/tools/html2pptx_runner.js +1183 -0
- package/slides_agent/tools/html_writer_instructions.md +149 -0
- package/slides_agent/tools/slide_file_utils.py +108 -0
- package/slides_agent/tools/slide_html_utils.py +354 -0
- package/slides_agent/tools/template_registry.py +55 -0
- package/swarm.py +82 -0
- package/video_generation_agent/__init__.py +1 -0
- package/video_generation_agent/__pycache__/__init__.cpython-312.pyc +0 -0
- package/video_generation_agent/__pycache__/video_generation_agent.cpython-312.pyc +0 -0
- package/video_generation_agent/instructions.md +178 -0
- package/video_generation_agent/tools/AddSubtitles.py +425 -0
- package/video_generation_agent/tools/CombineImages.py +166 -0
- package/video_generation_agent/tools/CombineVideos.py +113 -0
- package/video_generation_agent/tools/EditAudio.py +297 -0
- package/video_generation_agent/tools/EditImage.py +144 -0
- package/video_generation_agent/tools/EditVideoContent.py +369 -0
- package/video_generation_agent/tools/GenerateImage.py +133 -0
- package/video_generation_agent/tools/GenerateVideo.py +556 -0
- package/video_generation_agent/tools/TrimVideo.py +233 -0
- package/video_generation_agent/tools/__init__.py +1 -0
- package/video_generation_agent/tools/__pycache__/AddSubtitles.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/CombineImages.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/CombineVideos.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/EditAudio.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/EditImage.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/EditVideoContent.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/GenerateImage.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/GenerateVideo.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/__pycache__/TrimVideo.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/utils/__init__.py +1 -0
- package/video_generation_agent/tools/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/utils/__pycache__/image_utils.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/utils/__pycache__/video_utils.cpython-312.pyc +0 -0
- package/video_generation_agent/tools/utils/image_utils.py +174 -0
- package/video_generation_agent/tools/utils/video_utils.py +522 -0
- package/video_generation_agent/video_generation_agent.py +26 -0
- package/virtual_assistant/__init__.py +1 -0
- package/virtual_assistant/__pycache__/__init__.cpython-312.pyc +0 -0
- package/virtual_assistant/__pycache__/virtual_assistant.cpython-312.pyc +0 -0
- package/virtual_assistant/instructions.md +206 -0
- package/virtual_assistant/tools/AddLabelToEmail.py +154 -0
- package/virtual_assistant/tools/CheckEventsForDate.py +218 -0
- package/virtual_assistant/tools/CheckUnreadSlackMessages.py +216 -0
- package/virtual_assistant/tools/CreateCalendarEvent.py +261 -0
- package/virtual_assistant/tools/DeleteCalendarEvent.py +137 -0
- package/virtual_assistant/tools/DeleteDraft.py +95 -0
- package/virtual_assistant/tools/DraftEmail.py +239 -0
- package/virtual_assistant/tools/EditFile.py +113 -0
- package/virtual_assistant/tools/FindEmails.py +330 -0
- package/virtual_assistant/tools/GetCurrentTime.py +69 -0
- package/virtual_assistant/tools/GetSlackUserInfo.py +117 -0
- package/virtual_assistant/tools/ListDirectory.py +113 -0
- package/virtual_assistant/tools/ListSkills.py +94 -0
- package/virtual_assistant/tools/ManageLabels.py +295 -0
- package/virtual_assistant/tools/ProductSearch.py +254 -0
- package/virtual_assistant/tools/ReadEmail.py +251 -0
- package/virtual_assistant/tools/ReadFile.py +108 -0
- package/virtual_assistant/tools/ReadSlackMessages.py +191 -0
- package/virtual_assistant/tools/RemoveLabelFromEmail.py +137 -0
- package/virtual_assistant/tools/RescheduleCalendarEvent.py +227 -0
- package/virtual_assistant/tools/ScholarSearch.py +216 -0
- package/virtual_assistant/tools/SendDraft.py +101 -0
- package/virtual_assistant/tools/SendSlackMessage.py +148 -0
- package/virtual_assistant/tools/WriteFile.py +95 -0
- package/virtual_assistant/tools/__init__.py +1 -0
- package/virtual_assistant/tools/__pycache__/AddLabelToEmail.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/CheckEventsForDate.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/CheckUnreadSlackMessages.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/CreateCalendarEvent.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/DeleteCalendarEvent.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/DeleteDraft.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/DraftEmail.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/EditFile.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/FindEmails.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/GetCurrentTime.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/GetSlackUserInfo.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ListDirectory.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ListSkills.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ManageLabels.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ProductSearch.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ReadEmail.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ReadFile.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ReadSlackMessages.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/RemoveLabelFromEmail.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/RescheduleCalendarEvent.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/ScholarSearch.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/SendDraft.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/SendSlackMessage.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/WriteFile.cpython-312.pyc +0 -0
- package/virtual_assistant/tools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/virtual_assistant/virtual_assistant.py +52 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns="http://schemas.openxmlformats.org/drawingml/2006/picture"
|
|
4
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" elementFormDefault="qualified"
|
|
5
|
+
targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/picture">
|
|
6
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
7
|
+
schemaLocation="dml-main.xsd"/>
|
|
8
|
+
<xsd:complexType name="CT_PictureNonVisual">
|
|
9
|
+
<xsd:sequence>
|
|
10
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
11
|
+
<xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1"
|
|
12
|
+
maxOccurs="1"/>
|
|
13
|
+
</xsd:sequence>
|
|
14
|
+
</xsd:complexType>
|
|
15
|
+
<xsd:complexType name="CT_Picture">
|
|
16
|
+
<xsd:sequence minOccurs="1" maxOccurs="1">
|
|
17
|
+
<xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/>
|
|
18
|
+
<xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/>
|
|
19
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
20
|
+
</xsd:sequence>
|
|
21
|
+
</xsd:complexType>
|
|
22
|
+
<xsd:element name="pic" type="CT_Picture"/>
|
|
23
|
+
</xsd:schema>
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
4
|
+
xmlns="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"
|
|
5
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
6
|
+
targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"
|
|
7
|
+
elementFormDefault="qualified">
|
|
8
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
9
|
+
schemaLocation="dml-main.xsd"/>
|
|
10
|
+
<xsd:import schemaLocation="shared-relationshipReference.xsd"
|
|
11
|
+
namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"/>
|
|
12
|
+
<xsd:element name="from" type="CT_Marker"/>
|
|
13
|
+
<xsd:element name="to" type="CT_Marker"/>
|
|
14
|
+
<xsd:complexType name="CT_AnchorClientData">
|
|
15
|
+
<xsd:attribute name="fLocksWithSheet" type="xsd:boolean" use="optional" default="true"/>
|
|
16
|
+
<xsd:attribute name="fPrintsWithSheet" type="xsd:boolean" use="optional" default="true"/>
|
|
17
|
+
</xsd:complexType>
|
|
18
|
+
<xsd:complexType name="CT_ShapeNonVisual">
|
|
19
|
+
<xsd:sequence>
|
|
20
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
21
|
+
<xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1" maxOccurs="1"
|
|
22
|
+
/>
|
|
23
|
+
</xsd:sequence>
|
|
24
|
+
</xsd:complexType>
|
|
25
|
+
<xsd:complexType name="CT_Shape">
|
|
26
|
+
<xsd:sequence>
|
|
27
|
+
<xsd:element name="nvSpPr" type="CT_ShapeNonVisual" minOccurs="1" maxOccurs="1"/>
|
|
28
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
29
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
|
30
|
+
<xsd:element name="txBody" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/>
|
|
31
|
+
</xsd:sequence>
|
|
32
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional"/>
|
|
33
|
+
<xsd:attribute name="textlink" type="xsd:string" use="optional"/>
|
|
34
|
+
<xsd:attribute name="fLocksText" type="xsd:boolean" use="optional" default="true"/>
|
|
35
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
|
36
|
+
</xsd:complexType>
|
|
37
|
+
<xsd:complexType name="CT_ConnectorNonVisual">
|
|
38
|
+
<xsd:sequence>
|
|
39
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
40
|
+
<xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1"
|
|
41
|
+
maxOccurs="1"/>
|
|
42
|
+
</xsd:sequence>
|
|
43
|
+
</xsd:complexType>
|
|
44
|
+
<xsd:complexType name="CT_Connector">
|
|
45
|
+
<xsd:sequence>
|
|
46
|
+
<xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual" minOccurs="1" maxOccurs="1"/>
|
|
47
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
48
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
|
49
|
+
</xsd:sequence>
|
|
50
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional"/>
|
|
51
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
|
52
|
+
</xsd:complexType>
|
|
53
|
+
<xsd:complexType name="CT_PictureNonVisual">
|
|
54
|
+
<xsd:sequence>
|
|
55
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
56
|
+
<xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties" minOccurs="1"
|
|
57
|
+
maxOccurs="1"/>
|
|
58
|
+
</xsd:sequence>
|
|
59
|
+
</xsd:complexType>
|
|
60
|
+
<xsd:complexType name="CT_Picture">
|
|
61
|
+
<xsd:sequence>
|
|
62
|
+
<xsd:element name="nvPicPr" type="CT_PictureNonVisual" minOccurs="1" maxOccurs="1"/>
|
|
63
|
+
<xsd:element name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/>
|
|
64
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
65
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
|
66
|
+
</xsd:sequence>
|
|
67
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional" default=""/>
|
|
68
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
|
69
|
+
</xsd:complexType>
|
|
70
|
+
<xsd:complexType name="CT_GraphicalObjectFrameNonVisual">
|
|
71
|
+
<xsd:sequence>
|
|
72
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
73
|
+
<xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties"
|
|
74
|
+
minOccurs="1" maxOccurs="1"/>
|
|
75
|
+
</xsd:sequence>
|
|
76
|
+
</xsd:complexType>
|
|
77
|
+
<xsd:complexType name="CT_GraphicalObjectFrame">
|
|
78
|
+
<xsd:sequence>
|
|
79
|
+
<xsd:element name="nvGraphicFramePr" type="CT_GraphicalObjectFrameNonVisual" minOccurs="1"
|
|
80
|
+
maxOccurs="1"/>
|
|
81
|
+
<xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/>
|
|
82
|
+
<xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
|
|
83
|
+
</xsd:sequence>
|
|
84
|
+
<xsd:attribute name="macro" type="xsd:string" use="optional"/>
|
|
85
|
+
<xsd:attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
|
|
86
|
+
</xsd:complexType>
|
|
87
|
+
<xsd:complexType name="CT_GroupShapeNonVisual">
|
|
88
|
+
<xsd:sequence>
|
|
89
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
90
|
+
<xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1"
|
|
91
|
+
maxOccurs="1"/>
|
|
92
|
+
</xsd:sequence>
|
|
93
|
+
</xsd:complexType>
|
|
94
|
+
<xsd:complexType name="CT_GroupShape">
|
|
95
|
+
<xsd:sequence>
|
|
96
|
+
<xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual" minOccurs="1" maxOccurs="1"/>
|
|
97
|
+
<xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
98
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
|
99
|
+
<xsd:element name="sp" type="CT_Shape"/>
|
|
100
|
+
<xsd:element name="grpSp" type="CT_GroupShape"/>
|
|
101
|
+
<xsd:element name="graphicFrame" type="CT_GraphicalObjectFrame"/>
|
|
102
|
+
<xsd:element name="cxnSp" type="CT_Connector"/>
|
|
103
|
+
<xsd:element name="pic" type="CT_Picture"/>
|
|
104
|
+
</xsd:choice>
|
|
105
|
+
</xsd:sequence>
|
|
106
|
+
</xsd:complexType>
|
|
107
|
+
<xsd:group name="EG_ObjectChoices">
|
|
108
|
+
<xsd:sequence>
|
|
109
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
|
110
|
+
<xsd:element name="sp" type="CT_Shape"/>
|
|
111
|
+
<xsd:element name="grpSp" type="CT_GroupShape"/>
|
|
112
|
+
<xsd:element name="graphicFrame" type="CT_GraphicalObjectFrame"/>
|
|
113
|
+
<xsd:element name="cxnSp" type="CT_Connector"/>
|
|
114
|
+
<xsd:element name="pic" type="CT_Picture"/>
|
|
115
|
+
<xsd:element name="contentPart" type="CT_Rel"/>
|
|
116
|
+
</xsd:choice>
|
|
117
|
+
</xsd:sequence>
|
|
118
|
+
</xsd:group>
|
|
119
|
+
<xsd:complexType name="CT_Rel">
|
|
120
|
+
<xsd:attribute ref="r:id" use="required"/>
|
|
121
|
+
</xsd:complexType>
|
|
122
|
+
<xsd:simpleType name="ST_ColID">
|
|
123
|
+
<xsd:restriction base="xsd:int">
|
|
124
|
+
<xsd:minInclusive value="0"/>
|
|
125
|
+
</xsd:restriction>
|
|
126
|
+
</xsd:simpleType>
|
|
127
|
+
<xsd:simpleType name="ST_RowID">
|
|
128
|
+
<xsd:restriction base="xsd:int">
|
|
129
|
+
<xsd:minInclusive value="0"/>
|
|
130
|
+
</xsd:restriction>
|
|
131
|
+
</xsd:simpleType>
|
|
132
|
+
<xsd:complexType name="CT_Marker">
|
|
133
|
+
<xsd:sequence>
|
|
134
|
+
<xsd:element name="col" type="ST_ColID"/>
|
|
135
|
+
<xsd:element name="colOff" type="a:ST_Coordinate"/>
|
|
136
|
+
<xsd:element name="row" type="ST_RowID"/>
|
|
137
|
+
<xsd:element name="rowOff" type="a:ST_Coordinate"/>
|
|
138
|
+
</xsd:sequence>
|
|
139
|
+
</xsd:complexType>
|
|
140
|
+
<xsd:simpleType name="ST_EditAs">
|
|
141
|
+
<xsd:restriction base="xsd:token">
|
|
142
|
+
<xsd:enumeration value="twoCell"/>
|
|
143
|
+
<xsd:enumeration value="oneCell"/>
|
|
144
|
+
<xsd:enumeration value="absolute"/>
|
|
145
|
+
</xsd:restriction>
|
|
146
|
+
</xsd:simpleType>
|
|
147
|
+
<xsd:complexType name="CT_TwoCellAnchor">
|
|
148
|
+
<xsd:sequence>
|
|
149
|
+
<xsd:element name="from" type="CT_Marker"/>
|
|
150
|
+
<xsd:element name="to" type="CT_Marker"/>
|
|
151
|
+
<xsd:group ref="EG_ObjectChoices"/>
|
|
152
|
+
<xsd:element name="clientData" type="CT_AnchorClientData" minOccurs="1" maxOccurs="1"/>
|
|
153
|
+
</xsd:sequence>
|
|
154
|
+
<xsd:attribute name="editAs" type="ST_EditAs" use="optional" default="twoCell"/>
|
|
155
|
+
</xsd:complexType>
|
|
156
|
+
<xsd:complexType name="CT_OneCellAnchor">
|
|
157
|
+
<xsd:sequence>
|
|
158
|
+
<xsd:element name="from" type="CT_Marker"/>
|
|
159
|
+
<xsd:element name="ext" type="a:CT_PositiveSize2D"/>
|
|
160
|
+
<xsd:group ref="EG_ObjectChoices"/>
|
|
161
|
+
<xsd:element name="clientData" type="CT_AnchorClientData" minOccurs="1" maxOccurs="1"/>
|
|
162
|
+
</xsd:sequence>
|
|
163
|
+
</xsd:complexType>
|
|
164
|
+
<xsd:complexType name="CT_AbsoluteAnchor">
|
|
165
|
+
<xsd:sequence>
|
|
166
|
+
<xsd:element name="pos" type="a:CT_Point2D"/>
|
|
167
|
+
<xsd:element name="ext" type="a:CT_PositiveSize2D"/>
|
|
168
|
+
<xsd:group ref="EG_ObjectChoices"/>
|
|
169
|
+
<xsd:element name="clientData" type="CT_AnchorClientData" minOccurs="1" maxOccurs="1"/>
|
|
170
|
+
</xsd:sequence>
|
|
171
|
+
</xsd:complexType>
|
|
172
|
+
<xsd:group name="EG_Anchor">
|
|
173
|
+
<xsd:choice>
|
|
174
|
+
<xsd:element name="twoCellAnchor" type="CT_TwoCellAnchor"/>
|
|
175
|
+
<xsd:element name="oneCellAnchor" type="CT_OneCellAnchor"/>
|
|
176
|
+
<xsd:element name="absoluteAnchor" type="CT_AbsoluteAnchor"/>
|
|
177
|
+
</xsd:choice>
|
|
178
|
+
</xsd:group>
|
|
179
|
+
<xsd:complexType name="CT_Drawing">
|
|
180
|
+
<xsd:sequence>
|
|
181
|
+
<xsd:group ref="EG_Anchor" minOccurs="0" maxOccurs="unbounded"/>
|
|
182
|
+
</xsd:sequence>
|
|
183
|
+
</xsd:complexType>
|
|
184
|
+
<xsd:element name="wsDr" type="CT_Drawing"/>
|
|
185
|
+
</xsd:schema>
|
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
4
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
5
|
+
xmlns:dpct="http://schemas.openxmlformats.org/drawingml/2006/picture"
|
|
6
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
7
|
+
xmlns="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
8
|
+
targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
9
|
+
elementFormDefault="qualified">
|
|
10
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
11
|
+
schemaLocation="dml-main.xsd"/>
|
|
12
|
+
<xsd:import schemaLocation="wml.xsd"
|
|
13
|
+
namespace="http://schemas.openxmlformats.org/wordprocessingml/2006/main"/>
|
|
14
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/drawingml/2006/picture"
|
|
15
|
+
schemaLocation="dml-picture.xsd"/>
|
|
16
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
17
|
+
schemaLocation="shared-relationshipReference.xsd"/>
|
|
18
|
+
<xsd:complexType name="CT_EffectExtent">
|
|
19
|
+
<xsd:attribute name="l" type="a:ST_Coordinate" use="required"/>
|
|
20
|
+
<xsd:attribute name="t" type="a:ST_Coordinate" use="required"/>
|
|
21
|
+
<xsd:attribute name="r" type="a:ST_Coordinate" use="required"/>
|
|
22
|
+
<xsd:attribute name="b" type="a:ST_Coordinate" use="required"/>
|
|
23
|
+
</xsd:complexType>
|
|
24
|
+
<xsd:simpleType name="ST_WrapDistance">
|
|
25
|
+
<xsd:restriction base="xsd:unsignedInt"/>
|
|
26
|
+
</xsd:simpleType>
|
|
27
|
+
<xsd:complexType name="CT_Inline">
|
|
28
|
+
<xsd:sequence>
|
|
29
|
+
<xsd:element name="extent" type="a:CT_PositiveSize2D"/>
|
|
30
|
+
<xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/>
|
|
31
|
+
<xsd:element name="docPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
32
|
+
<xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties"
|
|
33
|
+
minOccurs="0" maxOccurs="1"/>
|
|
34
|
+
<xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
|
|
35
|
+
</xsd:sequence>
|
|
36
|
+
<xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/>
|
|
37
|
+
<xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/>
|
|
38
|
+
<xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/>
|
|
39
|
+
<xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/>
|
|
40
|
+
</xsd:complexType>
|
|
41
|
+
<xsd:simpleType name="ST_WrapText">
|
|
42
|
+
<xsd:restriction base="xsd:token">
|
|
43
|
+
<xsd:enumeration value="bothSides"/>
|
|
44
|
+
<xsd:enumeration value="left"/>
|
|
45
|
+
<xsd:enumeration value="right"/>
|
|
46
|
+
<xsd:enumeration value="largest"/>
|
|
47
|
+
</xsd:restriction>
|
|
48
|
+
</xsd:simpleType>
|
|
49
|
+
<xsd:complexType name="CT_WrapPath">
|
|
50
|
+
<xsd:sequence>
|
|
51
|
+
<xsd:element name="start" type="a:CT_Point2D" minOccurs="1" maxOccurs="1"/>
|
|
52
|
+
<xsd:element name="lineTo" type="a:CT_Point2D" minOccurs="2" maxOccurs="unbounded"/>
|
|
53
|
+
</xsd:sequence>
|
|
54
|
+
<xsd:attribute name="edited" type="xsd:boolean" use="optional"/>
|
|
55
|
+
</xsd:complexType>
|
|
56
|
+
<xsd:complexType name="CT_WrapNone"/>
|
|
57
|
+
<xsd:complexType name="CT_WrapSquare">
|
|
58
|
+
<xsd:sequence>
|
|
59
|
+
<xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/>
|
|
60
|
+
</xsd:sequence>
|
|
61
|
+
<xsd:attribute name="wrapText" type="ST_WrapText" use="required"/>
|
|
62
|
+
<xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/>
|
|
63
|
+
<xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/>
|
|
64
|
+
<xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/>
|
|
65
|
+
<xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/>
|
|
66
|
+
</xsd:complexType>
|
|
67
|
+
<xsd:complexType name="CT_WrapTight">
|
|
68
|
+
<xsd:sequence>
|
|
69
|
+
<xsd:element name="wrapPolygon" type="CT_WrapPath" minOccurs="1" maxOccurs="1"/>
|
|
70
|
+
</xsd:sequence>
|
|
71
|
+
<xsd:attribute name="wrapText" type="ST_WrapText" use="required"/>
|
|
72
|
+
<xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/>
|
|
73
|
+
<xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/>
|
|
74
|
+
</xsd:complexType>
|
|
75
|
+
<xsd:complexType name="CT_WrapThrough">
|
|
76
|
+
<xsd:sequence>
|
|
77
|
+
<xsd:element name="wrapPolygon" type="CT_WrapPath" minOccurs="1" maxOccurs="1"/>
|
|
78
|
+
</xsd:sequence>
|
|
79
|
+
<xsd:attribute name="wrapText" type="ST_WrapText" use="required"/>
|
|
80
|
+
<xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/>
|
|
81
|
+
<xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/>
|
|
82
|
+
</xsd:complexType>
|
|
83
|
+
<xsd:complexType name="CT_WrapTopBottom">
|
|
84
|
+
<xsd:sequence>
|
|
85
|
+
<xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/>
|
|
86
|
+
</xsd:sequence>
|
|
87
|
+
<xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/>
|
|
88
|
+
<xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/>
|
|
89
|
+
</xsd:complexType>
|
|
90
|
+
<xsd:group name="EG_WrapType">
|
|
91
|
+
<xsd:sequence>
|
|
92
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
|
93
|
+
<xsd:element name="wrapNone" type="CT_WrapNone" minOccurs="1" maxOccurs="1"/>
|
|
94
|
+
<xsd:element name="wrapSquare" type="CT_WrapSquare" minOccurs="1" maxOccurs="1"/>
|
|
95
|
+
<xsd:element name="wrapTight" type="CT_WrapTight" minOccurs="1" maxOccurs="1"/>
|
|
96
|
+
<xsd:element name="wrapThrough" type="CT_WrapThrough" minOccurs="1" maxOccurs="1"/>
|
|
97
|
+
<xsd:element name="wrapTopAndBottom" type="CT_WrapTopBottom" minOccurs="1" maxOccurs="1"/>
|
|
98
|
+
</xsd:choice>
|
|
99
|
+
</xsd:sequence>
|
|
100
|
+
</xsd:group>
|
|
101
|
+
<xsd:simpleType name="ST_PositionOffset">
|
|
102
|
+
<xsd:restriction base="xsd:int"/>
|
|
103
|
+
</xsd:simpleType>
|
|
104
|
+
<xsd:simpleType name="ST_AlignH">
|
|
105
|
+
<xsd:restriction base="xsd:token">
|
|
106
|
+
<xsd:enumeration value="left"/>
|
|
107
|
+
<xsd:enumeration value="right"/>
|
|
108
|
+
<xsd:enumeration value="center"/>
|
|
109
|
+
<xsd:enumeration value="inside"/>
|
|
110
|
+
<xsd:enumeration value="outside"/>
|
|
111
|
+
</xsd:restriction>
|
|
112
|
+
</xsd:simpleType>
|
|
113
|
+
<xsd:simpleType name="ST_RelFromH">
|
|
114
|
+
<xsd:restriction base="xsd:token">
|
|
115
|
+
<xsd:enumeration value="margin"/>
|
|
116
|
+
<xsd:enumeration value="page"/>
|
|
117
|
+
<xsd:enumeration value="column"/>
|
|
118
|
+
<xsd:enumeration value="character"/>
|
|
119
|
+
<xsd:enumeration value="leftMargin"/>
|
|
120
|
+
<xsd:enumeration value="rightMargin"/>
|
|
121
|
+
<xsd:enumeration value="insideMargin"/>
|
|
122
|
+
<xsd:enumeration value="outsideMargin"/>
|
|
123
|
+
</xsd:restriction>
|
|
124
|
+
</xsd:simpleType>
|
|
125
|
+
<xsd:complexType name="CT_PosH">
|
|
126
|
+
<xsd:sequence>
|
|
127
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
|
128
|
+
<xsd:element name="align" type="ST_AlignH" minOccurs="1" maxOccurs="1"/>
|
|
129
|
+
<xsd:element name="posOffset" type="ST_PositionOffset" minOccurs="1" maxOccurs="1"/>
|
|
130
|
+
</xsd:choice>
|
|
131
|
+
</xsd:sequence>
|
|
132
|
+
<xsd:attribute name="relativeFrom" type="ST_RelFromH" use="required"/>
|
|
133
|
+
</xsd:complexType>
|
|
134
|
+
<xsd:simpleType name="ST_AlignV">
|
|
135
|
+
<xsd:restriction base="xsd:token">
|
|
136
|
+
<xsd:enumeration value="top"/>
|
|
137
|
+
<xsd:enumeration value="bottom"/>
|
|
138
|
+
<xsd:enumeration value="center"/>
|
|
139
|
+
<xsd:enumeration value="inside"/>
|
|
140
|
+
<xsd:enumeration value="outside"/>
|
|
141
|
+
</xsd:restriction>
|
|
142
|
+
</xsd:simpleType>
|
|
143
|
+
<xsd:simpleType name="ST_RelFromV">
|
|
144
|
+
<xsd:restriction base="xsd:token">
|
|
145
|
+
<xsd:enumeration value="margin"/>
|
|
146
|
+
<xsd:enumeration value="page"/>
|
|
147
|
+
<xsd:enumeration value="paragraph"/>
|
|
148
|
+
<xsd:enumeration value="line"/>
|
|
149
|
+
<xsd:enumeration value="topMargin"/>
|
|
150
|
+
<xsd:enumeration value="bottomMargin"/>
|
|
151
|
+
<xsd:enumeration value="insideMargin"/>
|
|
152
|
+
<xsd:enumeration value="outsideMargin"/>
|
|
153
|
+
</xsd:restriction>
|
|
154
|
+
</xsd:simpleType>
|
|
155
|
+
<xsd:complexType name="CT_PosV">
|
|
156
|
+
<xsd:sequence>
|
|
157
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
|
158
|
+
<xsd:element name="align" type="ST_AlignV" minOccurs="1" maxOccurs="1"/>
|
|
159
|
+
<xsd:element name="posOffset" type="ST_PositionOffset" minOccurs="1" maxOccurs="1"/>
|
|
160
|
+
</xsd:choice>
|
|
161
|
+
</xsd:sequence>
|
|
162
|
+
<xsd:attribute name="relativeFrom" type="ST_RelFromV" use="required"/>
|
|
163
|
+
</xsd:complexType>
|
|
164
|
+
<xsd:complexType name="CT_Anchor">
|
|
165
|
+
<xsd:sequence>
|
|
166
|
+
<xsd:element name="simplePos" type="a:CT_Point2D"/>
|
|
167
|
+
<xsd:element name="positionH" type="CT_PosH"/>
|
|
168
|
+
<xsd:element name="positionV" type="CT_PosV"/>
|
|
169
|
+
<xsd:element name="extent" type="a:CT_PositiveSize2D"/>
|
|
170
|
+
<xsd:element name="effectExtent" type="CT_EffectExtent" minOccurs="0"/>
|
|
171
|
+
<xsd:group ref="EG_WrapType"/>
|
|
172
|
+
<xsd:element name="docPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
173
|
+
<xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties"
|
|
174
|
+
minOccurs="0" maxOccurs="1"/>
|
|
175
|
+
<xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
|
|
176
|
+
</xsd:sequence>
|
|
177
|
+
<xsd:attribute name="distT" type="ST_WrapDistance" use="optional"/>
|
|
178
|
+
<xsd:attribute name="distB" type="ST_WrapDistance" use="optional"/>
|
|
179
|
+
<xsd:attribute name="distL" type="ST_WrapDistance" use="optional"/>
|
|
180
|
+
<xsd:attribute name="distR" type="ST_WrapDistance" use="optional"/>
|
|
181
|
+
<xsd:attribute name="simplePos" type="xsd:boolean"/>
|
|
182
|
+
<xsd:attribute name="relativeHeight" type="xsd:unsignedInt" use="required"/>
|
|
183
|
+
<xsd:attribute name="behindDoc" type="xsd:boolean" use="required"/>
|
|
184
|
+
<xsd:attribute name="locked" type="xsd:boolean" use="required"/>
|
|
185
|
+
<xsd:attribute name="layoutInCell" type="xsd:boolean" use="required"/>
|
|
186
|
+
<xsd:attribute name="hidden" type="xsd:boolean" use="optional"/>
|
|
187
|
+
<xsd:attribute name="allowOverlap" type="xsd:boolean" use="required"/>
|
|
188
|
+
</xsd:complexType>
|
|
189
|
+
<xsd:complexType name="CT_TxbxContent">
|
|
190
|
+
<xsd:group ref="w:EG_BlockLevelElts" minOccurs="1" maxOccurs="unbounded"/>
|
|
191
|
+
</xsd:complexType>
|
|
192
|
+
<xsd:complexType name="CT_TextboxInfo">
|
|
193
|
+
<xsd:sequence>
|
|
194
|
+
<xsd:element name="txbxContent" type="CT_TxbxContent" minOccurs="1" maxOccurs="1"/>
|
|
195
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
196
|
+
</xsd:sequence>
|
|
197
|
+
<xsd:attribute name="id" type="xsd:unsignedShort" use="optional" default="0"/>
|
|
198
|
+
</xsd:complexType>
|
|
199
|
+
<xsd:complexType name="CT_LinkedTextboxInformation">
|
|
200
|
+
<xsd:sequence>
|
|
201
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
202
|
+
</xsd:sequence>
|
|
203
|
+
<xsd:attribute name="id" type="xsd:unsignedShort" use="required"/>
|
|
204
|
+
<xsd:attribute name="seq" type="xsd:unsignedShort" use="required"/>
|
|
205
|
+
</xsd:complexType>
|
|
206
|
+
<xsd:complexType name="CT_WordprocessingShape">
|
|
207
|
+
<xsd:sequence minOccurs="1" maxOccurs="1">
|
|
208
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="0" maxOccurs="1"/>
|
|
209
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
|
210
|
+
<xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps" minOccurs="1"
|
|
211
|
+
maxOccurs="1"/>
|
|
212
|
+
<xsd:element name="cNvCnPr" type="a:CT_NonVisualConnectorProperties" minOccurs="1"
|
|
213
|
+
maxOccurs="1"/>
|
|
214
|
+
</xsd:choice>
|
|
215
|
+
<xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
216
|
+
<xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/>
|
|
217
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
218
|
+
<xsd:choice minOccurs="0" maxOccurs="1">
|
|
219
|
+
<xsd:element name="txbx" type="CT_TextboxInfo" minOccurs="1" maxOccurs="1"/>
|
|
220
|
+
<xsd:element name="linkedTxbx" type="CT_LinkedTextboxInformation" minOccurs="1"
|
|
221
|
+
maxOccurs="1"/>
|
|
222
|
+
</xsd:choice>
|
|
223
|
+
<xsd:element name="bodyPr" type="a:CT_TextBodyProperties" minOccurs="1" maxOccurs="1"/>
|
|
224
|
+
</xsd:sequence>
|
|
225
|
+
<xsd:attribute name="normalEastAsianFlow" type="xsd:boolean" use="optional" default="false"/>
|
|
226
|
+
</xsd:complexType>
|
|
227
|
+
<xsd:complexType name="CT_GraphicFrame">
|
|
228
|
+
<xsd:sequence>
|
|
229
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="1" maxOccurs="1"/>
|
|
230
|
+
<xsd:element name="cNvFrPr" type="a:CT_NonVisualGraphicFrameProperties" minOccurs="1"
|
|
231
|
+
maxOccurs="1"/>
|
|
232
|
+
<xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/>
|
|
233
|
+
<xsd:element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
|
|
234
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
235
|
+
</xsd:sequence>
|
|
236
|
+
</xsd:complexType>
|
|
237
|
+
<xsd:complexType name="CT_WordprocessingContentPartNonVisual">
|
|
238
|
+
<xsd:sequence>
|
|
239
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="0" maxOccurs="1"/>
|
|
240
|
+
<xsd:element name="cNvContentPartPr" type="a:CT_NonVisualContentPartProperties" minOccurs="0" maxOccurs="1"/>
|
|
241
|
+
</xsd:sequence>
|
|
242
|
+
</xsd:complexType>
|
|
243
|
+
<xsd:complexType name="CT_WordprocessingContentPart">
|
|
244
|
+
<xsd:sequence>
|
|
245
|
+
<xsd:element name="nvContentPartPr" type="CT_WordprocessingContentPartNonVisual" minOccurs="0" maxOccurs="1"/>
|
|
246
|
+
<xsd:element name="xfrm" type="a:CT_Transform2D" minOccurs="0" maxOccurs="1"/>
|
|
247
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
248
|
+
</xsd:sequence>
|
|
249
|
+
<xsd:attribute name="bwMode" type="a:ST_BlackWhiteMode" use="optional"/>
|
|
250
|
+
<xsd:attribute ref="r:id" use="required"/>
|
|
251
|
+
</xsd:complexType>
|
|
252
|
+
<xsd:complexType name="CT_WordprocessingGroup">
|
|
253
|
+
<xsd:sequence minOccurs="1" maxOccurs="1">
|
|
254
|
+
<xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps" minOccurs="0" maxOccurs="1"/>
|
|
255
|
+
<xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps" minOccurs="1"
|
|
256
|
+
maxOccurs="1"/>
|
|
257
|
+
<xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties" minOccurs="1" maxOccurs="1"/>
|
|
258
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
|
259
|
+
<xsd:element ref="wsp"/>
|
|
260
|
+
<xsd:element name="grpSp" type="CT_WordprocessingGroup"/>
|
|
261
|
+
<xsd:element name="graphicFrame" type="CT_GraphicFrame"/>
|
|
262
|
+
<xsd:element ref="dpct:pic"/>
|
|
263
|
+
<xsd:element name="contentPart" type="CT_WordprocessingContentPart"/>
|
|
264
|
+
</xsd:choice>
|
|
265
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
266
|
+
</xsd:sequence>
|
|
267
|
+
</xsd:complexType>
|
|
268
|
+
<xsd:complexType name="CT_WordprocessingCanvas">
|
|
269
|
+
<xsd:sequence minOccurs="1" maxOccurs="1">
|
|
270
|
+
<xsd:element name="bg" type="a:CT_BackgroundFormatting" minOccurs="0" maxOccurs="1"/>
|
|
271
|
+
<xsd:element name="whole" type="a:CT_WholeE2oFormatting" minOccurs="0" maxOccurs="1"/>
|
|
272
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
|
273
|
+
<xsd:element ref="wsp"/>
|
|
274
|
+
<xsd:element ref="dpct:pic"/>
|
|
275
|
+
<xsd:element name="contentPart" type="CT_WordprocessingContentPart"/>
|
|
276
|
+
<xsd:element ref="wgp"/>
|
|
277
|
+
<xsd:element name="graphicFrame" type="CT_GraphicFrame"/>
|
|
278
|
+
</xsd:choice>
|
|
279
|
+
<xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
|
|
280
|
+
</xsd:sequence>
|
|
281
|
+
</xsd:complexType>
|
|
282
|
+
<xsd:element name="wpc" type="CT_WordprocessingCanvas"/>
|
|
283
|
+
<xsd:element name="wgp" type="CT_WordprocessingGroup"/>
|
|
284
|
+
<xsd:element name="wsp" type="CT_WordprocessingShape"/>
|
|
285
|
+
<xsd:element name="inline" type="CT_Inline"/>
|
|
286
|
+
<xsd:element name="anchor" type="CT_Anchor"/>
|
|
287
|
+
</xsd:schema>
|