remove the occurances of 'experimenta' in the git urls and docs
This commit is contained in:
2
.github/ISSUE_TEMPLATE/miscellaneous.md
vendored
2
.github/ISSUE_TEMPLATE/miscellaneous.md
vendored
@@ -10,7 +10,7 @@ assignees: ''
|
||||
For anything other than bug reports and feature requests (performance, refactoring, etc),
|
||||
just go ahead and file the issue. Please provide as many details as possible.
|
||||
|
||||
If you have a question or a support request, please open a new discussion on [GitHub Discussions](https://github.com/spring-projects-experimental/spring-ai/discussions)
|
||||
If you have a question or a support request, please open a new discussion on [GitHub Discussions](https://github.com/spring-projects/spring-ai/discussions)
|
||||
or ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/spring-ai).
|
||||
|
||||
Please do **not** create issues on the [Issue Tracker](https://github.com/spring-projects/spring-ai/issues) for questions or support requests.
|
||||
|
||||
24
README.md
24
README.md
@@ -1,4 +1,4 @@
|
||||
# Spring AI [](https://github.com/spring-projects-experimental/spring-ai/actions/workflows/continuous-integration.yml)
|
||||
# Spring AI [](https://github.com/spring-projects/spring-ai/actions/workflows/continuous-integration.yml)
|
||||
|
||||
Welcome to the Spring AI project!
|
||||
|
||||
@@ -8,13 +8,13 @@ Let's make your `@Beans` intelligent!
|
||||
|
||||
## Project Update
|
||||
|
||||
:partying_face: The Spring AI project has graduated out of the experimental repository!
|
||||
:partying_face: The Spring AI project has graduated out of the repository!
|
||||
|
||||
:warning:
|
||||
:warning:
|
||||
|
||||
We are transitioning the project's Group ID:
|
||||
|
||||
* **FROM**: `org.springframework.experimental.ai`
|
||||
* **FROM**: `org.springframework.ai`
|
||||
* **TO**: `org.springframework.ai`
|
||||
|
||||
Artifacts will still be hosted in the snapshot repository as shown below.
|
||||
@@ -28,7 +28,7 @@ You can access `0.7.1-SNAPSHOT` artifacts as before and still access [0.7.1-SNAP
|
||||
|
||||
## Cloning the repo
|
||||
|
||||
This repository contains [large model files](https://github.com/spring-projects/spring-ai/tree/main/embedding-clients/transformers-embedding/src/main/resources/onnx/all-MiniLM-L6-v2).
|
||||
This repository contains [large model files](https://github.com/spring-projects/spring-ai/tree/main/embedding-clients/transformers-embedding/src/main/resources/onnx/all-MiniLM-L6-v2).
|
||||
To clone it you have to either:
|
||||
|
||||
- Ignore the large files (won't affect the spring-ai behaviour) : `GIT_LFS_SKIP_SMUDGE=1 git clone git@github.com:spring-projects/spring-ai.git`.
|
||||
@@ -37,8 +37,8 @@ To clone it you have to either:
|
||||
## Project Links
|
||||
|
||||
* [Documentation](https://docs.spring.io/spring-ai/reference/)
|
||||
* [Issues](https://github.com/spring-projects-experimental/spring-ai/issues)
|
||||
* [Discussions](https://github.com/spring-projects-experimental/spring-ai/discussions) - Go here if you have a question, suggestion, or feedback!
|
||||
* [Issues](https://github.com/spring-projects/spring-ai/issues)
|
||||
* [Discussions](https://github.com/spring-projects/spring-ai/discussions) - Go here if you have a question, suggestion, or feedback!
|
||||
* [JavaDocs](https://docs.spring.io/spring-ai/docs/current-SNAPSHOT/)
|
||||
|
||||
## Educational Resources
|
||||
@@ -80,7 +80,7 @@ Please use the 0.7.1-SNAPSHOT if you don't want to be on the bleeding edge.
|
||||
* Azure OpenAI
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>org.springframework.experimental.ai</groupId>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-azure-openai-spring-boot-starter</artifactId>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
@@ -90,7 +90,7 @@ Please use the 0.7.1-SNAPSHOT if you don't want to be on the bleeding edge.
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>org.springframework.experimental.ai</groupId>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
@@ -101,7 +101,7 @@ Please use the 0.7.1-SNAPSHOT if you don't want to be on the bleeding edge.
|
||||
* Azure OpenAI
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>org.springframework.experimental.ai</groupId>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-azure-openai-spring-boot-starter</artifactId>
|
||||
<version>0.7.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
@@ -111,7 +111,7 @@ Please use the 0.7.1-SNAPSHOT if you don't want to be on the bleeding edge.
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>org.springframework.experimental.ai</groupId>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
|
||||
<version>0.7.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
@@ -123,7 +123,7 @@ Please use the 0.7.1-SNAPSHOT if you don't want to be on the bleeding edge.
|
||||
* To use the workshop material with OpenAI (not Azure's offering) you will need to *replace* the Azure Open AI Boot Starter in the `pom.xml` with the Open AI Boot Starter.
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>org.springframework.experimental.ai</groupId>
|
||||
<groupId>org.springframework.ai</groupId>
|
||||
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
|
||||
<version>0.7.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Document Reader - PDF</name>
|
||||
<description>Spring AI PDF document reader</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Document Reader - Tika</name>
|
||||
<description>Spring AI Tika document reader</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Embedding Client - PostgresML</name>
|
||||
<description>Spring AI PostgresML Embedding Client</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Transormers Embedding Client</name>
|
||||
<description>Spring AI Transformers Embedding Client</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -39,11 +39,11 @@ public class TransformersEmbeddingClient extends AbstractEmbeddingClient impleme
|
||||
private static final Log logger = LogFactory.getLog(TransformersEmbeddingClient.class);
|
||||
|
||||
// ONNX tokenizer for the all-MiniLM-L6-v2 model
|
||||
public final static String DEFAULT_ONNX_TOKENIZER_URI = "https://raw.githubusercontent.com/spring-projects-experimental/spring-ai/main/embedding-clients/transformers-embedding/src/main/resources/onnx/all-MiniLM-L6-v2/tokenizer.json";
|
||||
public final static String DEFAULT_ONNX_TOKENIZER_URI = "https://raw.githubusercontent.com/spring-projects/spring-ai/main/embedding-clients/transformers-embedding/src/main/resources/onnx/all-MiniLM-L6-v2/tokenizer.json";
|
||||
|
||||
// ONNX model for all-MiniLM-L6-v2 pre-trained transformer:
|
||||
// https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2
|
||||
public final static String DEFAULT_ONNX_MODEL_URI = "https://github.com/spring-projects-experimental/spring-ai/raw/main/embedding-clients/transformers-embedding/src/main/resources/onnx/all-MiniLM-L6-v2/model.onnx";
|
||||
public final static String DEFAULT_ONNX_MODEL_URI = "https://github.com/spring-projects/spring-ai/raw/main/embedding-clients/transformers-embedding/src/main/resources/onnx/all-MiniLM-L6-v2/model.onnx";
|
||||
|
||||
public final static String DEFAULT_MODEL_OUTPUT_NAME = "last_hidden_state";
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ public class ResourceCacheServiceTests {
|
||||
public void cacheHttpResources() throws IOException {
|
||||
var cache = new ResourceCacheService(tempDir);
|
||||
|
||||
var originalResourceUri1 = "https://raw.githubusercontent.com/spring-projects-experimental/spring-ai/main/spring-ai-core/src/main/resources/embedding/embedding-model-dimensions.properties";
|
||||
var originalResourceUri1 = "https://raw.githubusercontent.com/spring-projects/spring-ai/main/spring-ai-core/src/main/resources/embedding/embedding-model-dimensions.properties";
|
||||
var cachedResource1 = cache.getCachedResource(originalResourceUri1);
|
||||
|
||||
assertThat(cachedResource1).isNotEqualTo(new DefaultResourceLoader().getResource(originalResourceUri1));
|
||||
|
||||
12
pom.xml
12
pom.xml
@@ -7,7 +7,7 @@
|
||||
<version>0.8.0-SNAPSHOT</version>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<name>Spring AI</name>
|
||||
<description>Building AI applications with Spring Boot</description>
|
||||
@@ -46,17 +46,17 @@
|
||||
<url>https://spring.io</url>
|
||||
</organization>
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>Github Issues</system>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai/issues</url>
|
||||
<url>https://github.com/spring-projects/spring-ai/issues</url>
|
||||
</issueManagement>
|
||||
<ciManagement>
|
||||
<system>Github Actions</system>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai/actions</url>
|
||||
<url>https://github.com/spring-projects/spring-ai/actions</url>
|
||||
</ciManagement>
|
||||
<distributionManagement>
|
||||
<snapshotRepository>
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Azure OpenAI</name>
|
||||
<description>OpenAI support</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Core</name>
|
||||
<description>Core domain for AI programming</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Output Parsing
|
||||
|
||||
* [Documentation](https://docs.spring.io/spring-ai/reference/concepts.html#_output_parsing)
|
||||
* [Usage examples](https://github.com/spring-projects-experimental/spring-ai/blob/main/spring-ai-openai/src/test/java/org/springframework/ai/openai/client/ClientIT.java)
|
||||
* [Usage examples](https://github.com/spring-projects/spring-ai/blob/main/spring-ai-openai/src/test/java/org/springframework/ai/openai/client/ClientIT.java)
|
||||
|
||||
The output of AI models traditionally arrives as a java.util.String, even if you ask for the reply to be in JSON. It may be the correct JSON, but it isn’t a JSON data structure. It is just a string. Also, asking "for JSON" as part of the prompt isn’t 100% accurate.
|
||||
|
||||
|
||||
@@ -249,7 +249,7 @@ You can find the Javadoc https://docs.spring.io/spring-ai/docs/current-SNAPSHOT/
|
||||
|
||||
== Feedback and Contributions
|
||||
|
||||
The project's https://github.com/spring-projects-experimental/spring-ai/discussions[GitHub discussions] is a great place to send feedback.
|
||||
The project's https://github.com/spring-projects/spring-ai/discussions[GitHub discussions] is a great place to send feedback.
|
||||
|
||||
== Related Resources
|
||||
|
||||
|
||||
@@ -80,7 +80,7 @@ Add the Spring Boot Starter, depending on whether you use Azure Open AI or Open
|
||||
|
||||
The Spring CLI makes it easy to create new applications with code in your terminal window. Think of it as the 'create-react-app' of Spring for those familiar with the JavaScript ecosystem.
|
||||
|
||||
Download the latest https://github.com/spring-projects-experimental/spring-cli/releases[Spring CLI Release]
|
||||
Download the latest https://github.com/spring-projects/spring-cli/releases[Spring CLI Release]
|
||||
and follow the https://docs.spring.io/spring-cli/reference/installation.html#_setting_up_your_path_or_alias[instructions] to add `spring` to your `PATH`.
|
||||
|
||||
Create a simple AI application:
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<html>
|
||||
<body>
|
||||
<p>
|
||||
This document is the API specification for <a href="https://github.com/spring-projects-experimental/spring-ai" target="_top">Spring AI</a>
|
||||
This document is the API specification for <a href="https://github.com/spring-projects/spring-ai" target="_top">Spring AI</a>
|
||||
</p>
|
||||
<div id="overviewBody">
|
||||
<p>
|
||||
For further API reference and developer documentation, see the
|
||||
<a href="https://spring-projects-experimental.github.io/spring-ai/spring-ai/" target="_top">
|
||||
<a href="https://spring-projects.github.io/spring-ai/spring-ai/" target="_top">
|
||||
Spring AI reference documentation</a>.
|
||||
That documentation contains more detailed, developer-targeted
|
||||
descriptions, with conceptual overviews, definitions of terms,
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI HuggingFace</name>
|
||||
<description>HuggingFace support</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI OpenAI</name>
|
||||
<description>OpenAI support</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Auto Configuration</name>
|
||||
<description>Spring AI Auto Configuration</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Starter - Azure OpenAI</name>
|
||||
<description>Spring AI Azure OpenAI Auto Configuration</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Starter - Ollama</name>
|
||||
<description>Spring AI Ollama Auto Configuration</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Starter - OpenAI</name>
|
||||
<description>Spring AI Open AI Auto Configuration</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Starter - Transformers Embedding</name>
|
||||
<description>Spring Transformers Embedding Auto Configuration</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -11,12 +11,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Starter - VertexAI</name>
|
||||
<description>Spring AI VertexAI Auto Configuration</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Test</name>
|
||||
<description>Test support for AI programming</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI - Azure AI Search Vector Store</name>
|
||||
<description>Spring AI - Azure AI Search Vector Store</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Chroma Vector Store</name>
|
||||
<description>Spring AI Chroma Vector Store</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Milvus Vector Store</name>
|
||||
<description>Spring AI Milvus Vector Store</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Vector Store - neo4j</name>
|
||||
<description>Spring AI Neo4j Vector Store</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>Spring AI Vector Store - pgvector</name>
|
||||
<description>Spring AI PGVector Vector Store</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
<packaging>jar</packaging>
|
||||
<name>spring-ai-pinecone</name>
|
||||
<description>spring-ai-pinecone</description>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
|
||||
<scm>
|
||||
<url>https://github.com/spring-projects-experimental/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects-experimental/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects-experimental/spring-ai.git</developerConnection>
|
||||
<url>https://github.com/spring-projects/spring-ai</url>
|
||||
<connection>git://github.com/spring-projects/spring-ai.git</connection>
|
||||
<developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
Reference in New Issue
Block a user