mirror of
https://github.com/ollama/ollama.git
synced 2025-05-11 02:16:36 +02:00
chore(all): replace instances of interface with any (#10067)
Both interface{} and any (which is just an alias for interface{} introduced in Go 1.18) represent the empty interface that all types satisfy.
This commit is contained in:
parent
4e415029b3
commit
9876c9faa4
19 changed files with 58 additions and 58 deletions
|
@ -219,7 +219,7 @@ func TestChatMiddleware(t *testing.T) {
|
|||
{
|
||||
Function: api.ToolCallFunction{
|
||||
Name: "get_current_weather",
|
||||
Arguments: map[string]interface{}{
|
||||
Arguments: map[string]any{
|
||||
"location": "Paris, France",
|
||||
"format": "celsius",
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue