Metadata-Version: 2.1
Name: genai4sa
Version: 0.1.5
Summary: A software architecture generation tool using LLMs
Author-email: Hashim Khan <hashimahmedkhan2002@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: langchain==0.3.25
Requires-Dist: nbconvert
Requires-Dist: python-dotenv==1.0.0
Requires-Dist: langchain-google-genai
Requires-Dist: langchain-groq==0.3.2
Requires-Dist: langchain-openai==0.3.16
Requires-Dist: uvicorn==0.25.0
Requires-Dist: customtkinter==5.2.2
Requires-Dist: plantuml
Requires-Dist: reportlab==4.4.0
Requires-Dist: networkx
Requires-Dist: numpy
Requires-Dist: scipy

# GenAI-for-SA
 A tool to generate software design document using LLM models and different prompting techniques.

![alt text](<Screenshot 2025-08-17 183501.png>)

# How to use the tool:
        1. Enter the API Key for OpenAI, GoogleAI or GroqAI depending on the model you want to use.
        2. Select the Model to use.
        3. Select the Prompting technique to use.
        4. Input the textual description of the system. 
        5. Press Generate and wait for the PDF to open. The PDF will be saved in the current working directory from where you ran the tool.
        6. If you want to continue the conversation and iterate over the LLM respond, set Continue Conversation to Yes, and enter the prompt in Textbox and Press Generate.

# How to download the library and run the tool:
        1. Install with this command (enter in command prompt/terminal):
            pip install genai4sa
        2. Run with this command:
            genai4sa

# Steps to run locally to Contribute to the Project
        1. Clone the repository at https://github.com/yorku-ease/devbot_SA
        2. Open terminal and go to where repo was cloned.
                cd <repo name>
        3. Run this command there
                pip install -e .
        4. Then enter this command to run the program
                genai4sa
