Based on the Building Effective Agents Cookbook - https://www.anthropic.com/research/building-effective-agents - https://github.com/anthropics/anthropic-cookbook/tree/main/patterns/agents
25 lines
796 B
XML
25 lines
796 B
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.example.spring.ai</groupId>
|
|
<artifactId>agentic-patterns</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring AI Aggentic Patterns</name>
|
|
<description>Spring AI demos for building Agentic Patterns</description>
|
|
|
|
<modules>
|
|
<module>chain-workflow</module>
|
|
<module>parallelization-worflow</module>
|
|
<module>routing-workflow</module>
|
|
<module>orchestrator-workers-workflow</module>
|
|
<module>evaluator-optimizer-workflow</module>
|
|
</modules>
|
|
|
|
|
|
</project> |