mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-09 22:38:10 -05:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6b6d0adbfb | ||
|
|
55c94e65da | ||
|
|
2118013547 | ||
|
|
82a9f02879 | ||
|
|
0776e77872 | ||
|
|
6ea5551f06 |
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## v1.4.372 (2026-01-04)
|
||||
|
||||
### PR [#1913](https://github.com/danielmiessler/Fabric/pull/1913) by [majiayu000](https://github.com/majiayu000): fix: REST API /chat endpoint doesn't pass 'search' parameter to ChatOptions
|
||||
|
||||
- Fix: REST API /chat endpoint now properly passes Search and SearchLocation parameters to ChatOptions
|
||||
|
||||
## v1.4.371 (2026-01-04)
|
||||
|
||||
### PR [#1923](https://github.com/danielmiessler/Fabric/pull/1923) by [ksylvan](https://github.com/ksylvan): ChangeLog Generation stability
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package main
|
||||
|
||||
var version = "v1.4.371"
|
||||
var version = "v1.4.372"
|
||||
|
||||
Binary file not shown.
@@ -145,6 +145,8 @@ func (h *ChatHandler) HandleChat(c *gin.Context) {
|
||||
FrequencyPenalty: request.FrequencyPenalty,
|
||||
PresencePenalty: request.PresencePenalty,
|
||||
Thinking: request.Thinking,
|
||||
Search: request.Search,
|
||||
SearchLocation: request.SearchLocation,
|
||||
UpdateChan: streamChan,
|
||||
Quiet: true,
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
"1.4.371"
|
||||
"1.4.372"
|
||||
|
||||
Reference in New Issue
Block a user