diff --git a/experimental/agentic/pom.xml b/experimental/agentic/pom.xml
deleted file mode 100644
index a6ea803e9..000000000
--- a/experimental/agentic/pom.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-
- 4.0.0
-
- io.serverlessworkflow
- serverlessworkflow-experimental
- 8.0.0-SNAPSHOT
-
- serverlessworkflow-experimental-agentic
- Serverless Workflow :: Experimental :: Agentic
-
-
- io.serverlessworkflow
- serverlessworkflow-experimental-lambda
-
-
- io.serverlessworkflow
- serverlessworkflow-experimental-model
-
-
- dev.langchain4j
- langchain4j-agentic
-
-
- org.junit.jupiter
- junit-jupiter-api
- test
-
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- org.junit.jupiter
- junit-jupiter-params
- test
-
-
- org.assertj
- assertj-core
- test
-
-
- ch.qos.logback
- logback-classic
- test
-
-
-
\ No newline at end of file
diff --git a/experimental/agentic/src/main/java/io/serverlessworkflow/impl/model/agentic/AgenticModel.java b/experimental/agentic/src/main/java/io/serverlessworkflow/impl/model/agentic/AgenticModel.java
deleted file mode 100644
index 3046047a7..000000000
--- a/experimental/agentic/src/main/java/io/serverlessworkflow/impl/model/agentic/AgenticModel.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright 2020-Present The Serverless Workflow Specification Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package io.serverlessworkflow.impl.model.agentic;
-
-import dev.langchain4j.agentic.scope.AgenticScope;
-import io.serverlessworkflow.impl.WorkflowModel;
-import io.serverlessworkflow.impl.model.func.JavaModel;
-import java.util.Collection;
-import java.util.Map;
-import java.util.Optional;
-
-class AgenticModel extends JavaModel {
-
- private final AgenticScope agenticScope;
-
- AgenticModel(AgenticScope agenticScope, Object object) {
- super(object);
- this.agenticScope = agenticScope;
- }
-
- public AgenticScope getAgenticScope() {
- return agenticScope;
- }
-
- @Override
- public Collection asCollection() {
- throw new UnsupportedOperationException("asCollection() is not supported yet.");
- }
-
- @Override
- public Optional