Compare commits

...

4 Commits

Author SHA1 Message Date
github-actions[bot]
b8c888d69d chore(release): Update version to v1.4.388 2026-01-23 05:40:08 +00:00
Kayvan Sylvan
866886cdd2 Merge pull request #1957 from ksylvan/kayvan/add-novita-provider
Add Novita AI as a new OpenAI-compatible provider
2026-01-22 21:37:33 -08:00
Kayvan Sylvan
7ce7d6c637 chore: incoming 1957 changelog entry 2026-01-22 21:35:33 -08:00
Kayvan Sylvan
f18d6cc574 feat: 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
2026-01-22 21:33:20 -08:00
6 changed files with 17 additions and 2 deletions

View File

@@ -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

View File

@@ -390,6 +390,7 @@ Fabric supports a wide range of AI providers:
- LiteLLM
- MiniMax
- Mistral
- Novita AI
- OpenRouter
- SiliconCloud
- Together

View File

@@ -1,3 +1,3 @@
package main
var version = "v1.4.387"
var version = "v1.4.388"

Binary file not shown.

View File

@@ -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",

View File

@@ -1 +1 @@
"1.4.387"
"1.4.388"