Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9bbf531
1652 Order advisors and wire ToolCallAdvisor in AI agent
ivicac Apr 27, 2026
b0044ad
1652 Align AiAgent action factory parameter order and test ToolCallAd…
ivicac May 8, 2026
770e7bf
1652 - ordering by DEFAULT_CHAT_MEMORY_PRECEDENCE_ORDER
marko-kriskovic May 15, 2026
a3cab95
1652 Place ChatMemoryAdvisor downstream of ToolCallAdvisor so memory …
ivicac May 26, 2026
6c6ec1a
1652 Add regression tests pinning ChatMemoryAdvisor ordering relative…
ivicac May 26, 2026
b5b9fbc
1652 Document why disableInternalConversationHistory() is required on…
ivicac May 26, 2026
b85c12d
1652 Update Spring AI to 2.0.0-M7
ivicac May 26, 2026
a798a98
1652 Migrate AI agent module from deprecated toolCallbacks to Spring …
ivicac May 26, 2026
f02ff6c
1652 Fix Spring AI 2.0.0-M7 boot failure and update MCP SDK fork to 2…
ivicac May 26, 2026
dabfe7d
1652 Upgrade Spring AI from 2.0.0-M7 to 2.0.0-M8
ivicac May 31, 2026
517ffc3
1652 Drop unused PostgreSQLContainerConfiguration import from WorkerA…
ivicac May 27, 2026
1e56a29
1652 Regenerate Gemini/Mistral/OpenAI component snapshots for Spring …
ivicac May 27, 2026
3e325c8
1652 Regenerate Gemini/Mistral/OpenAI component snapshots for Spring …
ivicac May 27, 2026
18daea6
1652 - workaround for deleting toolCallAdvisorBuilder.disableInternal…
marko-kriskovic Jun 3, 2026
5e2c604
1652 - changed deprecated JsonParser
marko-kriskovic Jun 3, 2026
3e512e6
test: update mistral component snapshot for current definition
Copilot Jun 4, 2026
6d24bb4
1570 Move workflow validate and instruction MCP tools to mcp-tool-pla…
ivicac Jun 2, 2026
7f86f63
1652 - using filter in Chat memory directly
marko-kriskovic Jun 5, 2026
245e5ac
Revert "1652 - using filter in Chat memory directly"
marko-kriskovic Jun 5, 2026
1ba97cb
Revert "1652 - workaround for deleting toolCallAdvisorBuilder.disable…
marko-kriskovic Jun 5, 2026
059d4e2
1652 - remembering internal tool conversation history on disableInter…
marko-kriskovic Jun 5, 2026
2f3ee5b
1652 - Fix test
ivicac Jun 6, 2026
7f15143
4096 client - SF
ivicac Jun 6, 2026
cbf9250
1652 SF
ivicac Jun 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export const useConvertN8nToWorkflow = () => {
const setWorkflow = useWorkflowDataStore((state) => state.setWorkflow);
const [isRunning, setIsRunning] = useState(false);


const convertN8nWorkflow = useCallback(
async (workflowJson: string) => {
const json = JSON.parse(workflowJson);
Expand Down Expand Up @@ -51,9 +50,9 @@ export const useConvertN8nToWorkflow = () => {
} catch (e) {
console.error('Failed to parse workflow', e);

throw new Error(
'The n8n workflow could not be converted into a valid ByteChef workflow.'
);
throw new Error('The n8n workflow could not be converted into a valid ByteChef workflow.', {
cause: e,
});
} finally {
setIsRunning(false);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
} from '@/shared/middleware/automation/configuration';
import {UseMutationResult} from '@tanstack/react-query';
import {ChangeEvent} from 'react';
import {toast} from "sonner";
import {toast} from 'sonner';

const handleImportN8nWorkflow = async (
event: ChangeEvent<HTMLInputElement>,
Expand Down
226 changes: 0 additions & 226 deletions docs/content/docs/reference/components/cosmos-db-chat-memory_v1.mdx

This file was deleted.

4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ checkstyle = "13.4.0"
com-google-auto-service = "1.1.1"
findsecbugs = "1.14.0"
graalvm = "25.0.2"
io-modelcontextprotocol-sdk = "2.0.0-M2"
io-modelcontextprotocol-sdk = "2.0.0-M3"
jackson = "2.19.2"
jacoco = "0.8.13"
java = "25"
Expand All @@ -13,7 +13,7 @@ org-mapstruct-extensions-spring = "2.0.0"
org-springdoc = "3.0.3"
pmd = "7.23.0"
spotbugs = "4.9.8"
spring-ai = "2.0.0-M6"
spring-ai = "2.0.0-M8"
spring-boot = "4.0.6"
spring-cloud-aws = "4.0.2"
spring-cloud-dependencies = "2025.1.1"
Expand Down
1 change: 1 addition & 0 deletions server/apps/server-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ dependencies {
implementation("io.awspring.cloud:spring-cloud-aws-starter-sqs")
implementation(libs.org.springdoc.springdoc.openapi.starter.common)
implementation(libs.org.springdoc.springdoc.openapi.starter.webmvc.ui)
implementation("org.springframework.ai:spring-ai-autoconfigure-mcp-client-common")
implementation("org.springframework.ai:spring-ai-starter-mcp-client")
implementation("org.springframework.ai:spring-ai-starter-model-anthropic")
implementation("org.springframework.ai:spring-ai-starter-model-chat-memory-repository-jdbc")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,15 @@

package com.bytechef.worker;

import com.bytechef.test.config.testcontainers.PostgreSQLContainerConfiguration;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;

/**
* @version ee
*
* @author Ivica Cardic
*/
@SpringBootTest(classes = WorkerApplication.class)
@Import(PostgreSQLContainerConfiguration.class)
public class WorkerApplicationIntTest {

@Test
Expand Down
Loading
Loading