dlynch90 commited on
Commit
4199e64
Β·
verified Β·
1 Parent(s): 7ddc4c0

Update README with comprehensive documentation

Browse files
Files changed (1) hide show
  1. README.md +52 -1
README.md CHANGED
@@ -11,4 +11,55 @@ license: mit
11
  short_description: AI Agency Pro - Multi-agent AI system for intelligent automa
12
  ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  short_description: AI Agency Pro - Multi-agent AI system for intelligent automa
12
  ---
13
 
14
+
15
+
16
+ # AI Agency Pro
17
+
18
+ ## Full-Lifecycle Multi-Agent AI System
19
+
20
+ ### From Atom to Universe | Cradle to Grave
21
+
22
+ AI Agency Pro is a production-ready multi-agent AI system built on Hugging Face Transformers with ZeroGPU (Nvidia H200) acceleration.
23
+
24
+ ## Features
25
+
26
+ - **Multi-Agent Architecture**: Summarizer, Classifier, Q&A, and Orchestrated pipelines
27
+ - **GPU Acceleration**: ZeroGPU with Nvidia H200 for fast inference
28
+ - **Full Lifecycle**: From development to production to deprecation
29
+ - **20 Real-World Use Cases**: Healthcare, Finance, Manufacturing, Retail, Legal
30
+
31
+ ## Quick Start
32
+
33
+ ### Using uv (Recommended)
34
+ ```bash
35
+ uv pip install -e ".[all]"
36
+ python app.py
37
+ ```
38
+
39
+ ### Using pip
40
+ ```bash
41
+ pip install -e ".[all]"
42
+ python app.py
43
+ ```
44
+
45
+ ### Using Docker
46
+ ```bash
47
+ docker build -t ai-agency-pro .
48
+ docker run -p 7860:7860 --gpus all ai-agency-pro
49
+ ```
50
+
51
+ ## Project Structure
52
+
53
+ ```
54
+ AI-Agency-Pro/
55
+ β”œβ”€β”€ app.py # Main Gradio application
56
+ β”œβ”€β”€ pyproject.toml # Python project config (uv, pip, pixi)
57
+ β”œβ”€β”€ requirements.txt # Dependencies
58
+ β”œβ”€β”€ Dockerfile # Container deployment
59
+ β”œβ”€β”€ USE_CASES.md # 20 real-world use cases
60
+ └── README.md # This file
61
+ ```
62
+
63
+ ## License
64
+
65
+ MIT License