@_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,195 @@
|
|
|
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/officeDocument/2006/docPropsVTypes"
|
|
4
|
+
xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
5
|
+
targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"
|
|
6
|
+
blockDefault="#all" elementFormDefault="qualified">
|
|
7
|
+
<xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes"
|
|
8
|
+
schemaLocation="shared-commonSimpleTypes.xsd"/>
|
|
9
|
+
<xsd:simpleType name="ST_VectorBaseType">
|
|
10
|
+
<xsd:restriction base="xsd:string">
|
|
11
|
+
<xsd:enumeration value="variant"/>
|
|
12
|
+
<xsd:enumeration value="i1"/>
|
|
13
|
+
<xsd:enumeration value="i2"/>
|
|
14
|
+
<xsd:enumeration value="i4"/>
|
|
15
|
+
<xsd:enumeration value="i8"/>
|
|
16
|
+
<xsd:enumeration value="ui1"/>
|
|
17
|
+
<xsd:enumeration value="ui2"/>
|
|
18
|
+
<xsd:enumeration value="ui4"/>
|
|
19
|
+
<xsd:enumeration value="ui8"/>
|
|
20
|
+
<xsd:enumeration value="r4"/>
|
|
21
|
+
<xsd:enumeration value="r8"/>
|
|
22
|
+
<xsd:enumeration value="lpstr"/>
|
|
23
|
+
<xsd:enumeration value="lpwstr"/>
|
|
24
|
+
<xsd:enumeration value="bstr"/>
|
|
25
|
+
<xsd:enumeration value="date"/>
|
|
26
|
+
<xsd:enumeration value="filetime"/>
|
|
27
|
+
<xsd:enumeration value="bool"/>
|
|
28
|
+
<xsd:enumeration value="cy"/>
|
|
29
|
+
<xsd:enumeration value="error"/>
|
|
30
|
+
<xsd:enumeration value="clsid"/>
|
|
31
|
+
</xsd:restriction>
|
|
32
|
+
</xsd:simpleType>
|
|
33
|
+
<xsd:simpleType name="ST_ArrayBaseType">
|
|
34
|
+
<xsd:restriction base="xsd:string">
|
|
35
|
+
<xsd:enumeration value="variant"/>
|
|
36
|
+
<xsd:enumeration value="i1"/>
|
|
37
|
+
<xsd:enumeration value="i2"/>
|
|
38
|
+
<xsd:enumeration value="i4"/>
|
|
39
|
+
<xsd:enumeration value="int"/>
|
|
40
|
+
<xsd:enumeration value="ui1"/>
|
|
41
|
+
<xsd:enumeration value="ui2"/>
|
|
42
|
+
<xsd:enumeration value="ui4"/>
|
|
43
|
+
<xsd:enumeration value="uint"/>
|
|
44
|
+
<xsd:enumeration value="r4"/>
|
|
45
|
+
<xsd:enumeration value="r8"/>
|
|
46
|
+
<xsd:enumeration value="decimal"/>
|
|
47
|
+
<xsd:enumeration value="bstr"/>
|
|
48
|
+
<xsd:enumeration value="date"/>
|
|
49
|
+
<xsd:enumeration value="bool"/>
|
|
50
|
+
<xsd:enumeration value="cy"/>
|
|
51
|
+
<xsd:enumeration value="error"/>
|
|
52
|
+
</xsd:restriction>
|
|
53
|
+
</xsd:simpleType>
|
|
54
|
+
<xsd:simpleType name="ST_Cy">
|
|
55
|
+
<xsd:restriction base="xsd:string">
|
|
56
|
+
<xsd:pattern value="\s*[0-9]*\.[0-9]{4}\s*"/>
|
|
57
|
+
</xsd:restriction>
|
|
58
|
+
</xsd:simpleType>
|
|
59
|
+
<xsd:simpleType name="ST_Error">
|
|
60
|
+
<xsd:restriction base="xsd:string">
|
|
61
|
+
<xsd:pattern value="\s*0x[0-9A-Za-z]{8}\s*"/>
|
|
62
|
+
</xsd:restriction>
|
|
63
|
+
</xsd:simpleType>
|
|
64
|
+
<xsd:complexType name="CT_Empty"/>
|
|
65
|
+
<xsd:complexType name="CT_Null"/>
|
|
66
|
+
<xsd:complexType name="CT_Vector">
|
|
67
|
+
<xsd:choice minOccurs="1" maxOccurs="unbounded">
|
|
68
|
+
<xsd:element ref="variant"/>
|
|
69
|
+
<xsd:element ref="i1"/>
|
|
70
|
+
<xsd:element ref="i2"/>
|
|
71
|
+
<xsd:element ref="i4"/>
|
|
72
|
+
<xsd:element ref="i8"/>
|
|
73
|
+
<xsd:element ref="ui1"/>
|
|
74
|
+
<xsd:element ref="ui2"/>
|
|
75
|
+
<xsd:element ref="ui4"/>
|
|
76
|
+
<xsd:element ref="ui8"/>
|
|
77
|
+
<xsd:element ref="r4"/>
|
|
78
|
+
<xsd:element ref="r8"/>
|
|
79
|
+
<xsd:element ref="lpstr"/>
|
|
80
|
+
<xsd:element ref="lpwstr"/>
|
|
81
|
+
<xsd:element ref="bstr"/>
|
|
82
|
+
<xsd:element ref="date"/>
|
|
83
|
+
<xsd:element ref="filetime"/>
|
|
84
|
+
<xsd:element ref="bool"/>
|
|
85
|
+
<xsd:element ref="cy"/>
|
|
86
|
+
<xsd:element ref="error"/>
|
|
87
|
+
<xsd:element ref="clsid"/>
|
|
88
|
+
</xsd:choice>
|
|
89
|
+
<xsd:attribute name="baseType" type="ST_VectorBaseType" use="required"/>
|
|
90
|
+
<xsd:attribute name="size" type="xsd:unsignedInt" use="required"/>
|
|
91
|
+
</xsd:complexType>
|
|
92
|
+
<xsd:complexType name="CT_Array">
|
|
93
|
+
<xsd:choice minOccurs="1" maxOccurs="unbounded">
|
|
94
|
+
<xsd:element ref="variant"/>
|
|
95
|
+
<xsd:element ref="i1"/>
|
|
96
|
+
<xsd:element ref="i2"/>
|
|
97
|
+
<xsd:element ref="i4"/>
|
|
98
|
+
<xsd:element ref="int"/>
|
|
99
|
+
<xsd:element ref="ui1"/>
|
|
100
|
+
<xsd:element ref="ui2"/>
|
|
101
|
+
<xsd:element ref="ui4"/>
|
|
102
|
+
<xsd:element ref="uint"/>
|
|
103
|
+
<xsd:element ref="r4"/>
|
|
104
|
+
<xsd:element ref="r8"/>
|
|
105
|
+
<xsd:element ref="decimal"/>
|
|
106
|
+
<xsd:element ref="bstr"/>
|
|
107
|
+
<xsd:element ref="date"/>
|
|
108
|
+
<xsd:element ref="bool"/>
|
|
109
|
+
<xsd:element ref="error"/>
|
|
110
|
+
<xsd:element ref="cy"/>
|
|
111
|
+
</xsd:choice>
|
|
112
|
+
<xsd:attribute name="lBounds" type="xsd:int" use="required"/>
|
|
113
|
+
<xsd:attribute name="uBounds" type="xsd:int" use="required"/>
|
|
114
|
+
<xsd:attribute name="baseType" type="ST_ArrayBaseType" use="required"/>
|
|
115
|
+
</xsd:complexType>
|
|
116
|
+
<xsd:complexType name="CT_Variant">
|
|
117
|
+
<xsd:choice minOccurs="1" maxOccurs="1">
|
|
118
|
+
<xsd:element ref="variant"/>
|
|
119
|
+
<xsd:element ref="vector"/>
|
|
120
|
+
<xsd:element ref="array"/>
|
|
121
|
+
<xsd:element ref="blob"/>
|
|
122
|
+
<xsd:element ref="oblob"/>
|
|
123
|
+
<xsd:element ref="empty"/>
|
|
124
|
+
<xsd:element ref="null"/>
|
|
125
|
+
<xsd:element ref="i1"/>
|
|
126
|
+
<xsd:element ref="i2"/>
|
|
127
|
+
<xsd:element ref="i4"/>
|
|
128
|
+
<xsd:element ref="i8"/>
|
|
129
|
+
<xsd:element ref="int"/>
|
|
130
|
+
<xsd:element ref="ui1"/>
|
|
131
|
+
<xsd:element ref="ui2"/>
|
|
132
|
+
<xsd:element ref="ui4"/>
|
|
133
|
+
<xsd:element ref="ui8"/>
|
|
134
|
+
<xsd:element ref="uint"/>
|
|
135
|
+
<xsd:element ref="r4"/>
|
|
136
|
+
<xsd:element ref="r8"/>
|
|
137
|
+
<xsd:element ref="decimal"/>
|
|
138
|
+
<xsd:element ref="lpstr"/>
|
|
139
|
+
<xsd:element ref="lpwstr"/>
|
|
140
|
+
<xsd:element ref="bstr"/>
|
|
141
|
+
<xsd:element ref="date"/>
|
|
142
|
+
<xsd:element ref="filetime"/>
|
|
143
|
+
<xsd:element ref="bool"/>
|
|
144
|
+
<xsd:element ref="cy"/>
|
|
145
|
+
<xsd:element ref="error"/>
|
|
146
|
+
<xsd:element ref="stream"/>
|
|
147
|
+
<xsd:element ref="ostream"/>
|
|
148
|
+
<xsd:element ref="storage"/>
|
|
149
|
+
<xsd:element ref="ostorage"/>
|
|
150
|
+
<xsd:element ref="vstream"/>
|
|
151
|
+
<xsd:element ref="clsid"/>
|
|
152
|
+
</xsd:choice>
|
|
153
|
+
</xsd:complexType>
|
|
154
|
+
<xsd:complexType name="CT_Vstream">
|
|
155
|
+
<xsd:simpleContent>
|
|
156
|
+
<xsd:extension base="xsd:base64Binary">
|
|
157
|
+
<xsd:attribute name="version" type="s:ST_Guid"/>
|
|
158
|
+
</xsd:extension>
|
|
159
|
+
</xsd:simpleContent>
|
|
160
|
+
</xsd:complexType>
|
|
161
|
+
<xsd:element name="variant" type="CT_Variant"/>
|
|
162
|
+
<xsd:element name="vector" type="CT_Vector"/>
|
|
163
|
+
<xsd:element name="array" type="CT_Array"/>
|
|
164
|
+
<xsd:element name="blob" type="xsd:base64Binary"/>
|
|
165
|
+
<xsd:element name="oblob" type="xsd:base64Binary"/>
|
|
166
|
+
<xsd:element name="empty" type="CT_Empty"/>
|
|
167
|
+
<xsd:element name="null" type="CT_Null"/>
|
|
168
|
+
<xsd:element name="i1" type="xsd:byte"/>
|
|
169
|
+
<xsd:element name="i2" type="xsd:short"/>
|
|
170
|
+
<xsd:element name="i4" type="xsd:int"/>
|
|
171
|
+
<xsd:element name="i8" type="xsd:long"/>
|
|
172
|
+
<xsd:element name="int" type="xsd:int"/>
|
|
173
|
+
<xsd:element name="ui1" type="xsd:unsignedByte"/>
|
|
174
|
+
<xsd:element name="ui2" type="xsd:unsignedShort"/>
|
|
175
|
+
<xsd:element name="ui4" type="xsd:unsignedInt"/>
|
|
176
|
+
<xsd:element name="ui8" type="xsd:unsignedLong"/>
|
|
177
|
+
<xsd:element name="uint" type="xsd:unsignedInt"/>
|
|
178
|
+
<xsd:element name="r4" type="xsd:float"/>
|
|
179
|
+
<xsd:element name="r8" type="xsd:double"/>
|
|
180
|
+
<xsd:element name="decimal" type="xsd:decimal"/>
|
|
181
|
+
<xsd:element name="lpstr" type="xsd:string"/>
|
|
182
|
+
<xsd:element name="lpwstr" type="xsd:string"/>
|
|
183
|
+
<xsd:element name="bstr" type="xsd:string"/>
|
|
184
|
+
<xsd:element name="date" type="xsd:dateTime"/>
|
|
185
|
+
<xsd:element name="filetime" type="xsd:dateTime"/>
|
|
186
|
+
<xsd:element name="bool" type="xsd:boolean"/>
|
|
187
|
+
<xsd:element name="cy" type="ST_Cy"/>
|
|
188
|
+
<xsd:element name="error" type="ST_Error"/>
|
|
189
|
+
<xsd:element name="stream" type="xsd:base64Binary"/>
|
|
190
|
+
<xsd:element name="ostream" type="xsd:base64Binary"/>
|
|
191
|
+
<xsd:element name="storage" type="xsd:base64Binary"/>
|
|
192
|
+
<xsd:element name="ostorage" type="xsd:base64Binary"/>
|
|
193
|
+
<xsd:element name="vstream" type="CT_Vstream"/>
|
|
194
|
+
<xsd:element name="clsid" type="s:ST_Guid"/>
|
|
195
|
+
</xsd:schema>
|