diff --git a/pom.xml b/pom.xml
deleted file mode 100644
index bc35d51..0000000
--- a/pom.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
- 4.0.0
-
- ru.ldeloff
- AiTools
- 1.0-SNAPSHOT
- pom
-
-
- tools/current-time
-
-
-
- 25
- 25
- UTF-8
- 3.3.7
- 1.0.2
-
-
-
- org.springframework.boot
- spring-boot-starter-parent
- 3.3.7
-
-
-
-
-
-
- org.springframework.ai
- spring-ai-bom
- ${spring-ai.version}
- pom
- import
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-starter-webflux
-
-
- org.springframework.ai
- spring-ai-starter-model-ollama
-
-
- org.projectlombok
- lombok
- true
-
-
-
diff --git a/tools/current-time/pom.xml b/tools/current-time/pom.xml
deleted file mode 100644
index a6ebe89..0000000
--- a/tools/current-time/pom.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
- 4.0.0
-
-
- ru.ldeloff
- AiTools
- 1.0-SNAPSHOT
- ../../pom.xml
-
-
- current-time
- current-time
- 1.0-SNAPSHOT
-
-
- 25
- 25
-
-
-
\ No newline at end of file
diff --git a/tools/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTime.java b/tools/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTime.java
deleted file mode 100644
index 386144e..0000000
--- a/tools/current-time/src/main/java/ru/ldeloff/currenttime/CurrentTime.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package ru.ldeloff.currenttime;
-
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-@SpringBootApplication
-public class CurrentTime {
- public static void main(String[] args) {
- System.out.println("Current time: " + java.time.LocalDateTime.now());
- }
-}
\ No newline at end of file
diff --git a/tools/current-time/src/main/java/ru/ldeloff/currenttime/tool/CurrentTimeTool.java b/tools/current-time/src/main/java/ru/ldeloff/currenttime/tool/CurrentTimeTool.java
deleted file mode 100644
index 12735f0..0000000
--- a/tools/current-time/src/main/java/ru/ldeloff/currenttime/tool/CurrentTimeTool.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package ru.ldeloff.currenttime.tool;
-
-import lombok.extern.slf4j.Slf4j;
-import org.springframework.ai.tool.annotation.Tool;
-import org.springframework.stereotype.Component;
-
-import java.time.LocalDate;
-
-@Slf4j
-@Component
-public class CurrentTimeTool {
-
- @Tool(description = "Get the current date in the ISO-8601 format yyyy-MM-dd")
- String getCurrentDate() {
-// log.info("Getting current date");
- return LocalDate.now().toString();
- }
-}