opspilot-ai 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/ARCHITECTURE.md +2 -2
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/DEPLOYMENT.md +3 -3
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/PKG-INFO +38 -21
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/README.md +31 -14
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/pyproject.toml +6 -6
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/setup.py +4 -4
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/.env.example +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/LICENSE +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/MANIFEST.in +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/__init__.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/agents/fixer.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/agents/planner.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/agents/remediation.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/agents/verifier.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/cli.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/config.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/__init__.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/deployment_history.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/deps.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/docker.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/env.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/logs.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/production_logs.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/context/project.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/diffs/redis.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/graph/engine.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/graph/nodes.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/memory.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/memory_redis.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/state.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/tools/__init__.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/tools/dep_tools.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/tools/env_tools.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/tools/log_tools.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/tools/pattern_analysis.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/utils/__init__.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/utils/llm.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot/utils/llm_providers.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/opspilot_ai.egg-info/SOURCES.txt +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/setup.cfg +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/tests/__init__.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/tests/test_llm_providers.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/tests/test_pattern_analysis.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/tests/test_production_logs.py +0 -0
- {opspilot_ai-0.1.0 → opspilot_ai-0.1.1}/tests/test_remediation.py +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# OpsPilot Architecture 🏗️
|
|
1
|
+
# OpsPilot-AI Architecture 🏗️
|
|
2
2
|
|
|
3
3
|
> Production-grade multi-agent AI system for autonomous incident analysis and resolution
|
|
4
4
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
## 🎯 System Overview
|
|
16
16
|
|
|
17
|
-
OpsPilot is a **production-grade incident analysis system** that uses specialized AI agents, multi-provider LLM routing, and Redis-based memory to automatically diagnose and resolve runtime issues with enterprise-level reliability.
|
|
17
|
+
OpsPilot-AI is a **production-grade incident analysis system** that uses specialized AI agents, multi-provider LLM routing, and Redis-based memory to automatically diagnose and resolve runtime issues with enterprise-level reliability.
|
|
18
18
|
|
|
19
19
|
### 🎨 Core Design Principles
|
|
20
20
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# OpsPilot Deployment Guide
|
|
1
|
+
# OpsPilot-AI Deployment Guide
|
|
2
2
|
|
|
3
3
|
## 🎯 Deployment Options
|
|
4
4
|
|
|
5
|
-
OpsPilot can be deployed in 3 ways depending on your use case.
|
|
5
|
+
OpsPilot-AI can be deployed in 3 ways depending on your use case.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -12,7 +12,7 @@ OpsPilot can be deployed in 3 ways depending on your use case.
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# Install from PyPI
|
|
15
|
-
pip install opspilot
|
|
15
|
+
pip install opspilot-ai
|
|
16
16
|
|
|
17
17
|
# Install Ollama (required for LLM)
|
|
18
18
|
# macOS/Linux
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: opspilot-ai
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: AI-powered production incident analysis tool using multi-agent systems
|
|
5
|
-
Home-page: https://github.com/choudharikiranv15/
|
|
5
|
+
Home-page: https://github.com/choudharikiranv15/OpsPilot-AI
|
|
6
6
|
Author: Kiran Vijaykumar Choudhari
|
|
7
7
|
Author-email: Kiran Vijaykumar Choudhari <choudharikiranv2003@gmail.com>
|
|
8
8
|
License: MIT
|
|
9
|
-
Project-URL: Homepage, https://github.com/choudharikiranv15/
|
|
10
|
-
Project-URL: Documentation, https://github.com/choudharikiranv15/
|
|
11
|
-
Project-URL: Repository, https://github.com/choudharikiranv15/
|
|
12
|
-
Project-URL: Bug Tracker, https://github.com/choudharikiranv15/
|
|
13
|
-
Project-URL: Changelog, https://github.com/choudharikiranv15/
|
|
9
|
+
Project-URL: Homepage, https://github.com/choudharikiranv15/OpsPilot-AI
|
|
10
|
+
Project-URL: Documentation, https://github.com/choudharikiranv15/OpsPilot-AI#readme
|
|
11
|
+
Project-URL: Repository, https://github.com/choudharikiranv15/OpsPilot-AI
|
|
12
|
+
Project-URL: Bug Tracker, https://github.com/choudharikiranv15/OpsPilot-AI/issues
|
|
13
|
+
Project-URL: Changelog, https://github.com/choudharikiranv15/OpsPilot-AI/releases
|
|
14
14
|
Keywords: ai,mlops,devops,incident-analysis,sre,production-monitoring,agentic-ai,multi-agent,llm,observability,incident-response,automation
|
|
15
15
|
Classifier: Development Status :: 3 - Alpha
|
|
16
16
|
Classifier: Intended Audience :: Developers
|
|
@@ -57,17 +57,21 @@ Dynamic: home-page
|
|
|
57
57
|
Dynamic: license-file
|
|
58
58
|
Dynamic: requires-python
|
|
59
59
|
|
|
60
|
-
# OpsPilot 🤖
|
|
60
|
+
# OpsPilot-AI 🤖
|
|
61
|
+
|
|
62
|
+
[](https://pypi.org/project/opspilot-ai/)
|
|
63
|
+
[](https://www.python.org/downloads/)
|
|
64
|
+
[](https://opensource.org/licenses/MIT)
|
|
61
65
|
|
|
62
66
|
> An intelligent agentic AI CLI tool for automated incident analysis and error resolution
|
|
63
67
|
|
|
64
|
-
OpsPilot is your AI-powered Site Reliability Engineer that analyzes your projects, identifies runtime issues, and suggests safe fixes—all through a simple command-line interface.
|
|
68
|
+
OpsPilot-AI is your AI-powered Site Reliability Engineer that analyzes your projects, identifies runtime issues, and suggests safe fixes—all through a simple command-line interface.
|
|
65
69
|
|
|
66
70
|
---
|
|
67
71
|
|
|
68
|
-
## 🎯 What is OpsPilot?
|
|
72
|
+
## 🎯 What is OpsPilot-AI?
|
|
69
73
|
|
|
70
|
-
OpsPilot uses a **multi-agent AI architecture** to understand your project's context, form hypotheses about runtime issues, and provide evidence-based fix recommendations. Think of it as having an experienced SRE on your team, available 24/7.
|
|
74
|
+
OpsPilot-AI uses a **multi-agent AI architecture** to understand your project's context, form hypotheses about runtime issues, and provide evidence-based fix recommendations. Think of it as having an experienced SRE on your team, available 24/7.
|
|
71
75
|
|
|
72
76
|
### Key Capabilities
|
|
73
77
|
|
|
@@ -96,18 +100,25 @@ OpsPilot uses a **multi-agent AI architecture** to understand your project's con
|
|
|
96
100
|
|
|
97
101
|
### Installation
|
|
98
102
|
|
|
103
|
+
**From PyPI (Recommended):**
|
|
99
104
|
```bash
|
|
100
|
-
# Clone repository
|
|
101
|
-
git clone https://github.com/yourusername/opspilot.git
|
|
102
|
-
cd opspilot
|
|
103
|
-
|
|
104
105
|
# Basic installation
|
|
105
|
-
pip install -
|
|
106
|
+
pip install opspilot-ai
|
|
106
107
|
|
|
107
108
|
# With Redis support (recommended for production)
|
|
108
|
-
pip install -
|
|
109
|
+
pip install opspilot-ai[redis]
|
|
109
110
|
|
|
110
111
|
# With all integrations (Redis + AWS + Kubernetes)
|
|
112
|
+
pip install opspilot-ai[all]
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
**From Source:**
|
|
116
|
+
```bash
|
|
117
|
+
# Clone repository
|
|
118
|
+
git clone https://github.com/choudharikiranv15/OpsPilot-AI.git
|
|
119
|
+
cd opspilot
|
|
120
|
+
|
|
121
|
+
# Install in development mode
|
|
111
122
|
pip install -e ".[all]"
|
|
112
123
|
```
|
|
113
124
|
|
|
@@ -162,7 +173,7 @@ opspilot analyze --verbose --debug
|
|
|
162
173
|
Similar issues detected from past runs:
|
|
163
174
|
- Redis connection issue caused by network or Redis server downtime (confidence 0.8)
|
|
164
175
|
|
|
165
|
-
OpsPilot initialized
|
|
176
|
+
OpsPilot-AI initialized
|
|
166
177
|
Project detected: /your/project
|
|
167
178
|
|
|
168
179
|
Planner Agent reasoning...
|
|
@@ -200,7 +211,7 @@ Enable connection pooling and reasonable timeouts to improve reliability.
|
|
|
200
211
|
|
|
201
212
|
## 🏗️ Architecture
|
|
202
213
|
|
|
203
|
-
OpsPilot implements a **multi-agent agentic architecture** with four specialized agents:
|
|
214
|
+
OpsPilot-AI implements a **multi-agent agentic architecture** with four specialized agents:
|
|
204
215
|
|
|
205
216
|
1. **Planner Agent** - Analyzes project context and forms hypotheses about root causes
|
|
206
217
|
2. **Verifier Agent** - Collects evidence and validates hypotheses with confidence scoring
|
|
@@ -225,7 +236,7 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed design documentation.
|
|
|
225
236
|
## 🧩 How It Works
|
|
226
237
|
|
|
227
238
|
### 1. Context Collection
|
|
228
|
-
OpsPilot gathers information from multiple sources:
|
|
239
|
+
OpsPilot-AI gathers information from multiple sources:
|
|
229
240
|
- **Logs**: Recent error logs and exceptions
|
|
230
241
|
- **Environment**: Environment variables and configurations
|
|
231
242
|
- **Dependencies**: Project dependencies (requirements.txt, package.json)
|
|
@@ -254,7 +265,7 @@ If confidence ≥ 0.6, the Fixer agent:
|
|
|
254
265
|
- **Never auto-applies changes** (dry-run only for safety)
|
|
255
266
|
|
|
256
267
|
### 5. Learning from History
|
|
257
|
-
OpsPilot maintains Redis-based memory of past issues:
|
|
268
|
+
OpsPilot-AI maintains Redis-based memory of past issues:
|
|
258
269
|
- Stores hypotheses, confidence scores, and evidence with automatic TTL
|
|
259
270
|
- User-isolated storage using project path hashing
|
|
260
271
|
- Detects similar issues in future runs with sub-second lookups
|
|
@@ -406,3 +417,9 @@ For questions or feedback, please open an issue on GitHub.
|
|
|
406
417
|
---
|
|
407
418
|
|
|
408
419
|
**Built with ❤️ using agentic AI principles**
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
|
|
423
|
+
## 📦 PyPI
|
|
424
|
+
|
|
425
|
+
This package is available on PyPI: [opspilot-ai](https://pypi.org/project/opspilot-ai/)
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
-
# OpsPilot 🤖
|
|
1
|
+
# OpsPilot-AI 🤖
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/opspilot-ai/)
|
|
4
|
+
[](https://www.python.org/downloads/)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
2
6
|
|
|
3
7
|
> An intelligent agentic AI CLI tool for automated incident analysis and error resolution
|
|
4
8
|
|
|
5
|
-
OpsPilot is your AI-powered Site Reliability Engineer that analyzes your projects, identifies runtime issues, and suggests safe fixes—all through a simple command-line interface.
|
|
9
|
+
OpsPilot-AI is your AI-powered Site Reliability Engineer that analyzes your projects, identifies runtime issues, and suggests safe fixes—all through a simple command-line interface.
|
|
6
10
|
|
|
7
11
|
---
|
|
8
12
|
|
|
9
|
-
## 🎯 What is OpsPilot?
|
|
13
|
+
## 🎯 What is OpsPilot-AI?
|
|
10
14
|
|
|
11
|
-
OpsPilot uses a **multi-agent AI architecture** to understand your project's context, form hypotheses about runtime issues, and provide evidence-based fix recommendations. Think of it as having an experienced SRE on your team, available 24/7.
|
|
15
|
+
OpsPilot-AI uses a **multi-agent AI architecture** to understand your project's context, form hypotheses about runtime issues, and provide evidence-based fix recommendations. Think of it as having an experienced SRE on your team, available 24/7.
|
|
12
16
|
|
|
13
17
|
### Key Capabilities
|
|
14
18
|
|
|
@@ -37,18 +41,25 @@ OpsPilot uses a **multi-agent AI architecture** to understand your project's con
|
|
|
37
41
|
|
|
38
42
|
### Installation
|
|
39
43
|
|
|
44
|
+
**From PyPI (Recommended):**
|
|
40
45
|
```bash
|
|
41
|
-
# Clone repository
|
|
42
|
-
git clone https://github.com/yourusername/opspilot.git
|
|
43
|
-
cd opspilot
|
|
44
|
-
|
|
45
46
|
# Basic installation
|
|
46
|
-
pip install -
|
|
47
|
+
pip install opspilot-ai
|
|
47
48
|
|
|
48
49
|
# With Redis support (recommended for production)
|
|
49
|
-
pip install -
|
|
50
|
+
pip install opspilot-ai[redis]
|
|
50
51
|
|
|
51
52
|
# With all integrations (Redis + AWS + Kubernetes)
|
|
53
|
+
pip install opspilot-ai[all]
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**From Source:**
|
|
57
|
+
```bash
|
|
58
|
+
# Clone repository
|
|
59
|
+
git clone https://github.com/choudharikiranv15/OpsPilot-AI.git
|
|
60
|
+
cd opspilot
|
|
61
|
+
|
|
62
|
+
# Install in development mode
|
|
52
63
|
pip install -e ".[all]"
|
|
53
64
|
```
|
|
54
65
|
|
|
@@ -103,7 +114,7 @@ opspilot analyze --verbose --debug
|
|
|
103
114
|
Similar issues detected from past runs:
|
|
104
115
|
- Redis connection issue caused by network or Redis server downtime (confidence 0.8)
|
|
105
116
|
|
|
106
|
-
OpsPilot initialized
|
|
117
|
+
OpsPilot-AI initialized
|
|
107
118
|
Project detected: /your/project
|
|
108
119
|
|
|
109
120
|
Planner Agent reasoning...
|
|
@@ -141,7 +152,7 @@ Enable connection pooling and reasonable timeouts to improve reliability.
|
|
|
141
152
|
|
|
142
153
|
## 🏗️ Architecture
|
|
143
154
|
|
|
144
|
-
OpsPilot implements a **multi-agent agentic architecture** with four specialized agents:
|
|
155
|
+
OpsPilot-AI implements a **multi-agent agentic architecture** with four specialized agents:
|
|
145
156
|
|
|
146
157
|
1. **Planner Agent** - Analyzes project context and forms hypotheses about root causes
|
|
147
158
|
2. **Verifier Agent** - Collects evidence and validates hypotheses with confidence scoring
|
|
@@ -166,7 +177,7 @@ See [ARCHITECTURE.md](ARCHITECTURE.md) for detailed design documentation.
|
|
|
166
177
|
## 🧩 How It Works
|
|
167
178
|
|
|
168
179
|
### 1. Context Collection
|
|
169
|
-
OpsPilot gathers information from multiple sources:
|
|
180
|
+
OpsPilot-AI gathers information from multiple sources:
|
|
170
181
|
- **Logs**: Recent error logs and exceptions
|
|
171
182
|
- **Environment**: Environment variables and configurations
|
|
172
183
|
- **Dependencies**: Project dependencies (requirements.txt, package.json)
|
|
@@ -195,7 +206,7 @@ If confidence ≥ 0.6, the Fixer agent:
|
|
|
195
206
|
- **Never auto-applies changes** (dry-run only for safety)
|
|
196
207
|
|
|
197
208
|
### 5. Learning from History
|
|
198
|
-
OpsPilot maintains Redis-based memory of past issues:
|
|
209
|
+
OpsPilot-AI maintains Redis-based memory of past issues:
|
|
199
210
|
- Stores hypotheses, confidence scores, and evidence with automatic TTL
|
|
200
211
|
- User-isolated storage using project path hashing
|
|
201
212
|
- Detects similar issues in future runs with sub-second lookups
|
|
@@ -347,3 +358,9 @@ For questions or feedback, please open an issue on GitHub.
|
|
|
347
358
|
---
|
|
348
359
|
|
|
349
360
|
**Built with ❤️ using agentic AI principles**
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## 📦 PyPI
|
|
365
|
+
|
|
366
|
+
This package is available on PyPI: [opspilot-ai](https://pypi.org/project/opspilot-ai/)
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "opspilot-ai"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "AI-powered production incident analysis tool using multi-agent systems"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -77,11 +77,11 @@ all = [
|
|
|
77
77
|
]
|
|
78
78
|
|
|
79
79
|
[project.urls]
|
|
80
|
-
Homepage = "https://github.com/choudharikiranv15/
|
|
81
|
-
Documentation = "https://github.com/choudharikiranv15/
|
|
82
|
-
Repository = "https://github.com/choudharikiranv15/
|
|
83
|
-
"Bug Tracker" = "https://github.com/choudharikiranv15/
|
|
84
|
-
Changelog = "https://github.com/choudharikiranv15/
|
|
80
|
+
Homepage = "https://github.com/choudharikiranv15/OpsPilot-AI"
|
|
81
|
+
Documentation = "https://github.com/choudharikiranv15/OpsPilot-AI#readme"
|
|
82
|
+
Repository = "https://github.com/choudharikiranv15/OpsPilot-AI"
|
|
83
|
+
"Bug Tracker" = "https://github.com/choudharikiranv15/OpsPilot-AI/issues"
|
|
84
|
+
Changelog = "https://github.com/choudharikiranv15/OpsPilot-AI/releases"
|
|
85
85
|
|
|
86
86
|
[project.scripts]
|
|
87
87
|
opspilot = "opspilot.cli:app"
|
|
@@ -13,7 +13,7 @@ setup(
|
|
|
13
13
|
description="AI-powered production incident analysis tool using multi-agent systems",
|
|
14
14
|
long_description=long_description,
|
|
15
15
|
long_description_content_type="text/markdown",
|
|
16
|
-
url="https://github.com/choudharikiranv15/
|
|
16
|
+
url="https://github.com/choudharikiranv15/OpsPilot-AI",
|
|
17
17
|
packages=find_packages(),
|
|
18
18
|
classifiers=[
|
|
19
19
|
"Development Status :: 3 - Alpha",
|
|
@@ -64,8 +64,8 @@ setup(
|
|
|
64
64
|
},
|
|
65
65
|
keywords="ai mlops devops incident-analysis sre production-monitoring agentic-ai",
|
|
66
66
|
project_urls={
|
|
67
|
-
"Bug Reports": "https://github.com/choudharikiranv15/
|
|
68
|
-
"Source": "https://github.com/choudharikiranv15/
|
|
69
|
-
"Documentation": "https://github.com/choudharikiranv15/
|
|
67
|
+
"Bug Reports": "https://github.com/choudharikiranv15/OpsPilot-AI/issues",
|
|
68
|
+
"Source": "https://github.com/choudharikiranv15/OpsPilot-AI",
|
|
69
|
+
"Documentation": "https://github.com/choudharikiranv15/OpsPilot-AI#readme",
|
|
70
70
|
},
|
|
71
71
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|