Skip to content

Commit 6c155b2

Browse files
committed
fix(jmanus):fix ci bug
1 parent 90593cb commit 6c155b2

File tree

6 files changed

+30
-5
lines changed

6 files changed

+30
-5
lines changed

spring-ai-alibaba-jmanus/src/main/java/com/alibaba/cloud/ai/example/manus/task/StatefulJManusStep.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import com.alibaba.cloud.ai.example.manus.context.ContextKey;
1919
import com.alibaba.cloud.ai.example.manus.context.JManusExecutionContext;
2020

21-
2221
public interface StatefulJManusStep extends StatefulTask {
2322

2423
/**

spring-ai-alibaba-jmanus/src/main/java/com/alibaba/cloud/ai/example/manus/task/example/DatabaseQueryStep.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import com.alibaba.cloud.ai.example.manus.task.StatefulJManusStep;
2727
import com.alibaba.cloud.ai.example.manus.task.TaskExecutionException;
2828

29-
3029
public class DatabaseQueryStep implements StatefulJManusStep {
3130

3231
private static final Logger logger = LoggerFactory.getLogger(DatabaseQueryStep.class);

spring-ai-alibaba-jmanus/src/main/java/com/alibaba/cloud/ai/example/manus/task/example/LLMSummaryStep.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import com.alibaba.cloud.ai.example.manus.task.TaskExecutionException;
2828
import com.alibaba.cloud.ai.example.manus.task.example.DatabaseQueryStep.User;
2929

30-
3130
public class LLMSummaryStep implements StatefulJManusStep {
3231

3332
private static final Logger logger = LoggerFactory.getLogger(LLMSummaryStep.class);

spring-ai-alibaba-jmanus/src/main/java/com/alibaba/cloud/ai/example/manus/task/example/UserFilterStep.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import com.alibaba.cloud.ai.example.manus.task.TaskExecutionException;
2929
import com.alibaba.cloud.ai.example.manus.task.example.DatabaseQueryStep.User;
3030

31-
3231
public class UserFilterStep implements StatefulJManusStep {
3332

3433
private static final Logger logger = LoggerFactory.getLogger(UserFilterStep.class);

spring-ai-alibaba-jmanus/src/test/java/com/alibaba/cloud/ai/example/manus/context/StatefulExecutionContextTestSuite.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2025 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package com.alibaba.cloud.ai.example.manus.context;
217

318
import org.junit.jupiter.api.Test;

spring-ai-alibaba-jmanus/src/test/java/com/alibaba/cloud/ai/example/manus/task/TaskOrchestratorTest.java

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
/* * Copyright 2025 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */
1+
/*
2+
* Copyright 2025 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
216
package com.alibaba.cloud.ai.example.manus.task;
317

418
import java.util.Arrays;

0 commit comments

Comments
 (0)