Files
spring-ai-examples/agentic-patterns/pom.xml
Christian Tzolov 9f8cb92aa9 refactor: clarify agent pattern names
- Remove redundant workflow suffix from agentic pattern names and related classes
- Update documentation to reflect pattern name changes
2025-01-24 19:10:21 +01:00

25 lines
778 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</module>
<module>evaluator-optimizer</module>
</modules>
</project>