chore: fix lint

kujtimiihoxha created

Change summary

Taskfile.yaml            | 7 +++++--
openai/openai.go         | 1 -
openrouter/openrouter.go | 1 -
3 files changed, 5 insertions(+), 4 deletions(-)

Detailed changes

Taskfile.yaml 🔗

@@ -1,4 +1,4 @@
-version: '3'
+version: "3"
 
 tasks:
   fmt:
@@ -15,7 +15,10 @@ tasks:
     desc: Run base linters for all packages
     cmds:
       - golangci-lint run
-
+  lint:fix:
+    desc: Run base linters for all packages and applies fixes if possible
+    cmds:
+      - golangci-lint run --fix
   test:
     desc: Run tests for all packages
     cmds:

openai/openai.go 🔗

@@ -273,7 +273,6 @@ func prepareCallWithOptions(model ai.LanguageModel, params *openai.ChatCompletio
 				Message: "TopLogprobs is not supported for reasoning models",
 			})
 		}
-
 	}
 
 	// Handle service tier validation

openrouter/openrouter.go 🔗

@@ -71,4 +71,3 @@ func WithHTTPClient(client option.HTTPClient) Option {
 		o.openaiOptions = append(o.openaiOptions, openai.WithHTTPClient(client))
 	}
 }
-