chore: 增加 agent-runtime 模块,准备agent 底座开发
This commit is contained in:
33
easy-agents-agent-runtime/pom.xml
Normal file
33
easy-agents-agent-runtime/pom.xml
Normal file
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>com.easyagents</groupId>
|
||||
<artifactId>easy-agents</artifactId>
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
|
||||
<name>easy-agents-agent-runtime</name>
|
||||
<artifactId>easy-agents-agent-runtime</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.release>17</maven.compiler.release>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>io.agentscope</groupId>
|
||||
<artifactId>agentscope</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -255,6 +255,13 @@
|
||||
</dependency>
|
||||
<!--store end-->
|
||||
|
||||
<!--agent runtime start-->
|
||||
<dependency>
|
||||
<groupId>com.easyagents</groupId>
|
||||
<artifactId>easy-agents-agent-runtime</artifactId>
|
||||
</dependency>
|
||||
<!--agent runtime end-->
|
||||
|
||||
<!--search engines start-->
|
||||
<dependency>
|
||||
<groupId>com.easyagents</groupId>
|
||||
|
||||
14
pom.xml
14
pom.xml
@@ -27,6 +27,7 @@
|
||||
<module>easy-agents-embedding</module>
|
||||
<module>easy-agents-tool</module>
|
||||
<module>easy-agents-mcp</module>
|
||||
<module>easy-agents-agent-runtime</module>
|
||||
<module>easy-agents-flow</module>
|
||||
<module>easy-agents-support</module>
|
||||
</modules>
|
||||
@@ -44,6 +45,7 @@
|
||||
<spring-boot.version>2.7.18</spring-boot.version>
|
||||
<kotlin.version>1.8.22</kotlin.version>
|
||||
<opentelemetry.version>1.51.0</opentelemetry.version>
|
||||
<agentscope.version>1.0.12</agentscope.version>
|
||||
</properties>
|
||||
|
||||
|
||||
@@ -428,6 +430,18 @@
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.easyagents</groupId>
|
||||
<artifactId>easy-agents-agent-runtime</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>io.agentscope</groupId>
|
||||
<artifactId>agentscope</artifactId>
|
||||
<version>${agentscope.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user