Skip to content

Commit dc743c7

Browse files
authored
feat/clean (#329)
* 算子市场python实现 * 数据处理python实现
1 parent 638f5ba commit dc743c7

File tree

167 files changed

+4883
-4104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+4883
-4104
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ else
231231
echo -n "Enter choice (default: 2): "; \
232232
read DELETE_VOLUMES_CHOICE; \
233233
export DELETE_VOLUMES_CHOICE; \
234-
fi
235-
@$(MAKE) label-studio-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
234+
fi; \
235+
$(MAKE) label-studio-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
236236
$(MAKE) milvus-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
237237
$(MAKE) deer-flow-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
238238
$(MAKE) datamate-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE

backend/api-gateway/src/main/java/com/datamate/gateway/ApiGatewayApplication.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,16 @@ public RouteLocator customRouteLocator(RouteLocatorBuilder builder) {
4545
.route("python-service", r -> r.path("/api/rag/**", "api/models/**")
4646
.uri("http://datamate-backend-python:18000"))
4747

48+
// 数据评估服务路由
49+
.route("data-operator", r -> r.path("/api/operators/**")
50+
.uri("http://datamate-backend-python:18000"))
51+
52+
.route("data-categories", r -> r.path("/api/categories/**")
53+
.uri("http://datamate-backend-python:18000"))
54+
55+
.route("data-cleaning", r -> r.path("/api/cleaning/**")
56+
.uri("http://datamate-backend-python:18000"))
57+
4858
.route("deer-flow-frontend", r -> r.path("/chat/**")
4959
.uri("http://deer-flow-frontend:3000"))
5060

backend/openapi/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ OPENAPI_DIR="openapi/specs"
126126
SERVICES=(
127127
"data-annotation-service"
128128
"data-management-service"
129-
"operator-market-service"
130-
"data-cleaning-service"
131129
"data-synthesis-service"
132130
"data-evaluation-service"
133131
"pipeline-orchestration-service"

backend/services/data-cleaning-service/pom.xml

Lines changed: 0 additions & 89 deletions
This file was deleted.

backend/services/data-cleaning-service/src/main/java/com/datamate/cleaning/DataCleaningServiceConfiguration.java

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)