memra 0.0.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.
memra-0.0.1/LICENSE ADDED
File without changes
memra-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: memra
3
+ Version: 0.0.1
4
+ Summary: Reserved package for the Memra AI orchestration framework.
5
+ Home-page: https://memra.co
6
+ Author: Memra Team
7
+ Author-email: hello@memra.co
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/plain
13
+ License-File: LICENSE
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: license-file
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ This package is reserved for Memra's official SDK. More coming soon.
memra-0.0.1/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # Memra SDK
2
+
3
+ A declarative orchestration framework for AI-powered business workflows. Think of it as "Kubernetes for business logic" where agents are the pods and departments are the deployments.
4
+
5
+ ## Quick Start
6
+
7
+ ```python
8
+ from memra.sdk.models import Agent, Department, Tool
9
+
10
+ # Define your agents
11
+ data_extractor = Agent(
12
+ role="Data Extraction Specialist",
13
+ job="Extract and validate data",
14
+ tools=[Tool(name="DataExtractor", hosted_by="memra")],
15
+ input_keys=["input_data"],
16
+ output_key="extracted_data"
17
+ )
18
+
19
+ # Create a department
20
+ dept = Department(
21
+ name="Data Processing",
22
+ mission="Process and validate data",
23
+ agents=[data_extractor]
24
+ )
25
+
26
+ # Run the workflow
27
+ result = dept.run({"input_data": {...}})
28
+ ```
29
+
30
+ ## Installation
31
+
32
+ ```bash
33
+ pip install memra
34
+ ```
35
+
36
+ ## Documentation
37
+
38
+ For detailed documentation, please visit our [documentation site](https://docs.memra.ai).
39
+
40
+ ## Example: Propane Delivery Workflow
41
+
42
+ See the `examples/propane_delivery.py` file for a complete example of how to use Memra to orchestrate a propane delivery workflow.
43
+
44
+ ## Contributing
45
+
46
+ We welcome contributions! Please see our [contributing guide](CONTRIBUTING.md) for details.
47
+
48
+ ## License
49
+
50
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: memra
3
+ Version: 0.0.1
4
+ Summary: Reserved package for the Memra AI orchestration framework.
5
+ Home-page: https://memra.co
6
+ Author: Memra Team
7
+ Author-email: hello@memra.co
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/plain
13
+ License-File: LICENSE
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: license-file
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ This package is reserved for Memra's official SDK. More coming soon.
@@ -0,0 +1,7 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ memra.egg-info/PKG-INFO
5
+ memra.egg-info/SOURCES.txt
6
+ memra.egg-info/dependency_links.txt
7
+ memra.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
memra-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
memra-0.0.1/setup.py ADDED
@@ -0,0 +1,20 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="memra",
5
+ version="0.0.1",
6
+ author="Memra Team",
7
+ author_email="hello@memra.co",
8
+ description="Reserved package for the Memra AI orchestration framework.",
9
+ long_description="This package is reserved for Memra's official SDK. More coming soon.",
10
+ long_description_content_type="text/plain",
11
+ url="https://memra.co",
12
+ packages=[],
13
+ classifiers=[
14
+ "Development Status :: 1 - Planning",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3"
17
+ ],
18
+ python_requires='>=3.8',
19
+ )
20
+