Skip to content

Commit 6ef631f

Browse files
committed
release: bump to version 0.12.0 to track Redis VL Python
- Remove application.properties from git (contains API keys) - Rename to application.properties.sample as template - Add application.properties to .gitignore
1 parent 741144e commit 6ef631f

File tree

8 files changed

+53
-7
lines changed

8 files changed

+53
-7
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,6 @@ notebooks/*_test.ipynb
8080
notebooks/*_output.ipynb
8181

8282
spotbugs-output.txt
83+
84+
# Demos
85+
demos/rag-multimodal/src/main/resources/application.properties

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ Add RedisVL to your Java (17+) project using Maven or Gradle:
4848
<dependency>
4949
<groupId>com.redis</groupId>
5050
<artifactId>redisvl</artifactId>
51-
<version>0.0.1</version>
51+
<version>0.12.0</version>
5252
</dependency>
5353
```
5454

5555
**Gradle:**
5656
```gradle
57-
implementation 'com.redis:redisvl:0.0.1'
57+
implementation 'com.redis:redisvl:0.12.0'
5858
```
5959

6060
## Setting up Redis

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ tasks.wrapper {
145145
// Task to copy jar to notebooks directory for Jupyter
146146
tasks.register<Copy>("copyJarToNotebooks") {
147147
dependsOn(":core:jar")
148-
from("core/build/libs/redisvl-0.0.1.jar")
148+
from("core/build/libs/redisvl-0.12.0.jar")
149149
into("notebooks")
150150
}
151151

demos/blog-demo/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.redis.vl.demos"
7-
version = "0.0.1"
7+
version = "0.12.0"
88

99
repositories {
1010
mavenCentral()

demos/rag-multimodal/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "com.redis.vl.demo"
8-
version = "0.0.1"
8+
version = "0.12.0"
99

1010
java {
1111
sourceCompatibility = JavaVersion.VERSION_21
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# RedisVL Multimodal RAG Demo Configuration
2+
3+
# Redis Connection
4+
redis.host=localhost
5+
redis.port=6399
6+
7+
# LLM Provider Configuration
8+
# Supported providers: OPENAI, ANTHROPIC, AZURE, OLLAMA
9+
llm.provider=OPENAI
10+
11+
# OpenAI Configuration
12+
openai.api.key=YOUR_OPENAI_API_KEY_HERE
13+
openai.model=gpt-4o
14+
openai.temperature=0.7
15+
openai.max.tokens=2048
16+
17+
# Anthropic Configuration
18+
anthropic.api.key=YOUR_ANTHROPIC_API_KEY_HERE
19+
anthropic.model=claude-3-5-sonnet-20241022
20+
anthropic.temperature=0.7
21+
anthropic.max.tokens=2048
22+
23+
# Azure OpenAI Configuration
24+
azure.api.key=YOUR_AZURE_API_KEY_HERE
25+
azure.endpoint=YOUR_AZURE_ENDPOINT_HERE
26+
azure.deployment.name=gpt-4o
27+
28+
# Ollama Configuration (local, no API key needed)
29+
ollama.base.url=http://localhost:11434
30+
ollama.model=llama3.2-vision
31+
32+
# LangCache Configuration (RedisVL Semantic Cache)
33+
langcache.enabled=true
34+
langcache.url=https://aws-us-east-1.langcache.redis.io
35+
langcache.cache.id=8675309
36+
langcache.api.key=YOUR_LANGCACHE_APU_KEY
37+
38+
# RAG Configuration
39+
rag.max.results=5
40+
rag.min.score=0.7
41+
42+
# PDF Processing
43+
pdf.max.pages=500

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = 0.0.1
1+
version = 0.12.0

notebooks/jupyter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN chmod +x gradlew && ./gradlew clean build publishToMavenLocal -x test
3636
WORKDIR /home/jovyan/java
3737

3838
# Copy the built JAR to a known location (excluding javadoc and sources JARs)
39-
RUN cp /home/jovyan/redisvl-src/core/build/libs/redisvl-0.0.1.jar /home/jovyan/java/redisvl-core.jar
39+
RUN cp /home/jovyan/redisvl-src/core/build/libs/redisvl-0.12.0.jar /home/jovyan/java/redisvl-core.jar
4040

4141
# Download all dependencies including Jedis and its transitive dependencies
4242
RUN mvn dependency:copy-dependencies -DoutputDirectory=./lib

0 commit comments

Comments
 (0)