Skip to content

Releases: neuron-core/neuron-ai

3.4.3: Merge pull request #560 from tw2066/qwen

07 May 13:08
1abfa42

Choose a tag to compare

Add Alibaba dash scope model platform provider - PR #560 by @tw2066

3.4.2

05 May 16:00

Choose a tag to compare

Improve the Workflow Executor design

3.4.1

03 May 16:15

Choose a tag to compare

fix workflow id handling

3.4.0

02 May 14:10

Choose a tag to compare

Introducing Parallel Branches

This release introduce the ability of the workflow component to run parallel branches: https://docs.neuron-ai.dev/workflow/loops-and-branches#parallel-branches

When you want to call the execution of multiple branches in parallel, you need to return the special event ParallelEvent from your node.

use NeuronAI\Workflow\Events\ParallelEvent;

class DocumentProcessing extends Node
{
    public function __invoke(StartEvent $event, WorkflowState $state): ParallelEvent
    {
        // Node logic here...
	
        // Finally return a ParallelEvent
        return new ParallelEvent([
            'text' => new TextProcessEvent(),
            'image' => new ImageProcessEvent(),
        ]);
    }
}

3.3.14

01 May 16:00

Choose a tag to compare

Several improvements and fixes to the AWS Bedrock provider - PR #562 by @vitaliiivanovspryker

3.3.13

01 May 09:45

Choose a tag to compare

Make Http clients implementations ready for extension - Fix #557 #558

3.3.12

01 May 08:42

Choose a tag to compare

  • Fix Typesense vector store - #552
  • Fix OpenAI Responses message mapper - Fix #556 merging PR #559 by @iztok

3.3.11

29 Apr 18:32

Choose a tag to compare

Fix Tavily search tool - PR #561 by @AlexTr

3.3.10

20 Apr 17:26

Choose a tag to compare

Fix #554

3.3.9

20 Apr 10:27

Choose a tag to compare

Fix tool content deserialization in chat history - Fix #550
Add options argument to GuzzleHttpClient - Fix #551