Compare commits

...

4 Commits

Author SHA1 Message Date
github-actions[bot]
74250bbcbd chore(release): Update version to v1.4.377 2026-01-12 17:39:02 +00:00
Kayvan Sylvan
a593e83d9f Merge pull request #1929 from ksylvan/kayvan/add-mammouth-ai-provider
Add Mammouth as new OpenAI-compatible AI provider
2026-01-12 09:36:05 -08:00
Kayvan Sylvan
62e6812c7f chore: incoming 1929 changelog entry 2026-01-12 09:33:38 -08:00
Kayvan Sylvan
7e7ab9e5f2 feat: add Mammouth as new OpenAI-compatible AI provider
## CHANGES

- 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
2026-01-12 09:27:28 -08:00
6 changed files with 18 additions and 2 deletions

View File

@@ -117,6 +117,7 @@
"listvendors",
"lmstudio",
"Makefiles",
"Mammouth",
"markmap",
"matplotlib",
"mattn",

View File

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

View File

@@ -1,3 +1,3 @@
package main
var version = "v1.4.376"
var version = "v1.4.377"

Binary file not shown.

View File

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

View File

@@ -1 +1 @@
"1.4.376"
"1.4.377"