opscopilot-core 0.1.0__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.
- opscopilot_core-0.1.0/PKG-INFO +34 -0
- opscopilot_core-0.1.0/README.md +17 -0
- opscopilot_core-0.1.0/opscopilot/__init__.py +0 -0
- opscopilot_core-0.1.0/opscopilot/client.py +0 -0
- opscopilot_core-0.1.0/opscopilot/graph.py +0 -0
- opscopilot_core-0.1.0/opscopilot/rag.py +0 -0
- opscopilot_core-0.1.0/opscopilot/redis_gate.py +0 -0
- opscopilot_core-0.1.0/opscopilot_core.egg-info/PKG-INFO +34 -0
- opscopilot_core-0.1.0/opscopilot_core.egg-info/SOURCES.txt +12 -0
- opscopilot_core-0.1.0/opscopilot_core.egg-info/dependency_links.txt +1 -0
- opscopilot_core-0.1.0/opscopilot_core.egg-info/requires.txt +7 -0
- opscopilot_core-0.1.0/opscopilot_core.egg-info/top_level.txt +1 -0
- opscopilot_core-0.1.0/pyproject.toml +26 -0
- opscopilot_core-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: opscopilot-core
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Autonomous SRE agent SDK for bug triage, RAG code retrieval, and automated remediation.
|
|
5
|
+
Author-email: Raushan Kumar <raushanlpha7@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: langgraph>=0.0.20
|
|
11
|
+
Requires-Dist: openai>=1.0.0
|
|
12
|
+
Requires-Dist: qdrant-client>=1.7.0
|
|
13
|
+
Requires-Dist: redis>=5.0.0
|
|
14
|
+
Requires-Dist: tree-sitter>=0.20.0
|
|
15
|
+
Requires-Dist: tree-sitter-languages>=1.9.0
|
|
16
|
+
Requires-Dist: requests>=2.31.0
|
|
17
|
+
|
|
18
|
+
# 🛠️ opscopilot-core
|
|
19
|
+
|
|
20
|
+
**An Autonomous SRE Agent SDK for bug triage, AST-aware Code RAG, and Human-in-the-Loop (HIL) remediation.**
|
|
21
|
+
|
|
22
|
+
`opscopilot-core` abstracts away the complexity of building production-ready AI developer tools. It provides a stateful LangGraph reasoning engine, structural code chunking, and distributed cache management, allowing you to drop an enterprise-grade AI SRE agent into any custom web server, Slack bot, or CLI tool.
|
|
23
|
+
|
|
24
|
+
## ✨ Key Features
|
|
25
|
+
|
|
26
|
+
* **AST-Aware Code Retrieval (RAG):** Uses Tree-sitter to parse source code into structural Abstract Syntax Trees (AST) prior to Qdrant vectorization, ensuring retrieved functions and classes remain functionally intact.
|
|
27
|
+
* **Agentic Orchestration:** A multi-node LangGraph state machine that analyzes bugs (multimodal), retrieves context, and drafts code patches.
|
|
28
|
+
* **Human-in-the-Loop (HIL) Gate:** Safely pauses autonomous execution and caches the `AgentState` via Redis TTLs, preventing AI from pushing to production without human engineering approval.
|
|
29
|
+
* **Automated Ticketing:** Native integration with the GitHub API to automatically generate triaged bug reports and proposed fix patches.
|
|
30
|
+
|
|
31
|
+
## 📦 Installation
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install opscopilot-core
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# 🛠️ opscopilot-core
|
|
2
|
+
|
|
3
|
+
**An Autonomous SRE Agent SDK for bug triage, AST-aware Code RAG, and Human-in-the-Loop (HIL) remediation.**
|
|
4
|
+
|
|
5
|
+
`opscopilot-core` abstracts away the complexity of building production-ready AI developer tools. It provides a stateful LangGraph reasoning engine, structural code chunking, and distributed cache management, allowing you to drop an enterprise-grade AI SRE agent into any custom web server, Slack bot, or CLI tool.
|
|
6
|
+
|
|
7
|
+
## ✨ Key Features
|
|
8
|
+
|
|
9
|
+
* **AST-Aware Code Retrieval (RAG):** Uses Tree-sitter to parse source code into structural Abstract Syntax Trees (AST) prior to Qdrant vectorization, ensuring retrieved functions and classes remain functionally intact.
|
|
10
|
+
* **Agentic Orchestration:** A multi-node LangGraph state machine that analyzes bugs (multimodal), retrieves context, and drafts code patches.
|
|
11
|
+
* **Human-in-the-Loop (HIL) Gate:** Safely pauses autonomous execution and caches the `AgentState` via Redis TTLs, preventing AI from pushing to production without human engineering approval.
|
|
12
|
+
* **Automated Ticketing:** Native integration with the GitHub API to automatically generate triaged bug reports and proposed fix patches.
|
|
13
|
+
|
|
14
|
+
## 📦 Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install opscopilot-core
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: opscopilot-core
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Autonomous SRE agent SDK for bug triage, RAG code retrieval, and automated remediation.
|
|
5
|
+
Author-email: Raushan Kumar <raushanlpha7@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: langgraph>=0.0.20
|
|
11
|
+
Requires-Dist: openai>=1.0.0
|
|
12
|
+
Requires-Dist: qdrant-client>=1.7.0
|
|
13
|
+
Requires-Dist: redis>=5.0.0
|
|
14
|
+
Requires-Dist: tree-sitter>=0.20.0
|
|
15
|
+
Requires-Dist: tree-sitter-languages>=1.9.0
|
|
16
|
+
Requires-Dist: requests>=2.31.0
|
|
17
|
+
|
|
18
|
+
# 🛠️ opscopilot-core
|
|
19
|
+
|
|
20
|
+
**An Autonomous SRE Agent SDK for bug triage, AST-aware Code RAG, and Human-in-the-Loop (HIL) remediation.**
|
|
21
|
+
|
|
22
|
+
`opscopilot-core` abstracts away the complexity of building production-ready AI developer tools. It provides a stateful LangGraph reasoning engine, structural code chunking, and distributed cache management, allowing you to drop an enterprise-grade AI SRE agent into any custom web server, Slack bot, or CLI tool.
|
|
23
|
+
|
|
24
|
+
## ✨ Key Features
|
|
25
|
+
|
|
26
|
+
* **AST-Aware Code Retrieval (RAG):** Uses Tree-sitter to parse source code into structural Abstract Syntax Trees (AST) prior to Qdrant vectorization, ensuring retrieved functions and classes remain functionally intact.
|
|
27
|
+
* **Agentic Orchestration:** A multi-node LangGraph state machine that analyzes bugs (multimodal), retrieves context, and drafts code patches.
|
|
28
|
+
* **Human-in-the-Loop (HIL) Gate:** Safely pauses autonomous execution and caches the `AgentState` via Redis TTLs, preventing AI from pushing to production without human engineering approval.
|
|
29
|
+
* **Automated Ticketing:** Native integration with the GitHub API to automatically generate triaged bug reports and proposed fix patches.
|
|
30
|
+
|
|
31
|
+
## 📦 Installation
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install opscopilot-core
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
opscopilot/__init__.py
|
|
4
|
+
opscopilot/client.py
|
|
5
|
+
opscopilot/graph.py
|
|
6
|
+
opscopilot/rag.py
|
|
7
|
+
opscopilot/redis_gate.py
|
|
8
|
+
opscopilot_core.egg-info/PKG-INFO
|
|
9
|
+
opscopilot_core.egg-info/SOURCES.txt
|
|
10
|
+
opscopilot_core.egg-info/dependency_links.txt
|
|
11
|
+
opscopilot_core.egg-info/requires.txt
|
|
12
|
+
opscopilot_core.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
opscopilot
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "opscopilot-core"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Raushan Kumar", email="raushanlpha7@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "Autonomous SRE agent SDK for bug triage, RAG code retrieval, and automated remediation."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.10"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
"langgraph>=0.0.20",
|
|
20
|
+
"openai>=1.0.0",
|
|
21
|
+
"qdrant-client>=1.7.0",
|
|
22
|
+
"redis>=5.0.0",
|
|
23
|
+
"tree-sitter>=0.20.0",
|
|
24
|
+
"tree-sitter-languages>=1.9.0",
|
|
25
|
+
"requests>=2.31.0"
|
|
26
|
+
]
|