Spaces:
Sleeping
Sleeping
Update JAR files
Browse files- .gitattributes +1 -0
- target/classes/META-INF/spring-configuration-metadata.json +33 -0
- target/classes/application.properties.txt +20 -0
- target/maven-archiver/pom.properties +3 -0
- target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +16 -0
- target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +4 -0
- target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +1 -0
- target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +1 -0
- target/p1-0.0.1-SNAPSHOT.jar +3 -0
- target/p1-0.0.1-SNAPSHOT.jar.original +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
target/p1-0.0.1-SNAPSHOT.jar filter=lfs diff=lfs merge=lfs -text
|
target/classes/META-INF/spring-configuration-metadata.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"groups": [
|
3 |
+
{
|
4 |
+
"name": "gemini.api",
|
5 |
+
"type": "com.example.p1.config.AiConfiguration",
|
6 |
+
"sourceType": "com.example.p1.config.AiConfiguration"
|
7 |
+
}
|
8 |
+
],
|
9 |
+
"properties": [
|
10 |
+
{
|
11 |
+
"name": "gemini.api.base-url",
|
12 |
+
"type": "java.lang.String",
|
13 |
+
"sourceType": "com.example.p1.config.AiConfiguration"
|
14 |
+
},
|
15 |
+
{
|
16 |
+
"name": "gemini.api.key",
|
17 |
+
"type": "java.lang.String",
|
18 |
+
"sourceType": "com.example.p1.config.AiConfiguration"
|
19 |
+
},
|
20 |
+
{
|
21 |
+
"name": "gemini.api.model",
|
22 |
+
"type": "java.lang.String",
|
23 |
+
"sourceType": "com.example.p1.config.AiConfiguration"
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"name": "gemini.api.timeout",
|
27 |
+
"type": "java.lang.Integer",
|
28 |
+
"sourceType": "com.example.p1.config.AiConfiguration",
|
29 |
+
"defaultValue": 30000
|
30 |
+
}
|
31 |
+
],
|
32 |
+
"hints": []
|
33 |
+
}
|
target/classes/application.properties.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
spring.application.name=p1
|
2 |
+
|
3 |
+
# Server Configuration
|
4 |
+
server.port=8080
|
5 |
+
|
6 |
+
# Gemini AI Configuration
|
7 |
+
gemini.api.key=${GEMINI_API_KEY:YOUR_KEY}
|
8 |
+
gemini.api.base-url=https://generativelanguage.googleapis.com/v1beta/models
|
9 |
+
gemini.api.model=gemini-2.5-flash
|
10 |
+
gemini.api.timeout=30000
|
11 |
+
|
12 |
+
# Logging
|
13 |
+
logging.level.com.example.p1=DEBUG
|
14 |
+
logging.level.org.springframework.web=DEBUG
|
15 |
+
|
16 |
+
# CORS Configuration
|
17 |
+
cors.allowed-origins=http://localhost:3000,http://localhost:8080
|
18 |
+
cors.allowed-methods=GET,POST,PUT,DELETE,OPTIONS
|
19 |
+
cors.allowed-headers=*
|
20 |
+
*/
|
target/maven-archiver/pom.properties
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
artifactId=p1
|
2 |
+
groupId=com.example
|
3 |
+
version=0.0.1-SNAPSHOT
|
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
com/example/p1/controller/ChatController$ConversationRequest$Message.class
|
2 |
+
META-INF/spring-configuration-metadata.json
|
3 |
+
com/example/p1/service/ChatService$GeminiResponse$Candidate.class
|
4 |
+
com/example/p1/service/ChatService$GeminiResponse$Part.class
|
5 |
+
com/example/p1/service/ChatService$GeminiResponse.class
|
6 |
+
com/example/p1/controller/ChatController$ConversationRequest.class
|
7 |
+
com/example/p1/service/ChatService.class
|
8 |
+
com/example/p1/service/ChatService$GeminiRequest$Part.class
|
9 |
+
com/example/p1/service/ChatService$GeminiRequest.class
|
10 |
+
com/example/p1/controller/ChatController$ChatResponse.class
|
11 |
+
com/example/p1/P1Application.class
|
12 |
+
com/example/p1/config/AiConfiguration.class
|
13 |
+
com/example/p1/controller/ChatController.class
|
14 |
+
com/example/p1/service/ChatService$GeminiRequest$Content.class
|
15 |
+
com/example/p1/service/ChatService$GeminiResponse$Content.class
|
16 |
+
com/example/p1/controller/ChatController$ChatRequest.class
|
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/home/runner/work/spring-gemini-chat/spring-gemini-chat/src/main/java/com/example/p1/service/ChatService.java
|
2 |
+
/home/runner/work/spring-gemini-chat/spring-gemini-chat/src/main/java/com/example/p1/controller/ChatController.java
|
3 |
+
/home/runner/work/spring-gemini-chat/spring-gemini-chat/src/main/java/com/example/p1/P1Application.java
|
4 |
+
/home/runner/work/spring-gemini-chat/spring-gemini-chat/src/main/java/com/example/p1/config/AiConfiguration.java
|
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
com/example/p1/P1ApplicationTests.class
|
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
/home/runner/work/spring-gemini-chat/spring-gemini-chat/src/test/java/com/example/p1/P1ApplicationTests.java
|
target/p1-0.0.1-SNAPSHOT.jar
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:737d1418bd10c5c01597913344780df06decdabf6443e8a09a23459e0b05fb6d
|
3 |
+
size 38869348
|
target/p1-0.0.1-SNAPSHOT.jar.original
ADDED
Binary file (20.1 kB). View file
|
|