Spaces:
Sleeping
Sleeping
File size: 5,151 Bytes
f1592f3 9b5b26a c19d193 6aae614 ef52b6d 8fe992b 9b5b26a 5df72d6 9b5b26a 3d1237b 9b5b26a 25ea495 8c01ffb 25ea495 8c01ffb 25ea495 ae7a494 e121372 bf6d34c 29ec968 fe328e0 13d500a 8c01ffb 9b5b26a 8c01ffb 8fe992b d2f6a24 8c01ffb 861422e 8fe992b 9b5b26a 8c01ffb |
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 |
import os
from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel,load_tool, tool
import datetime
import requests
import yaml
from tools.final_answer import FinalAnswerTool
import Document
from Gradio_UI import GradioUI
# Below is an example of a tool that does nothing. Amaze us with your creativity !
@tool
def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
#Keep this format for the description / args / args description but feel free to modify the tool
"""A tool that does nothing yet
Args:
arg1: the first argument
arg2: the second argument
"""
return "What magic will you build ?"
@tool
from docx import Document
class UiPathReportTool:
def __init__(self):
pass
def generate_automation_report(self, case_description: str) -> str:
"""A tool that generates a structured Word report for RPA analysts based on a case description."""
# Create a new Word document
doc = Document()
# Report title
doc.add_heading('Automation Suitability & Requirements Report', 0)
# Case Description
doc.add_heading('Case Description', 1)
p = doc.add_paragraph(case_description)
p.style = 'List Bullet' # Example formatting
# Process Assessment Tool
doc.add_heading('Process Assessment Tool (PAT) for Automation', 1)
pat_table = doc.add_table(rows=1, cols=3)
hdr_cells = pat_table.rows[0].cells
hdr_cells[0].text = 'METRIC'
hdr_cells[1].text = 'RATING (1-5)'
hdr_cells[2].text = 'JUSTIFICATION'
# Example assessment
row = pat_table.add_row().cells
row[0].text = 'Frequency of Execution'
row[1].text = '5'
row[2].text = 'Process is executed daily with predictable patterns'
# Requirements Template
doc.add_heading('Business Requirements Template', 1)
doc.add_heading('I. PROJECT SCOPE', 2)
doc.add_paragraph('The goal of this automation is to... ')
# Add requirement sections here (Objectives, Constraints, Compliance, etc.)
# PDD (Process Definition Document)
doc.add_heading('Process Definition Document (PDD)', 1)
doc.add_heading('A. Process Overview', 2)
doc.add_paragraph('This section describes the current manual process.')
# Add PDD sections like Input/Output Data, Process Step Diagram, Stakeholders
# SDD (System Design Document)
doc.add_heading('System Design Document (SDD)', 1)
doc.add_heading('1. Technical Architecture', 2)
doc.add_paragraph('This section outlines the system architecture.')
# Add SDD sections (Integration Points, Error Handling, Validation Rules)
# UAT (User Acceptance Testing)
doc.add_heading('User Acceptance Testing (UAT) Plan', 1)
doc.add_heading('A. Test Cases', 2)
uat_table = doc.add_table(rows=1, cols=4)
hdr_cells = uat_table.rows[0].cells
hdr_cells[0].text = 'TEST ID'
hdr_cells[1].text = 'CASE DESCRIPTION'
hdr_cells[2].text = 'EXPECTED RESULT'
hdr_cells[3].text = 'STATUS'
# Example test case
row = uat_table.add_row().cells
row[0].text = 'UAT-001'
row[1].text = 'Validate data extraction accuracy'
row[2].text = 'All fields correctly populated'
row[3].text = 'PASSED' # Default placeholder
# Analysis Charts
doc.add_heading('Analysis Charts & Key Metrics', 1)
doc.add_paragraph('Include charts like Process Complexity vs. Frequency, ROI Projection.')
doc.add_paragraph('These visualizations can be inserted as Excel graphs or Visio diagrams.')
# Save the document
report_filename = 'Automation_Suitability_Report.docx'
doc.save(report_filename)
return (f"Automation suitability report successfully generated: {report_filename}. "
f"Replace placeholders with project-specific details and add supporting images as needed.")
# Example usage
if __name__ == "__main__":
report_tool = UiPathReportTool()
case_desc = "A manual process where sales orders are entered into ERP from emails, currently taking 30 minutes per order."
result = report_tool.generate_automation_report(case_desc)
print(result)
# If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
model = HfApiModel(
max_tokens=2096,
temperature=0.5,
model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
custom_role_conversions=None,
)
agent = CodeAgent(
model=model,
tools=[final_answer], ## add your tools here (don't remove final answer)
max_steps=6,
verbosity_level=1,
grammar=None,
planning_interval=None,
name=None,
description=None,
prompt_templates=prompt_templates
)
GradioUI(agent).launch() |