Skip to content

Commit

Permalink
minor polish
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Apr 1, 2024
1 parent d8df154 commit 7792408
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 3 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,26 @@
"projectName": "pgvector-langchain4j",
"args": "--spring.profiles.active=local",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "java",
"name": "Spring Boot-Application<chatmodel-springai>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "com.example.ai.Application",
"projectName": "chatmodel-springai",
"args": "",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "java",
"name": "Spring Boot-Neo4jVectorEmbeddingStoreExample<neo4j-springai>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "com.learning.ai.Neo4jVectorEmbeddingStoreExample",
"projectName": "neo4j-springai",
"args": "--spring.profiles.active=local",
"envFile": "${workspaceFolder}/.env"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
spring.neo4j.uri=bolt://localhost:7687
spring.data.neo4j.database=neo4j
spring.neo4j.authentication.username=neo4j
spring.neo4j.authentication.password=password
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
spring.application.name=neo4j-springai

spring.ai.openai.api-key=demo
spring.ai.openai.base-url=http://langchain4j.dev/demo/openai
spring.ai.openai.image.enabled=false
Expand Down
2 changes: 1 addition & 1 deletion embeddingstores/opensearch-langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</parent>

<groupId>org.example.ai</groupId>
<artifactId>ai-opensearch-langchain4j</artifactId>
<artifactId>opensearch-langchain4j</artifactId>
<version>1.0.0-SNAPSHOT</version>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
spring.application.name=pgvector-springai

spring.ai.openai.api-key=demo
spring.ai.openai.base-url=http://langchain4j.dev/demo/openai
spring.ai.openai.image.enabled=false
Expand Down
4 changes: 2 additions & 2 deletions playground-langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.example</groupId>
<artifactId>playground</artifactId>
<groupId>org.example.ai</groupId>
<artifactId>playground-langchain4j</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
Expand Down

0 comments on commit 7792408

Please sign in to comment.