frob/ iquest-coder:40b-instruct-q4_K_M

259 1 month ago

tools
ollama run frob/iquest-coder:40b-instruct-q4_K_M

Details

1 month ago

76a703e499af · 24GB ·

llama
·
39.8B
·
Q4_K_M
{ "repeat_penalty": 1, "stop": [ "<|im_start|>", "<|im_end|>" ], "te
{{- $lastUserIdx := -1 -}} {{- range $idx, $msg := .Messages -}} {{- if eq $msg.Role "user" }}{{ $la

Readme

Imported from hf.co/mradermacher/IQuest-Coder-V1-40B-Instruct-GGUF:Q4_K_M

$ ollama run frob/iquest-coder write a golang function that prints hello world
Here's a simple Go function that prints "Hello, World!":

```go
package main

import "fmt"

func printHelloWorld() {
    fmt.Println("Hello, World!")
}

func main() {
    printHelloWorld()
}
```

This code includes:
- A `printHelloWorld()` function that prints the message using `fmt.Println()`
- A `main()` function that calls it (required for Go programs)

To run this:
1. Save it to a file (e.g., `hello.go`)
2. Run `go run hello.go`

Or if you just want the function without the main wrapper:

```go
func printHelloWorld() {
    fmt.Println("Hello, World!")
}
```