Skip to content

Commit 065bed3

Browse files
committed
Update API
1 parent 2755633 commit 065bed3

2 files changed

Lines changed: 24 additions & 6 deletions

File tree

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<java.version>21</java.version>
2020
<kotlin.version>2.1.10</kotlin.version>
2121
<kotlin.compiler.apiVersion>2.1</kotlin.compiler.apiVersion>
22-
<embabel-agent.version>0.1.2-SNAPSHOT</embabel-agent.version>
22+
<embabel-agent.version>0.1.4-SNAPSHOT</embabel-agent.version>
2323
</properties>
2424

2525
<dependencies>
@@ -30,12 +30,30 @@
3030
<version>${embabel-agent.version}</version>
3131
</dependency>
3232

33+
<dependency>
34+
<groupId>com.embabel.agent</groupId>
35+
<artifactId>embabel-agent-starter-anthropic</artifactId>
36+
<version>${embabel-agent.version}</version>
37+
</dependency>
38+
39+
<dependency>
40+
<groupId>com.embabel.agent</groupId>
41+
<artifactId>embabel-agent-starter-openai</artifactId>
42+
<version>${embabel-agent.version}</version>
43+
</dependency>
44+
3345
<dependency>
3446
<groupId>com.embabel.agent</groupId>
3547
<artifactId>embabel-agent-test</artifactId>
3648
<version>${embabel-agent.version}</version>
3749
</dependency>
3850

51+
<dependency>
52+
<groupId>com.embabel.agent</groupId>
53+
<artifactId>embabel-agent-starter-shell</artifactId>
54+
<version>${embabel-agent.version}</version>
55+
</dependency>
56+
3957
<!-- Unit and Integration Testing -->
4058
<dependency>
4159
<groupId>org.springframework.boot</groupId>

src/main/kotlin/com/embabel/DeckerApplication.kt renamed to src/main/kotlin/com/embabel/decker/DeckerApplication.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.embabel
16+
package com.embabel.decker
1717

18-
import com.embabel.agent.config.annotation.*
18+
import com.embabel.agent.config.annotation.EnableAgents
19+
import com.embabel.agent.config.annotation.LoggingThemes
20+
import com.embabel.agent.config.annotation.McpServers
1921
import org.springframework.boot.autoconfigure.SpringBootApplication
2022
import org.springframework.boot.context.properties.ConfigurationPropertiesScan
2123
import org.springframework.boot.runApplication
2224

2325
@SpringBootApplication
2426
@ConfigurationPropertiesScan
25-
@EnableAgentShell
2627
@EnableAgents(
2728
loggingTheme = LoggingThemes.SEVERANCE,
28-
localModels = [LocalModels.DOCKER],
29-
mcpServers = [McpServers.DOCKER, McpServers.DOCKER_DESKTOP],
29+
mcpServers = [McpServers.DOCKER_DESKTOP],
3030
)
3131
class DeckerApplication
3232

0 commit comments

Comments
 (0)