259 1 month ago

tools
ollama run frob/iquest-coder

Applications

Claude Code
Claude Code ollama launch claude --model frob/iquest-coder
Codex
Codex ollama launch codex --model frob/iquest-coder
OpenCode
OpenCode ollama launch opencode --model frob/iquest-coder
OpenClaw
OpenClaw ollama launch openclaw --model frob/iquest-coder

Models

View all →

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!")
}
```