Skip to content

Commit 6e4d0fb

Browse files
committed
Fix tests, update docs and update version
1 parent 2f0cb0d commit 6e4d0fb

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

coverage-badge.svg

Lines changed: 1 addition & 2 deletions
Loading
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Agent Modules
22

3-
- [ReACT module](ReACT Agent module.md)
3+
- [ReACT module](ReACT Agent module.md)
4+
- [Parallel ReACT module](Parallel ReACT Agent module.md)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
::: synalinks.src.modules.core.multi_decision

docs/Synalinks API/Modules API/Core Modules/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
- [Not module](Not module.md)
66
- [Generator module](Generator module.md)
77
- [Decision module](Decision module.md)
8+
- [MultiDecision module](MultiDecision module.md)
89
- [Action module](Action module.md)
910
- [Branch module](Branch module.md)

docs/Synalinks API/Modules API/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ if __name__ == "__main__":
5252
- [Not module](Core Modules/Not module.md)
5353
- [Generator module](Core Modules/Generator module.md)
5454
- [Decision module](Core Modules/Decision module.md)
55+
- [MultiDecision module](Core Modules/MultiDecision module.md)
5556
- [Action module](Core Modules/Action module.md)
5657
- [Branch module](Core Modules/Branch module.md)
5758

synalinks/src/optimizers/few_shot_opro_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ async def test_few_shot_opro_training(self, mock_completion, mock_embedding):
7777
self.assertTrue(len(program_vars["examples"]) > 0)
7878
self.assertTrue(len(program_vars["instructions"]) > 0)
7979

80-
@patch("litellm.embedding")
81-
@patch("litellm.completion")
80+
@patch("litellm.aembedding")
81+
@patch("litellm.acompletion")
8282
async def test_few_shot_opro_training_with_optimizer_training(self, mock_completion, mock_embedding):
8383
language_model = LanguageModel(model="ollama/mistral")
8484

synalinks/src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from synalinks.src.api_export import synalinks_export
44

55
# Unique source of truth for the version number.
6-
__version__ = "0.3.012"
6+
__version__ = "0.3.013"
77

88

99
@synalinks_export("synalinks.version")

0 commit comments

Comments
 (0)