relai 0.3.6__tar.gz → 0.3.7__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.7}/PKG-INFO +2 -1
  2. {relai-0.3.6 → relai-0.3.7}/README.md +1 -0
  3. {relai-0.3.6 → relai-0.3.7}/pyproject.toml +1 -1
  4. {relai-0.3.6 → relai-0.3.7/relai.egg-info}/PKG-INFO +2 -1
  5. {relai-0.3.6 → relai-0.3.7}/LICENSE.md +0 -0
  6. {relai-0.3.6 → relai-0.3.7}/relai/__init__.py +0 -0
  7. {relai-0.3.6 → relai-0.3.7}/relai/_client.py +0 -0
  8. {relai-0.3.6 → relai-0.3.7}/relai/_exceptions.py +0 -0
  9. {relai-0.3.6 → relai-0.3.7}/relai/benchmark.py +0 -0
  10. {relai-0.3.6 → relai-0.3.7}/relai/critico/__init__.py +0 -0
  11. {relai-0.3.6 → relai-0.3.7}/relai/critico/critico.py +0 -0
  12. {relai-0.3.6 → relai-0.3.7}/relai/critico/evaluate.py +0 -0
  13. {relai-0.3.6 → relai-0.3.7}/relai/data.py +0 -0
  14. {relai-0.3.6 → relai-0.3.7}/relai/exporter.py +0 -0
  15. {relai-0.3.6 → relai-0.3.7}/relai/flags.py +0 -0
  16. {relai-0.3.6 → relai-0.3.7}/relai/logger.py +0 -0
  17. {relai-0.3.6 → relai-0.3.7}/relai/maestro/__init__.py +0 -0
  18. {relai-0.3.6 → relai-0.3.7}/relai/maestro/graph.py +0 -0
  19. {relai-0.3.6 → relai-0.3.7}/relai/maestro/optimizer.py +0 -0
  20. {relai-0.3.6 → relai-0.3.7}/relai/maestro/params.py +0 -0
  21. {relai-0.3.6 → relai-0.3.7}/relai/maestro/utils.py +0 -0
  22. {relai-0.3.6 → relai-0.3.7}/relai/mocker/__init__.py +0 -0
  23. {relai-0.3.6 → relai-0.3.7}/relai/mocker/base_mocker.py +0 -0
  24. {relai-0.3.6 → relai-0.3.7}/relai/mocker/persona.py +0 -0
  25. {relai-0.3.6 → relai-0.3.7}/relai/mocker/tool.py +0 -0
  26. {relai-0.3.6 → relai-0.3.7}/relai/schema/visual.py +0 -0
  27. {relai-0.3.6 → relai-0.3.7}/relai/simulator.py +0 -0
  28. {relai-0.3.6 → relai-0.3.7}/relai/utils.py +0 -0
  29. {relai-0.3.6 → relai-0.3.7}/relai.egg-info/SOURCES.txt +0 -0
  30. {relai-0.3.6 → relai-0.3.7}/relai.egg-info/dependency_links.txt +0 -0
  31. {relai-0.3.6 → relai-0.3.7}/relai.egg-info/requires.txt +0 -0
  32. {relai-0.3.6 → relai-0.3.7}/relai.egg-info/top_level.txt +0 -0
  33. {relai-0.3.6 → relai-0.3.7}/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.7
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
@@ -411,6 +411,7 @@ Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to im
411
411
 
412
412
  - 📘 **Documentation:** [docs.relai.ai](http://docs.relai.ai)
413
413
  - 🧪 **Examples:** [relai-sdk/examples](examples)
414
+ - 📓 **Notebooks:** [relai-sdk/notebooks](notebooks)
414
415
  - 📖 **Tutorials:** [docs.relai.ai/tutorials/index.html](https://docs.relai.ai/tutorials/index.html)
415
416
  - 🌐 **Website:** [relai.ai](https://relai.ai)
416
417
  - 📰 **Maestro Technical Report:** [ArXiV](https://arxiv.org/abs/2509.04642)
@@ -187,6 +187,7 @@ Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to im
187
187
 
188
188
  - 📘 **Documentation:** [docs.relai.ai](http://docs.relai.ai)
189
189
  - 🧪 **Examples:** [relai-sdk/examples](examples)
190
+ - 📓 **Notebooks:** [relai-sdk/notebooks](notebooks)
190
191
  - 📖 **Tutorials:** [docs.relai.ai/tutorials/index.html](https://docs.relai.ai/tutorials/index.html)
191
192
  - 🌐 **Website:** [relai.ai](https://relai.ai)
192
193
  - 📰 **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.7"
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.7
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
@@ -411,6 +411,7 @@ Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to im
411
411
 
412
412
  - 📘 **Documentation:** [docs.relai.ai](http://docs.relai.ai)
413
413
  - 🧪 **Examples:** [relai-sdk/examples](examples)
414
+ - 📓 **Notebooks:** [relai-sdk/notebooks](notebooks)
414
415
  - 📖 **Tutorials:** [docs.relai.ai/tutorials/index.html](https://docs.relai.ai/tutorials/index.html)
415
416
  - 🌐 **Website:** [relai.ai](https://relai.ai)
416
417
  - 📰 **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