Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ Add the following dependency to your `pom.xml`:
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<!-- Add AgentScope Agent adapter dependency -->
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<!-- Add AgentScope Agent adapter dependency -->
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion agents/agentscope/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-engine</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<dependency>
Expand Down
9 changes: 9 additions & 0 deletions cookbook/en/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## v1.0.2

### Refactor
- Refactored the sandbox into a separate module: agentscope-runtime-sandbox
- Moved extensible capabilities from the Sandbox module to an extension module to simplify core module dependencies

### Added
- Added support for configuring AgentApp parameters via environment variables or command-line arguments

## v1.0.1

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion engine-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>agentscope-runtime-engine</artifactId>
<version>1.0.1</version>
<version>${revision}</version>
<packaging>jar</packaging>
<name>AgentScope Runtime Core</name>
<description>Java Implementation for AgentScope Runtime</description>
Expand Down
6 changes: 3 additions & 3 deletions examples/browser_use_fullstack_runtime/backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>io.agentscope</groupId>
<artifactId>browser-agent-backend</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>Example::Browser Use Backend</name>
<description>Java backend for AgentScope browser use demo</description>

Expand Down Expand Up @@ -57,12 +57,12 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>spring-boot-starter-runtime-a2a</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>io.agentscope</groupId>
<artifactId>agentscope_use_example</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>Example::AgentScope Basic</name>
<description>Java backend for AgentScope Basic Usage</description>

Expand All @@ -44,19 +44,19 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-engine</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-web</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
<!-- Logging -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<groupId>io.agentscope</groupId>
<artifactId>custom_sandbox_example</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>Example::AgentScope Basic</name>
<description>Java backend for AgentScope Basic Usage</description>

Expand All @@ -44,13 +44,13 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-web</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<!-- Logging -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-web</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

<!-- Logging -->
Expand Down
4 changes: 2 additions & 2 deletions examples/simple_sandbox_tool_example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.example</groupId>
<artifactId>agentscope-examples-simple</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>AgentScope Spring MVC Demo</name>
<description>AgentScope simple sample project using Spring MVC</description>

Expand Down Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions examples/structured_sandbox_tool_example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.example</groupId>
<artifactId>agentscope-examples-structured</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>AgentScope Spring MVC Demo</name>
<description>AgentScope sample project using Spring MVC</description>

Expand Down Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>io.agentscope</groupId>
<artifactId>agentscope-runtime-agentscope</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion maven_plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</parent>

<artifactId>deployer-maven-plugin</artifactId>
<version>1.0.1</version>
<version>${revision}</version>
<packaging>maven-plugin</packaging>

<name>AgentScope Deployer Maven Plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</scm>

<properties>
<revision>1.0.1</revision>
<revision>1.0.2</revision>

<a2a-sdk.version>0.3.2.Final</a2a-sdk.version>
<spring-boot.version>3.4.5</spring-boot.version>
Expand Down
1 change: 0 additions & 1 deletion sandbox-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
</properties>

<dependencies>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
Loading