From 75b4eb5dfa8fc2da61def435544878e9554e0e52 Mon Sep 17 00:00:00 2001 From: seungy0 Date: Sat, 1 Mar 2025 00:35:16 +0900 Subject: [PATCH] Add Apache license header Signed-off-by: seungy0 --- .../ai/document/DocumentStore.java | 16 ++++++++++++++++ .../retrieval/search/MultiVectorRetriever.java | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/spring-ai-core/src/main/java/org/springframework/ai/document/DocumentStore.java b/spring-ai-core/src/main/java/org/springframework/ai/document/DocumentStore.java index 6aa2e2e06a..034948cc00 100644 --- a/spring-ai-core/src/main/java/org/springframework/ai/document/DocumentStore.java +++ b/spring-ai-core/src/main/java/org/springframework/ai/document/DocumentStore.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 the original author or 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 + * + * https://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 org.springframework.ai.document; import java.util.List; diff --git a/spring-ai-core/src/main/java/org/springframework/ai/rag/retrieval/search/MultiVectorRetriever.java b/spring-ai-core/src/main/java/org/springframework/ai/rag/retrieval/search/MultiVectorRetriever.java index f523db47ca..6cce2c19bc 100644 --- a/spring-ai-core/src/main/java/org/springframework/ai/rag/retrieval/search/MultiVectorRetriever.java +++ b/spring-ai-core/src/main/java/org/springframework/ai/rag/retrieval/search/MultiVectorRetriever.java @@ -1,3 +1,19 @@ +/* + * Copyright 2016 the original author or 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 + * + * https://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 org.springframework.ai.rag.retrieval.search; import java.util.ArrayList;