Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.16 KB

File metadata and controls

36 lines (27 loc) · 2.16 KB

AI-SOAR

LLM Gateway Routing For Shuffler UI Apps PDF Title Page

Applications

Explore the applications and tutorials for AI-SOAR in our document.

For a more interactive learning experience, check out our YouTube Playlist. This playlist features the following videos:

  1. Creating Gemini App in Shuffler Creating Gemini App in Shuffler Thumbnail

  2. Simple Shuffler Gemini Workflow Simple Shuffler Gemini Workflow Thumbnail

  3. Shuffler Phishing Workflow Shuffler Phishing Workflow Thumbnail

  4. Shuffler RAG CVE Workflow Shuffler RAG CVE Workflow Thumbnail

Run AI_SOAR for first time

Setup Instructions: follow these steps to configure and run the application on your local machine.

  1. Change Directory - Navigate to the Shuffler directory, in terminal:
    • cd Shuffler
  2. Configure Environment Variables - Create .env file and copy contents from .env.example. Must assign values to following fields:
    • GATEWAY_URL
  3. Build Backend Docker Image - Construct the backend Docker image, in terminal:
    • docker build -t csl-backend:latest /backend
  4. Build Frontend Docker Image - Construct the frontend Docker image, in terminal:
    • docker build -t csl-frontend:latest /frontend
  5. Launch the Application - Deploy the application using Docker Compose, in terminal:
    • docker compose up -d