mirror of
https://gitee.com/agents-flex/agents-flex.git
synced 2024-11-29 18:38:17 +08:00
build: v1.0.0-beta.10 release (^.^)YYa!!
This commit is contained in:
parent
414f7904c3
commit
2fa7efaf85
20
changes.md
20
changes.md
@ -1,6 +1,26 @@
|
||||
# Agents-Flex ChangeLog
|
||||
|
||||
|
||||
## v1.0.0-beta.10 20240909
|
||||
- feat: Added support for RedisStore vector storage, thanks to @giteeClass
|
||||
- feat: Added support for large model dialogues for Coze Bot, thanks to @yulongsheng
|
||||
- feat: Automatic configuration of Springboot for ElasticSearch Store, thanks to @songyinyin
|
||||
- feat: Added support for Embedding of Tongyi Qianwen, thanks to @sssllg
|
||||
- feat: Added support for all text generation models of Gitee AI's serverless
|
||||
- feat: Added support for all image generation models of Gitee AI's serverless
|
||||
- docs: Corrected sample code errors in the documentation
|
||||
|
||||
---
|
||||
- 新增:添加 RedisStore 的向量存储支持,感谢 @giteeClass
|
||||
- 新增:新增 Coze Bot 的大模型对话支持,感谢 @yulongsheng
|
||||
- 新增: ElasticSearch Store 对 Springboot 的自动配置功能,感谢@songyinyin
|
||||
- 新增:新增通义千问的 Embedding 支持,感谢 @sssllg
|
||||
- 新增:新增对 Gitee AI 的 serverless 所有文本生成模型的支持
|
||||
- 新增:新增对 Gitee AI 的 serverless 所有图片生成模型的支持
|
||||
- 文档:修正文档的示例代码错误
|
||||
|
||||
|
||||
|
||||
## v1.0.0-beta.9 20240813
|
||||
- feat: add custom request header in openaiLLM https://github.com/agents-flex/agents-flex/issues/5
|
||||
- feat: add https.proxyHost config for the http client, close https://github.com/agents-flex/agents-flex/issues/1
|
||||
|
@ -17,14 +17,14 @@ Before you begin, ensure you are:
|
||||
<dependency>
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>agents-flex-bom</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
Or use Gradle:
|
||||
|
||||
```java
|
||||
implementation 'com.agentsflex:agents-flex-bom:1.0.0-beta.9'
|
||||
implementation 'com.agentsflex:agents-flex-bom:1.0.0-beta.10'
|
||||
```
|
||||
|
||||
**Step 2: Create a Java class with a `main` method:**
|
||||
|
@ -12,7 +12,7 @@ You can check the latest version at: https://search.maven.org/artifact/com.agent
|
||||
<dependency>
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>agents-flex-spring-boot-starter</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
@ -23,6 +23,6 @@ You can check the latest version at: https://search.maven.org/artifact/com.agent
|
||||
<dependency>
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>agents-flex-bom</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
</dependency>
|
||||
```
|
||||
|
@ -1,6 +1,26 @@
|
||||
# Agents-Flex ChangeLog
|
||||
|
||||
|
||||
## v1.0.0-beta.10 20240909
|
||||
- feat: Added support for RedisStore vector storage, thanks to @giteeClass
|
||||
- feat: Added support for large model dialogues for Coze Bot, thanks to @yulongsheng
|
||||
- feat: Automatic configuration of Springboot for ElasticSearch Store, thanks to @songyinyin
|
||||
- feat: Added support for Embedding of Tongyi Qianwen, thanks to @sssllg
|
||||
- feat: Added support for all text generation models of Gitee AI's serverless
|
||||
- feat: Added support for all image generation models of Gitee AI's serverless
|
||||
- docs: Corrected sample code errors in the documentation
|
||||
|
||||
---
|
||||
- 新增:添加 RedisStore 的向量存储支持,感谢 @giteeClass
|
||||
- 新增:新增 Coze Bot 的大模型对话支持,感谢 @yulongsheng
|
||||
- 新增: ElasticSearch Store 对 Springboot 的自动配置功能,感谢@songyinyin
|
||||
- 新增:新增通义千问的 Embedding 支持,感谢 @sssllg
|
||||
- 新增:新增对 Gitee AI 的 serverless 所有文本生成模型的支持
|
||||
- 新增:新增对 Gitee AI 的 serverless 所有图片生成模型的支持
|
||||
- 文档:修正文档的示例代码错误
|
||||
|
||||
|
||||
|
||||
## v1.0.0-beta.9 20240813
|
||||
- feat: add custom request header in openaiLLM https://github.com/agents-flex/agents-flex/issues/5
|
||||
- feat: add https.proxyHost config for the http client, close https://github.com/agents-flex/agents-flex/issues/1
|
||||
|
@ -17,14 +17,14 @@
|
||||
<dependency>
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>agents-flex-bom</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
或者使用 Gradle:
|
||||
|
||||
```java
|
||||
implementation 'com.agentsflex:agents-flex-bom:1.0.0-beta.9'
|
||||
implementation 'com.agentsflex:agents-flex-bom:1.0.0-beta.10'
|
||||
```
|
||||
|
||||
**第 2 步:创建一个带有 Main 方法的 Java 类**
|
||||
|
@ -10,7 +10,7 @@
|
||||
<dependency>
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>agents-flex-bom</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
@ -20,6 +20,6 @@
|
||||
<dependency>
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>agents-flex-spring-boot-starter</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
</dependency>
|
||||
```
|
||||
|
4
pom.xml
4
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>com.agentsflex</groupId>
|
||||
<artifactId>parent</artifactId>
|
||||
<version>1.0.0-beta.9</version>
|
||||
<version>1.0.0-beta.10</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>agents-flex</name>
|
||||
@ -62,7 +62,7 @@
|
||||
<okhttp.version>4.9.3</okhttp.version>
|
||||
<fastjson.version>2.0.47</fastjson.version>
|
||||
<spring-boot.version>2.7.18</spring-boot.version>
|
||||
<agents-flex.version>1.0.0-beta.9</agents-flex.version>
|
||||
<agents-flex.version>1.0.0-beta.10</agents-flex.version>
|
||||
</properties>
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user