agentops-cockpit 0.5.0__py3-none-any.whl → 0.9.7__py3-none-any.whl
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.
- agent_ops_cockpit/agent.py +142 -0
- agent_ops_cockpit/cli/main.py +104 -11
- agent_ops_cockpit/eval/load_test.py +15 -10
- agent_ops_cockpit/eval/quality_climber.py +23 -5
- agent_ops_cockpit/eval/red_team.py +37 -10
- agent_ops_cockpit/mcp_server.py +55 -21
- agent_ops_cockpit/ops/arch_review.py +79 -17
- agent_ops_cockpit/ops/cost_optimizer.py +0 -1
- agent_ops_cockpit/ops/evidence_bridge.py +132 -0
- agent_ops_cockpit/ops/frameworks.py +79 -10
- agent_ops_cockpit/ops/mcp_hub.py +1 -2
- agent_ops_cockpit/ops/orchestrator.py +363 -49
- agent_ops_cockpit/ops/pii_scrubber.py +1 -1
- agent_ops_cockpit/ops/policies.json +26 -0
- agent_ops_cockpit/ops/policy_engine.py +85 -0
- agent_ops_cockpit/ops/reliability.py +48 -14
- agent_ops_cockpit/ops/secret_scanner.py +10 -3
- agent_ops_cockpit/ops/ui_auditor.py +52 -11
- agent_ops_cockpit/ops/watcher.py +138 -0
- agent_ops_cockpit/ops/watchlist.json +88 -0
- agent_ops_cockpit/optimizer.py +393 -58
- agent_ops_cockpit/shadow/router.py +7 -8
- agent_ops_cockpit/system_prompt.md +13 -0
- agent_ops_cockpit/tests/golden_set.json +52 -0
- agent_ops_cockpit/tests/test_agent.py +34 -0
- agent_ops_cockpit/tests/test_arch_review.py +45 -0
- agent_ops_cockpit/tests/test_frameworks.py +100 -0
- agent_ops_cockpit/tests/test_optimizer.py +68 -0
- agent_ops_cockpit/tests/test_quality_climber.py +18 -0
- agent_ops_cockpit/tests/test_red_team.py +35 -0
- agent_ops_cockpit/tests/test_secret_scanner.py +24 -0
- agentops_cockpit-0.9.7.dist-info/METADATA +246 -0
- agentops_cockpit-0.9.7.dist-info/RECORD +47 -0
- {agentops_cockpit-0.5.0.dist-info → agentops_cockpit-0.9.7.dist-info}/entry_points.txt +1 -1
- agentops_cockpit-0.5.0.dist-info/METADATA +0 -171
- agentops_cockpit-0.5.0.dist-info/RECORD +0 -32
- {agentops_cockpit-0.5.0.dist-info → agentops_cockpit-0.9.7.dist-info}/WHEEL +0 -0
- {agentops_cockpit-0.5.0.dist-info → agentops_cockpit-0.9.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
agent_ops_cockpit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
agent_ops_cockpit/agent.py,sha256=btXc9IPv8ADRWcLyaZau4VCh9FPQzeCMT3qEbXCbAo4,5182
|
|
3
|
+
agent_ops_cockpit/cost_control.py,sha256=eO8-3ggK1Kr9iA7S_GURXqUIsDHYyqXF_bBkmCJe_tM,2333
|
|
4
|
+
agent_ops_cockpit/mcp_server.py,sha256=LCVHfNWwqZ0wbrM7375DXt7S-jnLClN2d8B1SP9nK_Q,4873
|
|
5
|
+
agent_ops_cockpit/optimizer.py,sha256=QZYh3gXhiLIpQcBt3ALY3ZaGqjOP3eX6VjR2qwpu0t4,24947
|
|
6
|
+
agent_ops_cockpit/system_prompt.md,sha256=VlkU4BYDajUoMypkVBRNyeOWre0cUoEgcQHuyVw7TkA,733
|
|
7
|
+
agent_ops_cockpit/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
agent_ops_cockpit/cache/semantic_cache.py,sha256=HwOO3Mehk8itUpluRKHkF07g25AbM-PC0vGBSfoRyiE,2046
|
|
9
|
+
agent_ops_cockpit/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
agent_ops_cockpit/cli/main.py,sha256=oH3zNV8wHq_fIS29_UjUXb0Ot4Lqd9kDpYWNy5VTIy8,11973
|
|
11
|
+
agent_ops_cockpit/eval/__init__.py,sha256=X68nLTYCIbL3U065CSdodzaCTmL94Rf442gV2DoR4E8,23
|
|
12
|
+
agent_ops_cockpit/eval/load_test.py,sha256=z7sgnYTUls_7mOAhxECwIdsUiXLmxwyG0ucizoy2Kp0,3724
|
|
13
|
+
agent_ops_cockpit/eval/quality_climber.py,sha256=G225BfHDxzxE09jUC2AugvoOMqWNzQsOAk-hQFxNR4s,5635
|
|
14
|
+
agent_ops_cockpit/eval/red_team.py,sha256=65HHyfdnVM88YorTKJDYMljhgm1EgHgN8zp_2OxmYvY,4669
|
|
15
|
+
agent_ops_cockpit/ops/__init__.py,sha256=YBoDCVs7NvNbjK-kBaFckUTcmd5RBafn0tnsoMR6EFs,22
|
|
16
|
+
agent_ops_cockpit/ops/arch_review.py,sha256=RKCaUbOBpU6BP__7l7Y-Xq6k8DcC9uZvy5kFgTrO6ls,9338
|
|
17
|
+
agent_ops_cockpit/ops/cost_optimizer.py,sha256=V7ysXhfEM6ziy_sSc2imUu1LdQBcnNkUEaiwdAAggRA,1430
|
|
18
|
+
agent_ops_cockpit/ops/evidence.py,sha256=LRAW57c-2R4ICiMLtc-JA1Tu5dlfO9-VBSUMc3TCLuo,1051
|
|
19
|
+
agent_ops_cockpit/ops/evidence_bridge.py,sha256=0htW4gtGAQ9S0UoMZJMXXuuNEaJDo_LvtmPT1sJXx4M,5213
|
|
20
|
+
agent_ops_cockpit/ops/frameworks.py,sha256=zd2FhclQ_d5n342ZHA1Sm9UJQ950PN5IX39HK1h5u7c,23316
|
|
21
|
+
agent_ops_cockpit/ops/mcp_hub.py,sha256=3yGi8CEtCZXKG7-OJQyyweFHk2iyF3LaG-v6e9AZ7xI,3162
|
|
22
|
+
agent_ops_cockpit/ops/memory_optimizer.py,sha256=whsKhAuJkEJRa2dxfVeJC_xxwDwKjhx5tnmOmkiKgIQ,1635
|
|
23
|
+
agent_ops_cockpit/ops/orchestrator.py,sha256=ZhIzlksjrZVljmiRFpenJTBJtWfvK4GlgzeOQdEa5X4,20130
|
|
24
|
+
agent_ops_cockpit/ops/pii_scrubber.py,sha256=7YiX7tTI-hLCiDXd4vKonOo0byg7kswRn0aInepzrjU,1518
|
|
25
|
+
agent_ops_cockpit/ops/policies.json,sha256=yhQz9MZbSlb8rNXMzVW3qcTOBNjNXB5XqQjR9p_GqnA,568
|
|
26
|
+
agent_ops_cockpit/ops/policy_engine.py,sha256=t9Vm-u0AqsipY2ZhSd2_x-s9VoDeA3H3MACIuvUr4hg,3743
|
|
27
|
+
agent_ops_cockpit/ops/reliability.py,sha256=514TmW6-PKFlQq7LHSenRnMM5f_CoXBgquZMyGLnKEI,3510
|
|
28
|
+
agent_ops_cockpit/ops/secret_scanner.py,sha256=5NEwHy09iuvneM1XJj7_23LwkJ2_SFJa_ztKisW7oA4,3584
|
|
29
|
+
agent_ops_cockpit/ops/swarm.py,sha256=wptxkdz-ORr4hqmMeQ3tiqw93U4y4XDBtu4xdVToqeQ,2457
|
|
30
|
+
agent_ops_cockpit/ops/ui_auditor.py,sha256=P3IuIr_RAJQrv57pFIEMTGpK7TF-etHIVm993tEgCXo,6023
|
|
31
|
+
agent_ops_cockpit/ops/watcher.py,sha256=krkKs74g4QlUf7_n18QjM5zJ14s151Nr6PXlwjDWW-A,5389
|
|
32
|
+
agent_ops_cockpit/ops/watchlist.json,sha256=hNv0E2U6D3dAn_yXttnyXETdhVJ4rg9mdEsUA-dT2Uc,3115
|
|
33
|
+
agent_ops_cockpit/shadow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
agent_ops_cockpit/shadow/router.py,sha256=XB87GEZKONY3SuXpalKFwuzfDEyXRn9wLZqbsyB-f_o,2684
|
|
35
|
+
agent_ops_cockpit/tests/golden_set.json,sha256=dWpYdINQBnZiuhFSxnJfp_oHivPzTAoQf6nuxiPpzao,3446
|
|
36
|
+
agent_ops_cockpit/tests/test_agent.py,sha256=kk9QT2bywvC8bDy8iqQF8mExHXwYRAqPTCPY1MYH_Xo,1232
|
|
37
|
+
agent_ops_cockpit/tests/test_arch_review.py,sha256=lxxNDkAHl3M9rYCNHXgI56ec0B4x8EOeKfBWzy8hzn4,1517
|
|
38
|
+
agent_ops_cockpit/tests/test_frameworks.py,sha256=8DaiWba6WnAQ6wXj3ZG1nvUxY6y2_PLQOboTk_z4ayc,3075
|
|
39
|
+
agent_ops_cockpit/tests/test_optimizer.py,sha256=UNgAUhYGWejYpUO-L-1V-rgAjmXNftVMsR9JJrfw1Sg,2680
|
|
40
|
+
agent_ops_cockpit/tests/test_quality_climber.py,sha256=pADH9YZiTsK00f-4b3jLjVLrIiUyl-yj87SbzQgm4Lg,679
|
|
41
|
+
agent_ops_cockpit/tests/test_red_team.py,sha256=hTJtZcHz8TfGwtvOjLwjLoW7jwRygeXc7HB2Ir0I46c,1127
|
|
42
|
+
agent_ops_cockpit/tests/test_secret_scanner.py,sha256=QjhngOMBPFBD8AckiBKzQsGARYgCyAji4GL-kkZBZkg,946
|
|
43
|
+
agentops_cockpit-0.9.7.dist-info/METADATA,sha256=gFpXvq1HpkQK3QCMFLzOKa3tJiq4RFPelUVv3-f9170,12228
|
|
44
|
+
agentops_cockpit-0.9.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
45
|
+
agentops_cockpit-0.9.7.dist-info/entry_points.txt,sha256=suNKteVr6LDBA2FXiepe029Ox6f4yZsbQ1Fy7d_zyzc,162
|
|
46
|
+
agentops_cockpit-0.9.7.dist-info/licenses/LICENSE,sha256=XNJEk4bvf88tBnKqHdGBGi10l9yJWv2yLWPJvvVie1c,1071
|
|
47
|
+
agentops_cockpit-0.9.7.dist-info/RECORD,,
|
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: agentops-cockpit
|
|
3
|
-
Version: 0.5.0
|
|
4
|
-
Summary: Production-grade Agent Operations (AgentOps) Platform
|
|
5
|
-
Project-URL: Homepage, https://github.com/enriquekalven/agent-ops-cockpit
|
|
6
|
-
Project-URL: Bug Tracker, https://github.com/enriquekalven/agent-ops-cockpit/issues
|
|
7
|
-
Author-email: Enrique <enrique@example.com>
|
|
8
|
-
License-File: LICENSE
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Requires-Python: >=3.10
|
|
13
|
-
Requires-Dist: gitpython>=3.1.0
|
|
14
|
-
Requires-Dist: mcp>=0.1.0
|
|
15
|
-
Requires-Dist: rich>=13.0.0
|
|
16
|
-
Requires-Dist: typer>=0.9.0
|
|
17
|
-
Description-Content-Type: text/markdown
|
|
18
|
-
|
|
19
|
-
# 🕹️ AgentOps Cockpit
|
|
20
|
-
|
|
21
|
-
<div align="center">
|
|
22
|
-
<img src="https://raw.githubusercontent.com/enriquekalven/agent-cockpit/main/public/og-image.png" alt="AgentOps Cockpit Social Preview" width="100%" />
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
<div align="center">
|
|
26
|
-
<br />
|
|
27
|
-
<a href="https://agent-cockpit.web.app" target="_blank"><strong>🌐 Official Website & Live Demo</strong></a>
|
|
28
|
-
<br /><br />
|
|
29
|
-
<a href="https://deploy.cloud.google.com?repo=https://github.com/enriquekalven/agent-cockpit">
|
|
30
|
-
<img src="https://deploy.cloud.google.com/button.svg" alt="Deploy to Google Cloud" />
|
|
31
|
-
</a>
|
|
32
|
-
<br />
|
|
33
|
-
<br />
|
|
34
|
-
<img src="https://img.shields.io/github/stars/enriquekalven/agent-cockpit?style=for-the-badge&color=ffd700" alt="GitHub Stars" />
|
|
35
|
-
<img src="https://img.shields.io/github/license/enriquekalven/agent-cockpit?style=for-the-badge&color=007bff" alt="License" />
|
|
36
|
-
<img src="https://img.shields.io/badge/Google-Well--Architected-4285F4?style=for-the-badge&logo=google-cloud" alt="Google Well-Architected" />
|
|
37
|
-
<img src="https://img.shields.io/badge/A2A_Standard-Enabled-10b981?style=for-the-badge" alt="A2A Standard" />
|
|
38
|
-
</div>
|
|
39
|
-
|
|
40
|
-
<br />
|
|
41
|
-
|
|
42
|
-
<div align="center">
|
|
43
|
-
<h3>"Infrastructure gives you the pipes. We give you the Intelligence."</h3>
|
|
44
|
-
<p>The developer distribution for building, optimizing, and securing AI agents on Google Cloud.</p>
|
|
45
|
-
</div>
|
|
46
|
-
|
|
47
|
-
---
|
|
48
|
-
|
|
49
|
-
## 📽️ The Mission
|
|
50
|
-
Most AI agent templates stop at a single Python file and an API key. **The AgentOps Cockpit** is for developers moving into production. It provides framework-agnostic governance, safety, and cost guardrails for the entire agentic ecosystem.
|
|
51
|
-
|
|
52
|
-
### Key Pillars:
|
|
53
|
-
- **Governance-as-Code**: Audit your agent against [Google Well-Architected](/docs/google-architecture) best practices.
|
|
54
|
-
- **Agentic Trinity**: Dedicated layers for the Engine (Logic), Face (UX), and Cockpit (Ops).
|
|
55
|
-
- **A2A Connectivity**: Implements the [Agent-to-Agent Transmission Standard](/A2A_GUIDE.md) for secure swarm orchestration.
|
|
56
|
-
|
|
57
|
-
---
|
|
58
|
-
|
|
59
|
-
## 🏗️ The Agentic Trinity
|
|
60
|
-
We divide the complexity of production agents into three focused pillars:
|
|
61
|
-
|
|
62
|
-
- **⚙️ The Engine**: The reasoning core. Built with **ADK**, FastAPI, and Vertex AI.
|
|
63
|
-
- **🎭 The Face**: The user experience. Adaptive UI surfaces and **GenUI** standards via the A2UI spec.
|
|
64
|
-
- **🕹️ The Cockpit**: The operational brain. Cost control, semantic caching, shadow routing, and adversarial audits.
|
|
65
|
-
|
|
66
|
-
---
|
|
67
|
-
|
|
68
|
-
## 🌐 Framework Agnostic Governance
|
|
69
|
-
The Cockpit isn't just for ADK. It provides **Best Practices as Code** across all major agentic frameworks:
|
|
70
|
-
|
|
71
|
-
<div align="center">
|
|
72
|
-
<img src="https://img.shields.io/badge/OpenAI_Agentkit-412991?style=for-the-badge&logo=openai" alt="OpenAI Agentkit" />
|
|
73
|
-
<img src="https://img.shields.io/badge/Anthropic_Claude-D97757?style=for-the-badge&logo=anthropic" alt="Anthropic" />
|
|
74
|
-
<img src="https://img.shields.io/badge/Microsoft_AutoGen-0078d4?style=for-the-badge&logo=microsoft" alt="Microsoft" />
|
|
75
|
-
<img src="https://img.shields.io/badge/AWS_Bedrock-FF9900?style=for-the-badge&logo=amazon-aws" alt="AWS" />
|
|
76
|
-
<img src="https://img.shields.io/badge/CopilotKit.ai-6366f1?style=for-the-badge" alt="CopilotKit" />
|
|
77
|
-
<img src="https://img.shields.io/badge/LangChain-1C3C3C?style=for-the-badge" alt="LangChain" />
|
|
78
|
-
<img src="https://img.shields.io/badge/ADK-4285F4?style=for-the-badge&logo=google-cloud" alt="ADK" />
|
|
79
|
-
</div>
|
|
80
|
-
|
|
81
|
-
<div align="center">
|
|
82
|
-
<img src="https://img.shields.io/badge/Python-3776AB?style=flat-square&logo=python&logoColor=white" alt="Python" />
|
|
83
|
-
<img src="https://img.shields.io/badge/Go-00ADD8?style=flat-square&logo=go&logoColor=white" alt="Go" />
|
|
84
|
-
<img src="https://img.shields.io/badge/NodeJS-339933?style=flat-square&logo=node.js&logoColor=white" alt="NodeJS" />
|
|
85
|
-
<img src="https://img.shields.io/badge/TypeScript-3178C6?style=flat-square&logo=typescript&logoColor=white" alt="TypeScript" />
|
|
86
|
-
<img src="https://img.shields.io/badge/Streamlit-FF4B4B?style=flat-square&logo=streamlit&logoColor=white" alt="Streamlit" />
|
|
87
|
-
<img src="https://img.shields.io/badge/Angular-DD0031?style=flat-square&logo=angular&logoColor=white" alt="Angular" />
|
|
88
|
-
<img src="https://img.shields.io/badge/Lit-324FFF?style=flat-square&logo=lit&logoColor=white" alt="Lit" />
|
|
89
|
-
</div>
|
|
90
|
-
|
|
91
|
-
Whether you are building a swarm in **CrewAI**, a Go-based high-perf engine, or a **Streamlit** dashboard, the Cockpit ensures your agent maps to the **Google Well-Architected Framework**.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
---
|
|
95
|
-
|
|
96
|
-
## 🚀 Key Innovation: The "Intelligence" Layer
|
|
97
|
-
|
|
98
|
-
### 🛡️ Red Team Auditor (Self-Hacking)
|
|
99
|
-
Don't wait for your users to find prompt injections. Use the built-in Adversarial Evaluator to launch self-attacks against your agent, testing for PII leaks, instruction overrides, and safety filter bypasses.
|
|
100
|
-
|
|
101
|
-
### 🧠 Hive Mind (Semantic Caching)
|
|
102
|
-
**Reduce LLM costs by up to 40%.** The Hive Mind checks for semantically similar queries in 10ms, serving cached answers for common questions without calling the LLM.
|
|
103
|
-
|
|
104
|
-
### 🏛️ Arch Review & Framework Detection
|
|
105
|
-
Every agent in the cockpit is graded against a framework-aware checklist. The Cockpit intelligently detects your stack—**Google ADK**, **OpenAI Agentkit**, **Anthropic Claude**, **Microsoft AutoGen/Semantic Kernel**, **AWS Bedrock Agents**, or **CopilotKit**—and runs a tailored audit against corresponding production standards. Use `make arch-review` to verify your **Governance-as-Code**.
|
|
106
|
-
|
|
107
|
-
### 🕹️ MCP Connectivity Hub (Model Context Protocol)
|
|
108
|
-
Stop building one-off tool integrations. The Cockpit provides a unified hub for **MCP Servers**. Connect to Google Search, Slack, or your internal databases via the standardized Model Context Protocol for secure, audited tool execution.
|
|
109
|
-
|
|
110
|
-
### 🧗 Quality Hill Climbing (ADK Evaluation)
|
|
111
|
-
Following **Google ADK Evaluation** best practices, the Cockpit provides an iterative optimization loop. `make quality-baseline` runs your agent against a "Golden Dataset" using **LLM-as-a-Judge** scoring (Response Match & Tool Trajectory), climbing the quality curve until production-grade fidelity is reached.
|
|
112
|
-
|
|
113
|
-
---
|
|
114
|
-
|
|
115
|
-
## ⌨️ Quick Start
|
|
116
|
-
|
|
117
|
-
The Cockpit is available as a first-class CLI on PyPI.
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
# 1. Install the Cockpit globally
|
|
121
|
-
pip install agentops-cockpit
|
|
122
|
-
|
|
123
|
-
# 2. Audit your existing agent design
|
|
124
|
-
agent-ops arch-review
|
|
125
|
-
|
|
126
|
-
# 3. Stress test your endpoint
|
|
127
|
-
agent-ops load-test --requests 100 --concurrency 10
|
|
128
|
-
|
|
129
|
-
# 4. Scaffold a new Well-Architected app
|
|
130
|
-
agent-ops create my-agent --ui a2ui
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
You can also use `uvx` for one-off commands without installation:
|
|
134
|
-
```bash
|
|
135
|
-
uvx agentops-cockpit arch-review
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
---
|
|
139
|
-
|
|
140
|
-
## 📊 Local Development
|
|
141
|
-
The Cockpit provides a unified "Mission Control" to evaluate your agents instantly.
|
|
142
|
-
|
|
143
|
-
```bash
|
|
144
|
-
make audit-all # 🕹️ Run ALL audits and generate a Final Report
|
|
145
|
-
make reliability # 🛡️ Run unit tests and regression suite
|
|
146
|
-
make dev # Start the local Engine + Face stack
|
|
147
|
-
make arch-review # 🏛️ Run the Google Well-Architected design review
|
|
148
|
-
make quality-baseline # 🧗 Run iterative 'Hill Climbing' quality audit
|
|
149
|
-
make audit # 🔍 Run the Interactive Agent Optimizer
|
|
150
|
-
make red-team # Execute a white-hat security audit
|
|
151
|
-
make deploy-prod # 🚀 1-click deploy to Google Cloud
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
---
|
|
155
|
-
|
|
156
|
-
## 🧭 Roadmap
|
|
157
|
-
- [x] **One-Click GitHub Action**: Automated governance audits on every PR.
|
|
158
|
-
- [x] **Multi-Agent Orchestrator**: Standardized A2A Swarm/Coordinator patterns.
|
|
159
|
-
- [ ] **Visual Mission Control**: Real-time cockpit observability dashboard.
|
|
160
|
-
|
|
161
|
-
[View full roadmap →](/ROADMAP.md)
|
|
162
|
-
|
|
163
|
-
---
|
|
164
|
-
|
|
165
|
-
## 🤝 Community
|
|
166
|
-
- **Star this repo** to help us build the future of AgentOps.
|
|
167
|
-
- **Join the Discussion** for patterns on Google Cloud.
|
|
168
|
-
- **Contribute**: Read our [Contributing Guide](/CONTRIBUTING.md).
|
|
169
|
-
|
|
170
|
-
---
|
|
171
|
-
*Reference: [Google Cloud Architecture Center - Agentic AI Overview](https://docs.cloud.google.com/architecture/agentic-ai-overview)*
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
agent_ops_cockpit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
agent_ops_cockpit/cost_control.py,sha256=eO8-3ggK1Kr9iA7S_GURXqUIsDHYyqXF_bBkmCJe_tM,2333
|
|
3
|
-
agent_ops_cockpit/mcp_server.py,sha256=o1IfyfRe2m5GB5yffgXJWMnZE5b4biCb8d1nSZhoXsc,3438
|
|
4
|
-
agent_ops_cockpit/optimizer.py,sha256=V_iYArh4W6nGmiVu5kM72djUPAfQp-cibthrYek7vTg,7232
|
|
5
|
-
agent_ops_cockpit/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
agent_ops_cockpit/cache/semantic_cache.py,sha256=HwOO3Mehk8itUpluRKHkF07g25AbM-PC0vGBSfoRyiE,2046
|
|
7
|
-
agent_ops_cockpit/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
agent_ops_cockpit/cli/main.py,sha256=wqmgrttLIyksoa2YMjlkHAAhmzXZdX-wJJ5fwvv9AL0,7667
|
|
9
|
-
agent_ops_cockpit/eval/__init__.py,sha256=X68nLTYCIbL3U065CSdodzaCTmL94Rf442gV2DoR4E8,23
|
|
10
|
-
agent_ops_cockpit/eval/load_test.py,sha256=H2BeUbMR1X1ANh5EpRdBJsMmRei1H_sfpVBsHZGTCTQ,3430
|
|
11
|
-
agent_ops_cockpit/eval/quality_climber.py,sha256=J5PLQKdZ9u3jWn6EM-w3QJ6kAeiVeTlU6aEcPFL61MM,4993
|
|
12
|
-
agent_ops_cockpit/eval/red_team.py,sha256=EH3zlK0VZWAip2NHLlPxYvk0YRPASrkPlt8s-MieFq8,3596
|
|
13
|
-
agent_ops_cockpit/ops/__init__.py,sha256=YBoDCVs7NvNbjK-kBaFckUTcmd5RBafn0tnsoMR6EFs,22
|
|
14
|
-
agent_ops_cockpit/ops/arch_review.py,sha256=IoEwdOX6EhYHpzyDmam54zKaQOgnJiQsb-CVmfGIMyk,5026
|
|
15
|
-
agent_ops_cockpit/ops/cost_optimizer.py,sha256=fisPPo1hykcDBqljs05OG8xn0MBA_HPg7X8SlNDsx0M,1454
|
|
16
|
-
agent_ops_cockpit/ops/evidence.py,sha256=LRAW57c-2R4ICiMLtc-JA1Tu5dlfO9-VBSUMc3TCLuo,1051
|
|
17
|
-
agent_ops_cockpit/ops/frameworks.py,sha256=gJdisK8JOs79BY5x0yKu75Lu8WesgDcGJgQrjL9AE7U,19054
|
|
18
|
-
agent_ops_cockpit/ops/mcp_hub.py,sha256=Km-gXPNU0ulrFOe7fg9kPvhS3enataLKN8zyOoyzF6k,3184
|
|
19
|
-
agent_ops_cockpit/ops/memory_optimizer.py,sha256=whsKhAuJkEJRa2dxfVeJC_xxwDwKjhx5tnmOmkiKgIQ,1635
|
|
20
|
-
agent_ops_cockpit/ops/orchestrator.py,sha256=WnJ7nv99Ir7lvkWq0EIOEHE2rRzgJv2E4iRi8oDQcPc,3904
|
|
21
|
-
agent_ops_cockpit/ops/pii_scrubber.py,sha256=HBRzzYv97f8VqIx2Gse9o6UVf6QWXSuop-xF-wVhuKU,1524
|
|
22
|
-
agent_ops_cockpit/ops/reliability.py,sha256=Vuh7ZShjZQkXI8CWhL67LeacwEE75JNM6HgRTGLmt7o,2003
|
|
23
|
-
agent_ops_cockpit/ops/secret_scanner.py,sha256=OKojiW8umarrp5ywS4InCTnzzky1hcdBmOfGa-uVIuE,3124
|
|
24
|
-
agent_ops_cockpit/ops/swarm.py,sha256=wptxkdz-ORr4hqmMeQ3tiqw93U4y4XDBtu4xdVToqeQ,2457
|
|
25
|
-
agent_ops_cockpit/ops/ui_auditor.py,sha256=t-p2YMMWy4IpMDnqIuSO9rNRW9IhC4NZgaiquQElrE4,2922
|
|
26
|
-
agent_ops_cockpit/shadow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
agent_ops_cockpit/shadow/router.py,sha256=HRsgrrd3sQeabi58Ub8pOaDL9c7j4WpayeT9D8zPvOo,2725
|
|
28
|
-
agentops_cockpit-0.5.0.dist-info/METADATA,sha256=_UfY-HRBuBJ2C_xjXaIaN_8gTccEsn5IQlHUKLgXMj0,8471
|
|
29
|
-
agentops_cockpit-0.5.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
30
|
-
agentops_cockpit-0.5.0.dist-info/entry_points.txt,sha256=bTIy3QkLRhSTQ803bgiCbxHVUrXcxGB9WOjdNylC0tA,166
|
|
31
|
-
agentops_cockpit-0.5.0.dist-info/licenses/LICENSE,sha256=XNJEk4bvf88tBnKqHdGBGi10l9yJWv2yLWPJvvVie1c,1071
|
|
32
|
-
agentops_cockpit-0.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|