Skip to content
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
89f8432
feature:add Wenxin model client
lvchzh May 30, 2024
cabbdbf
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 6, 2024
110dd67
chore: modify the spring-ai-wenxin model name
lvchzh Jun 6, 2024
aa23d42
Resolve Conflict
lvchzh Jun 18, 2024
2f88aac
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 18, 2024
0474110
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 19, 2024
27ab829
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 20, 2024
710ef57
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 20, 2024
6e0ad50
add unit test demo and doc
lvchzh Jun 25, 2024
3a17099
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 27, 2024
63e1de7
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jun 28, 2024
140e498
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 3, 2024
cc70e15
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 8, 2024
c33bcd0
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 9, 2024
c7ee720
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 16, 2024
984c934
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 16, 2024
73a8a2f
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 19, 2024
bb08b7e
resovle conflicts
lvchzh Jul 25, 2024
a5664f6
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 25, 2024
71e8cee
fix bug #1118 & #1117
lvchzh Jul 25, 2024
2021b90
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 26, 2024
f6cf270
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 27, 2024
4bb12ff
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 28, 2024
28ea002
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Jul 31, 2024
ce02832
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Aug 3, 2024
076d339
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Aug 7, 2024
7334957
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Aug 12, 2024
ae339df
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Aug 20, 2024
578b5ef
Merge branch 'main' of github:spring-projects/spring-ai
lvchzh Aug 21, 2024
f8f2d00
fix compile error
lvchzh Aug 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
95 changes: 95 additions & 0 deletions models/spring-ai-wenxin/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>spring-ai-wenxin</artifactId>
<packaging>jar</packaging>
<name>Spring AI Model - Wenxin</name>
<description>Wenxin support</description>
<url>https://github.com/spring-projects/spring-ai</url>

<scm>
<url>https://github.com/spring-projects/spring-ai</url>
<connection>git://github.com/spring-projects/spring-ai.git</connection>
<developerConnection>[email protected]:spring-projects/spring-ai.git</developerConnection>
</scm>

<dependencies>

<!-- codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>

<!-- production dependencies -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-core</artifactId>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-retry</artifactId>
<version>${project.parent.version}</version>
</dependency>

<!-- NOTE: Required only by the @ConstructorBinding. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>

<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>json-path</artifactId>
</dependency>


<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator</artifactId>
<version>${victools.version}</version>
</dependency>

<dependency>
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-module-jackson</artifactId>
<version>${victools.version}</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>


</dependencies>
<repositories>
<repository>
<id>maven_central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
</repositories>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.springframework.ai.wenxin;

/**
* @author lvchzh
* @date 2024年05月27日 上午9:32
* @description:
*/
public class WenxinAudioSpeechModel {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.springframework.ai.wenxin;

/**
* @author lvchzh
* @date 2024年05月27日 上午9:33
* @description:
*/
public class WenxinAudioSpeechOptions {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.springframework.ai.wenxin;

/**
* @author lvchzh
* @date 2024年05月14日 下午5:06
* @description:
*/
public class WenxinAudioTranscriptionModel {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.springframework.ai.wenxin;

/**
* @author lvchzh
* @date 2024年05月14日 下午5:13
* @description:
*/
public class WenxinAudioTranscriptionOptions {

}
Loading