aegra 0.1.0__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.
aegra/__init__.py ADDED
File without changes
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.4
2
+ Name: aegra
3
+ Version: 0.1.0
4
+ Summary: Aegra - Self-hosted Agent Protocol server (meta-package)
5
+ Project-URL: Homepage, https://github.com/ibbybuilds/aegra
6
+ Project-URL: Documentation, https://github.com/ibbybuilds/aegra#readme
7
+ Project-URL: Repository, https://github.com/ibbybuilds/aegra
8
+ Project-URL: Issues, https://github.com/ibbybuilds/aegra/issues
9
+ Author-email: Muhammad Ibrahim <mibrahim37612@gmail.com>
10
+ License-Expression: Apache-2.0
11
+ Keywords: agent-protocol,agents,fastapi,langgraph,llm,self-hosted
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Framework :: FastAPI
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: Apache Software License
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Requires-Python: >=3.11
21
+ Requires-Dist: aegra-cli>=0.1.0
22
+ Description-Content-Type: text/markdown
23
+
24
+ # aegra
25
+
26
+ **Aegra** is an open-source, self-hosted alternative to LangGraph Platform.
27
+
28
+ This is a meta-package that installs the complete Aegra stack:
29
+ - **aegra-cli**: Command-line interface for managing deployments
30
+ - **aegra-api**: Core API server implementing the Agent Protocol
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install aegra
36
+ ```
37
+
38
+ ## Quick Start
39
+
40
+ ```bash
41
+ # Initialize a new project with Docker support
42
+ aegra init --docker
43
+
44
+ # Start PostgreSQL
45
+ aegra up postgres
46
+
47
+ # Apply database migrations
48
+ aegra db upgrade
49
+
50
+ # Start development server
51
+ aegra dev
52
+ ```
53
+
54
+ ## Features
55
+
56
+ - **Drop-in Replacement**: Compatible with the LangGraph SDK
57
+ - **Self-Hosted**: Run on your own PostgreSQL database
58
+ - **Agent Protocol Compliant**: Works with Agent Chat UI, LangGraph Studio, CopilotKit
59
+ - **Streaming Support**: Real-time streaming of agent responses
60
+ - **Human-in-the-Loop**: Built-in support for human approval workflows
61
+
62
+ ## Documentation
63
+
64
+ For full documentation, visit the [GitHub repository](https://github.com/ibbybuilds/aegra).
65
+
66
+ ## Related Packages
67
+
68
+ - [aegra-cli](https://pypi.org/project/aegra-cli/): CLI for project management
69
+ - [aegra-api](https://pypi.org/project/aegra-api/): Core API server
@@ -0,0 +1,4 @@
1
+ aegra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ aegra-0.1.0.dist-info/METADATA,sha256=pPr3nuAObejKlEGqZzL_eHlkK1tCLQ92mGgdLI0_mi0,2189
3
+ aegra-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
4
+ aegra-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any