Skip to content

Commit 36dec05

Browse files
committed
Add Bedrock Model Support
1 parent 925e001 commit 36dec05

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

examples-java/pom.xml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818

1919
<dependencies>
20-
2120
<dependency>
2221
<groupId>com.embabel.example</groupId>
2322
<artifactId>examples-common</artifactId>
@@ -83,12 +82,26 @@
8382
<artifactId>embabel-agent-starter-anthropic</artifactId>
8483
</dependency>
8584
</dependencies>
85+
</profile>
86+
<profile>
87+
<id>bedrock-models</id>
88+
<activation>
89+
<property>
90+
<name>env.ENABLE_BEDROCK</name>
91+
</property>
92+
</activation>
93+
<dependencies>
94+
<dependency>
95+
<groupId>com.embabel.agent</groupId>
96+
<artifactId>embabel-agent-starter-bedrock</artifactId>
97+
</dependency>
98+
</dependencies>
8699
</profile>
87100
<profile>
88101
<id>docker-models</id>
89102
<activation>
90103
<property>
91-
<name>env.DOCKER_MODELS_AVAILABLE</name>
104+
<name>env.ENABLE_DOCKER_MODELS</name>
92105
</property>
93106
</activation>
94107
<dependencies>

0 commit comments

Comments
 (0)