relai 0.3.6__tar.gz → 0.3.8__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.

Potentially problematic release.


This version of relai might be problematic. Click here for more details.

Files changed (33) hide show
  1. {relai-0.3.6/relai.egg-info → relai-0.3.8}/PKG-INFO +6 -1
  2. {relai-0.3.6 → relai-0.3.8}/README.md +5 -0
  3. {relai-0.3.6 → relai-0.3.8}/pyproject.toml +1 -1
  4. {relai-0.3.6 → relai-0.3.8/relai.egg-info}/PKG-INFO +6 -1
  5. {relai-0.3.6 → relai-0.3.8}/LICENSE.md +0 -0
  6. {relai-0.3.6 → relai-0.3.8}/relai/__init__.py +0 -0
  7. {relai-0.3.6 → relai-0.3.8}/relai/_client.py +0 -0
  8. {relai-0.3.6 → relai-0.3.8}/relai/_exceptions.py +0 -0
  9. {relai-0.3.6 → relai-0.3.8}/relai/benchmark.py +0 -0
  10. {relai-0.3.6 → relai-0.3.8}/relai/critico/__init__.py +0 -0
  11. {relai-0.3.6 → relai-0.3.8}/relai/critico/critico.py +0 -0
  12. {relai-0.3.6 → relai-0.3.8}/relai/critico/evaluate.py +0 -0
  13. {relai-0.3.6 → relai-0.3.8}/relai/data.py +0 -0
  14. {relai-0.3.6 → relai-0.3.8}/relai/exporter.py +0 -0
  15. {relai-0.3.6 → relai-0.3.8}/relai/flags.py +0 -0
  16. {relai-0.3.6 → relai-0.3.8}/relai/logger.py +0 -0
  17. {relai-0.3.6 → relai-0.3.8}/relai/maestro/__init__.py +0 -0
  18. {relai-0.3.6 → relai-0.3.8}/relai/maestro/graph.py +0 -0
  19. {relai-0.3.6 → relai-0.3.8}/relai/maestro/optimizer.py +0 -0
  20. {relai-0.3.6 → relai-0.3.8}/relai/maestro/params.py +0 -0
  21. {relai-0.3.6 → relai-0.3.8}/relai/maestro/utils.py +0 -0
  22. {relai-0.3.6 → relai-0.3.8}/relai/mocker/__init__.py +0 -0
  23. {relai-0.3.6 → relai-0.3.8}/relai/mocker/base_mocker.py +0 -0
  24. {relai-0.3.6 → relai-0.3.8}/relai/mocker/persona.py +0 -0
  25. {relai-0.3.6 → relai-0.3.8}/relai/mocker/tool.py +0 -0
  26. {relai-0.3.6 → relai-0.3.8}/relai/schema/visual.py +0 -0
  27. {relai-0.3.6 → relai-0.3.8}/relai/simulator.py +0 -0
  28. {relai-0.3.6 → relai-0.3.8}/relai/utils.py +0 -0
  29. {relai-0.3.6 → relai-0.3.8}/relai.egg-info/SOURCES.txt +0 -0
  30. {relai-0.3.6 → relai-0.3.8}/relai.egg-info/dependency_links.txt +0 -0
  31. {relai-0.3.6 → relai-0.3.8}/relai.egg-info/requires.txt +0 -0
  32. {relai-0.3.6 → relai-0.3.8}/relai.egg-info/top_level.txt +0 -0
  33. {relai-0.3.6 → relai-0.3.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: relai
3
- Version: 0.3.6
3
+ Version: 0.3.8
4
4
  Summary: An SDK for building reliable AI agents
5
5
  Author-email: RELAI <priyatham@relai.ai>, RELAI <wwx@relai.ai>
6
6
  License: Apache License
@@ -258,6 +258,10 @@ export RELAI_API_KEY="<RELAI_API_KEY>"
258
258
  ```
259
259
 
260
260
  ### Example: A simple Stock Assistant Agent (Simulate → Evaluate → Optimize)
261
+
262
+ Notebook version of the example below: [stock-assistant (simulate->evaluate->optimize).ipynb](/notebooks/basic/stock-assistant%20(simulate-%3Eevaluate-%3Eoptimize).ipynb)
263
+
264
+
261
265
  Prerequisites: Needs an OpenAI API key and `openai-agents` installed to run the base agent.
262
266
  To use Maestro graph optimizer, save the following in a file called `stock-assistant.py` (or change the `code_paths` argument to `maestro.optimize_structure`).
263
267
  ```python
@@ -411,6 +415,7 @@ Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to im
411
415
 
412
416
  - 📘 **Documentation:** [docs.relai.ai](http://docs.relai.ai)
413
417
  - 🧪 **Examples:** [relai-sdk/examples](examples)
418
+ - 📓 **Notebooks:** [relai-sdk/notebooks](notebooks)
414
419
  - 📖 **Tutorials:** [docs.relai.ai/tutorials/index.html](https://docs.relai.ai/tutorials/index.html)
415
420
  - 🌐 **Website:** [relai.ai](https://relai.ai)
416
421
  - 📰 **Maestro Technical Report:** [ArXiV](https://arxiv.org/abs/2509.04642)
@@ -34,6 +34,10 @@ export RELAI_API_KEY="<RELAI_API_KEY>"
34
34
  ```
35
35
 
36
36
  ### Example: A simple Stock Assistant Agent (Simulate → Evaluate → Optimize)
37
+
38
+ Notebook version of the example below: [stock-assistant (simulate->evaluate->optimize).ipynb](/notebooks/basic/stock-assistant%20(simulate-%3Eevaluate-%3Eoptimize).ipynb)
39
+
40
+
37
41
  Prerequisites: Needs an OpenAI API key and `openai-agents` installed to run the base agent.
38
42
  To use Maestro graph optimizer, save the following in a file called `stock-assistant.py` (or change the `code_paths` argument to `maestro.optimize_structure`).
39
43
  ```python
@@ -187,6 +191,7 @@ Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to im
187
191
 
188
192
  - 📘 **Documentation:** [docs.relai.ai](http://docs.relai.ai)
189
193
  - 🧪 **Examples:** [relai-sdk/examples](examples)
194
+ - 📓 **Notebooks:** [relai-sdk/notebooks](notebooks)
190
195
  - 📖 **Tutorials:** [docs.relai.ai/tutorials/index.html](https://docs.relai.ai/tutorials/index.html)
191
196
  - 🌐 **Website:** [relai.ai](https://relai.ai)
192
197
  - 📰 **Maestro Technical Report:** [ArXiV](https://arxiv.org/abs/2509.04642)
@@ -30,7 +30,7 @@ dependencies = [
30
30
  "opentelemetry-instrumentation>=0.58b0",
31
31
  "openinference-instrumentation>=0.1.38",
32
32
  ]
33
- version = "0.3.6"
33
+ version = "0.3.8"
34
34
 
35
35
  [tool.setuptools.packages.find]
36
36
  where = ["."]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: relai
3
- Version: 0.3.6
3
+ Version: 0.3.8
4
4
  Summary: An SDK for building reliable AI agents
5
5
  Author-email: RELAI <priyatham@relai.ai>, RELAI <wwx@relai.ai>
6
6
  License: Apache License
@@ -258,6 +258,10 @@ export RELAI_API_KEY="<RELAI_API_KEY>"
258
258
  ```
259
259
 
260
260
  ### Example: A simple Stock Assistant Agent (Simulate → Evaluate → Optimize)
261
+
262
+ Notebook version of the example below: [stock-assistant (simulate->evaluate->optimize).ipynb](/notebooks/basic/stock-assistant%20(simulate-%3Eevaluate-%3Eoptimize).ipynb)
263
+
264
+
261
265
  Prerequisites: Needs an OpenAI API key and `openai-agents` installed to run the base agent.
262
266
  To use Maestro graph optimizer, save the following in a file called `stock-assistant.py` (or change the `code_paths` argument to `maestro.optimize_structure`).
263
267
  ```python
@@ -411,6 +415,7 @@ Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to im
411
415
 
412
416
  - 📘 **Documentation:** [docs.relai.ai](http://docs.relai.ai)
413
417
  - 🧪 **Examples:** [relai-sdk/examples](examples)
418
+ - 📓 **Notebooks:** [relai-sdk/notebooks](notebooks)
414
419
  - 📖 **Tutorials:** [docs.relai.ai/tutorials/index.html](https://docs.relai.ai/tutorials/index.html)
415
420
  - 🌐 **Website:** [relai.ai](https://relai.ai)
416
421
  - 📰 **Maestro Technical Report:** [ArXiV](https://arxiv.org/abs/2509.04642)
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