mirror of
https://github.com/danielmiessler/fabric.git
synced 2026-09-10 07:36:44 -04:00
Merge branch 'main' into fix/sse-utf8-stream-boundary
This commit is contained in:
commit
b185a5c790
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## v1.4.472 (2026-08-29)
|
||||
|
||||
### PR [#2198](https://github.com/danielmiessler/Fabric/pull/2198) by [cuihuan](https://github.com/cuihuan): feat(providers): add Synthorai as an OpenAI-compatible provider
|
||||
|
||||
- Feat(providers): add Synthorai as an OpenAI-compatible provider
|
||||
|
||||
### Direct commits
|
||||
|
||||
- Chore: delete generate_changelog noise in README.
|
||||
|
||||
## v1.4.471 (2026-08-28)
|
||||
|
||||
### PR [#2200](https://github.com/danielmiessler/Fabric/pull/2200) by [ksylvan](https://github.com/ksylvan): fix: persist Codex OAuth tokens after refresh
|
||||
|
|
|
|||
|
|
@ -375,6 +375,7 @@ Fabric supports a wide range of AI providers:
|
|||
- Novita AI
|
||||
- OpenRouter
|
||||
- SiliconCloud
|
||||
- Synthorai
|
||||
- Together
|
||||
- Venice AI
|
||||
- Z AI
|
||||
|
|
|
|||
|
|
@ -358,7 +358,7 @@ fabric --setup
|
|||
|
||||
**OpenAI 兼容供应商:**
|
||||
|
||||
- Abacus、AIML、Cerebras、DeepSeek、DigitalOcean、GitHub Models、GrokAI、Groq、Langdock、LiteLLM、MiniMax、Mistral、Novita AI、OpenRouter、SiliconCloud、Together、Venice AI、Z AI
|
||||
- Abacus、AIML、Cerebras、DeepSeek、DigitalOcean、GitHub Models、GrokAI、Groq、Langdock、LiteLLM、MiniMax、Mistral、Novita AI、OpenRouter、SiliconCloud、Synthorai、Together、Venice AI、Z AI
|
||||
|
||||
运行 `fabric --setup` 配置首选供应商,或使用 `fabric --listvendors` 查看所有可用供应商。
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
package main
|
||||
|
||||
var version = "v1.4.471"
|
||||
var version = "v1.4.472"
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -294,6 +294,11 @@ var ProviderMap = map[string]ProviderConfig{
|
|||
BaseURL: "https://api.siliconflow.cn/v1",
|
||||
ImplementsResponses: false,
|
||||
},
|
||||
"Synthorai": {
|
||||
Name: "Synthorai",
|
||||
BaseURL: "https://synthorai.io/v1",
|
||||
ImplementsResponses: false,
|
||||
},
|
||||
"Together": {
|
||||
Name: "Together",
|
||||
BaseURL: "https://api.together.xyz/v1",
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
"1.4.471"
|
||||
"1.4.472"
|
||||
|
|
|
|||
Loading…
Reference in a new issue