-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
60 lines (50 loc) · 1.38 KB
/
Copy path__init__.py
File metadata and controls
60 lines (50 loc) · 1.38 KB
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
"""
GreenWise AI - Sustainable Operations Orchestrator
An AI-powered multi-agent system for optimizing enterprise sustainability.
Uses Google Gemini LLM and specialized agents to:
- Monitor operational data
- Detect inefficiencies
- Generate actionable recommendations
- Track sustainability improvements
Main Components:
- Multi-agent orchestration (Data Scout + EcoPlanner)
- LLM-powered reasoning with tool integration
- Persistent memory and learning
- Interactive Gradio dashboard
Usage:
from greenwise_ai import GreenWiseApp
app = GreenWiseApp()
app.launch()
Or run directly:
python app.py
"""
from .config import GreenWiseConfig
from .app import GreenWiseApp
# Import key components for easy access
from .agents import (
DataScoutAgent,
EcoPlannerAgent,
MultiAgentOrchestrator,
)
from .llm import GeminiClient
from .memory import MemoryBank
from .tools import get_all_tools
__version__ = '1.0.0'
__author__ = 'GreenWise AI Team'
__license__ = 'MIT'
__all__ = [
# Main app
'GreenWiseApp',
'GreenWiseConfig',
# Core components
'DataScoutAgent',
'EcoPlannerAgent',
'MultiAgentOrchestrator',
'GeminiClient',
'MemoryBank',
'get_all_tools',
]
# Package metadata
__package_name__ = 'greenwise-ai'
__description__ = 'AI-powered sustainable operations orchestrator'
__url__ = 'https://huggingface.co/spaces/YOUR_USERNAME/greenwise-ai'