mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-23 13:18:04 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b8c888d69d | ||
|
|
866886cdd2 | ||
|
|
7ce7d6c637 | ||
|
|
f18d6cc574 |
@@ -1,5 +1,14 @@
|
||||
# Changelog
|
||||
|
||||
## v1.4.388 (2026-01-23)
|
||||
|
||||
### PR [#1957](https://github.com/danielmiessler/Fabric/pull/1957) by [ksylvan](https://github.com/ksylvan): Add Novita AI as a new OpenAI-compatible provider
|
||||
|
||||
- Add Novita AI as a new OpenAI-compatible provider
|
||||
- Add Novita AI provider configuration with API endpoint
|
||||
- Update README to include Novita AI in supported providers list
|
||||
- Configure Novita AI to use OpenAI-compatible interface
|
||||
|
||||
## v1.4.387 (2026-01-21)
|
||||
|
||||
### PR [#1950](https://github.com/danielmiessler/Fabric/pull/1950) by [cleong14](https://github.com/cleong14): feat: add suggest_gt_command pattern
|
||||
|
||||
@@ -390,6 +390,7 @@ Fabric supports a wide range of AI providers:
|
||||
- LiteLLM
|
||||
- MiniMax
|
||||
- Mistral
|
||||
- Novita AI
|
||||
- OpenRouter
|
||||
- SiliconCloud
|
||||
- Together
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package main
|
||||
|
||||
var version = "v1.4.387"
|
||||
var version = "v1.4.388"
|
||||
|
||||
Binary file not shown.
@@ -180,6 +180,11 @@ var ProviderMap = map[string]ProviderConfig{
|
||||
BaseURL: "https://api.mistral.ai/v1",
|
||||
ImplementsResponses: false,
|
||||
},
|
||||
"Novita AI": {
|
||||
Name: "Novita AI",
|
||||
BaseURL: "https://api.novita.ai/openai/v1",
|
||||
ImplementsResponses: false,
|
||||
},
|
||||
"OpenRouter": {
|
||||
Name: "OpenRouter",
|
||||
BaseURL: "https://openrouter.ai/api/v1",
|
||||
|
||||
@@ -1 +1 @@
|
||||
"1.4.387"
|
||||
"1.4.388"
|
||||
|
||||
Reference in New Issue
Block a user