relai 0.3.5__tar.gz → 0.3.6__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.
- {relai-0.3.5/relai.egg-info → relai-0.3.6}/PKG-INFO +4 -4
- {relai-0.3.5 → relai-0.3.6}/README.md +3 -3
- {relai-0.3.5 → relai-0.3.6}/pyproject.toml +1 -1
- {relai-0.3.5 → relai-0.3.6}/relai/maestro/optimizer.py +3 -2
- {relai-0.3.5 → relai-0.3.6/relai.egg-info}/PKG-INFO +4 -4
- {relai-0.3.5 → relai-0.3.6}/LICENSE.md +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/__init__.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/_client.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/_exceptions.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/benchmark.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/critico/__init__.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/critico/critico.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/critico/evaluate.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/data.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/exporter.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/flags.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/logger.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/maestro/__init__.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/maestro/graph.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/maestro/params.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/maestro/utils.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/mocker/__init__.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/mocker/base_mocker.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/mocker/persona.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/mocker/tool.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/schema/visual.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/simulator.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai/utils.py +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai.egg-info/SOURCES.txt +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai.egg-info/dependency_links.txt +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai.egg-info/requires.txt +0 -0
- {relai-0.3.5 → relai-0.3.6}/relai.egg-info/top_level.txt +0 -0
- {relai-0.3.5 → relai-0.3.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: relai
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
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
|
|
@@ -395,17 +395,17 @@ if __name__ == "__main__":
|
|
|
395
395
|
## Simulation
|
|
396
396
|
Create controlled environments where agents interact and generate traces. Compose LLM personas, mock MCP tools/servers, and synthetic data; optionally condition on real events to align simulation ⇄ production.
|
|
397
397
|
|
|
398
|
-
➡️ Learn more: [Simulator](https://docs.relai.ai/simulator.html)
|
|
398
|
+
➡️ Learn more: [Simulator](https://docs.relai.ai/api/simulator.html)
|
|
399
399
|
|
|
400
400
|
## Evaluation (Critico)
|
|
401
401
|
Use code-based or LLM-based evaluators—or RELAI platform evaluators—and convert human reviews into benchmarks you can re-run in Simuation/CI pipeline.
|
|
402
402
|
|
|
403
|
-
➡️ Learn more: [Evaluator](https://docs.relai.ai/evaluator.html)
|
|
403
|
+
➡️ Learn more: [Evaluator](https://docs.relai.ai/api/evaluator.html)
|
|
404
404
|
|
|
405
405
|
## Optimization (Maestro)
|
|
406
406
|
Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to improve prompts, configs, and even graph structure when prompt tuning isn’t enough. It can also select the best model, best tool, and best graph based on observed performance.
|
|
407
407
|
|
|
408
|
-
➡️ Learn more: [Maestro](https://docs.relai.ai/maestro.html)
|
|
408
|
+
➡️ Learn more: [Maestro](https://docs.relai.ai/api/maestro.html)
|
|
409
409
|
|
|
410
410
|
## Links
|
|
411
411
|
|
|
@@ -171,17 +171,17 @@ if __name__ == "__main__":
|
|
|
171
171
|
## Simulation
|
|
172
172
|
Create controlled environments where agents interact and generate traces. Compose LLM personas, mock MCP tools/servers, and synthetic data; optionally condition on real events to align simulation ⇄ production.
|
|
173
173
|
|
|
174
|
-
➡️ Learn more: [Simulator](https://docs.relai.ai/simulator.html)
|
|
174
|
+
➡️ Learn more: [Simulator](https://docs.relai.ai/api/simulator.html)
|
|
175
175
|
|
|
176
176
|
## Evaluation (Critico)
|
|
177
177
|
Use code-based or LLM-based evaluators—or RELAI platform evaluators—and convert human reviews into benchmarks you can re-run in Simuation/CI pipeline.
|
|
178
178
|
|
|
179
|
-
➡️ Learn more: [Evaluator](https://docs.relai.ai/evaluator.html)
|
|
179
|
+
➡️ Learn more: [Evaluator](https://docs.relai.ai/api/evaluator.html)
|
|
180
180
|
|
|
181
181
|
## Optimization (Maestro)
|
|
182
182
|
Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to improve prompts, configs, and even graph structure when prompt tuning isn’t enough. It can also select the best model, best tool, and best graph based on observed performance.
|
|
183
183
|
|
|
184
|
-
➡️ Learn more: [Maestro](https://docs.relai.ai/maestro.html)
|
|
184
|
+
➡️ Learn more: [Maestro](https://docs.relai.ai/api/maestro.html)
|
|
185
185
|
|
|
186
186
|
## Links
|
|
187
187
|
|
|
@@ -420,9 +420,10 @@ class Maestro:
|
|
|
420
420
|
print(" explore_radius: ", explore_radius)
|
|
421
421
|
print(" explore_factor: ", explore_factor)
|
|
422
422
|
print("-" * 60)
|
|
423
|
-
print(" iterate_steps: ", iterate_steps)
|
|
424
|
-
print(" select_steps: ", select_steps)
|
|
425
423
|
print(" num_rounds: ", num_rounds)
|
|
424
|
+
print(" steps per round for config discovery: ", iterate_steps)
|
|
425
|
+
print(" steps per round for config evaluation: ", select_steps)
|
|
426
|
+
|
|
426
427
|
print("=" * 80 + "\n\n")
|
|
427
428
|
|
|
428
429
|
if num_rounds == 0:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: relai
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
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
|
|
@@ -395,17 +395,17 @@ if __name__ == "__main__":
|
|
|
395
395
|
## Simulation
|
|
396
396
|
Create controlled environments where agents interact and generate traces. Compose LLM personas, mock MCP tools/servers, and synthetic data; optionally condition on real events to align simulation ⇄ production.
|
|
397
397
|
|
|
398
|
-
➡️ Learn more: [Simulator](https://docs.relai.ai/simulator.html)
|
|
398
|
+
➡️ Learn more: [Simulator](https://docs.relai.ai/api/simulator.html)
|
|
399
399
|
|
|
400
400
|
## Evaluation (Critico)
|
|
401
401
|
Use code-based or LLM-based evaluators—or RELAI platform evaluators—and convert human reviews into benchmarks you can re-run in Simuation/CI pipeline.
|
|
402
402
|
|
|
403
|
-
➡️ Learn more: [Evaluator](https://docs.relai.ai/evaluator.html)
|
|
403
|
+
➡️ Learn more: [Evaluator](https://docs.relai.ai/api/evaluator.html)
|
|
404
404
|
|
|
405
405
|
## Optimization (Maestro)
|
|
406
406
|
Maestro is a holistic agent optimizer. It consumes evaluator/user feedback to improve prompts, configs, and even graph structure when prompt tuning isn’t enough. It can also select the best model, best tool, and best graph based on observed performance.
|
|
407
407
|
|
|
408
|
-
➡️ Learn more: [Maestro](https://docs.relai.ai/maestro.html)
|
|
408
|
+
➡️ Learn more: [Maestro](https://docs.relai.ai/api/maestro.html)
|
|
409
409
|
|
|
410
410
|
## Links
|
|
411
411
|
|
|
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
|
|
File without changes
|