mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-13 08:17:56 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
74250bbcbd | ||
|
|
a593e83d9f | ||
|
|
62e6812c7f | ||
|
|
7e7ab9e5f2 |
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@@ -117,6 +117,7 @@
|
||||
"listvendors",
|
||||
"lmstudio",
|
||||
"Makefiles",
|
||||
"Mammouth",
|
||||
"markmap",
|
||||
"matplotlib",
|
||||
"mattn",
|
||||
|
||||
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,5 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## v1.4.377 (2026-01-12)
|
||||
|
||||
### PR [#1929](https://github.com/danielmiessler/Fabric/pull/1929) by [ksylvan](https://github.com/ksylvan): Add Mammouth as new OpenAI-compatible AI provider
|
||||
|
||||
- Feat: add Mammouth as new OpenAI-compatible AI provider
|
||||
- Add Mammouth provider configuration with API base URL
|
||||
- Configure Mammouth to use standard OpenAI-compatible interface
|
||||
- Disable Responses API implementation for Mammouth provider
|
||||
- Add "Mammouth" to VSCode spell check dictionary
|
||||
|
||||
## v1.4.376 (2026-01-12)
|
||||
|
||||
### PR [#1928](https://github.com/danielmiessler/Fabric/pull/1928) by [ksylvan](https://github.com/ksylvan): Eliminate repetitive boilerplate across eight vendor implementations
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package main
|
||||
|
||||
var version = "v1.4.376"
|
||||
var version = "v1.4.377"
|
||||
|
||||
Binary file not shown.
@@ -206,6 +206,11 @@ var ProviderMap = map[string]ProviderConfig{
|
||||
ModelsURL: "static:abacus", // Special marker for static model list
|
||||
ImplementsResponses: false,
|
||||
},
|
||||
"Mammouth": {
|
||||
Name: "Mammouth",
|
||||
BaseURL: "https://api.mammouth.ai/v1",
|
||||
ImplementsResponses: false,
|
||||
},
|
||||
}
|
||||
|
||||
// GetProviderByName returns the provider configuration for a given name with O(1) lookup
|
||||
|
||||
@@ -1 +1 @@
|
||||
"1.4.376"
|
||||
"1.4.377"
|
||||
|
||||
Reference in New Issue
Block a user