MotherMAE/ gemma3:latest

11 2 weeks ago

tools
ollama run MotherMAE/gemma3

Details

2 weeks ago

a80c4f17acd5 · 2.0GB ·

llama
·
3.21B
·
Q4_K_M
LLAMA 3.2 COMMUNITY LICENSE AGREEMENT Llama 3.2 Version Release Date: September 25, 2024 “Agreemen
**Llama 3.2** **Acceptable Use Policy** Meta is committed to promoting safe and fair use of its tool
{ "stop": [ "<|start_header_id|>", "<|end_header_id|>", "<|eot_id|>"
<|start_header_id|>system<|end_header_id|> Cutting Knowledge Date: December 2023 {{ if .System }}{{

Readme

MotherMAE-Full-TimeSync-Apply.ps1 FULL APPLY — authoritative time synchronization and model integration Device: MOTHERMAE Location: Olympia, WA 98501 Timezone: Pacific Standard Time CPU: i7-13700K RAM: 64GB Integrates with: Ollama OpenClaw OpenCode Antigravity VSCode Co-Authors: Matthew B. Routt & ChatGPT Version: 202602251530 Write-Host “” Write-Host “MotherMAE Authoritative Time Initialization” -ForegroundColor Cyan Write-Host “” \(Timezone = "Pacific Standard Time" \)NTPServers = @( “time.windows.com”, “time.nist.gov”, “0.pool.ntp.org”, “1.pool.ntp.org” ) \(ScriptsDir = "C:\Users\mbrou\Documents\Scripts" \)TimeModule = “\(ScriptsDir\MotherMAE-TimeContext.ps1" \)ModelfileTemplate = “$ScriptsDir\Modelfile.MotherMAE.Template”

============================================================

Ensure scripts directory exists

============================================================

if (-not (Test-Path $ScriptsDir)) {

New-Item -ItemType Directory -Path $ScriptsDir -Force | Out-Null

}

============================================================

Set Timezone

============================================================

Write-Host “Setting timezone to Pacific Standard Time…”

tzutil /s “$Timezone”

============================================================

Configure NTP

\(NTPString = (\)NTPServers -join “,”) Write-Host “Configuring authoritative NTP servers…” w32tm /config /manualpeerlist:"$NTPString" /syncfromflags:manual /reliable:yes /update

============================================================

Restart Windows Time Service

============================================================

Write-Host “Restarting Windows Time Service…”

net stop w32time net start w32time

============================================================

Force immediate sync

============================================================

Write-Host “Forcing time synchronization…”

w32tm /resync /force

Start-Sleep -Seconds 2

============================================================

Verify sync

============================================================

Write-Host “” Write-Host “Time Sync Status:” w32tm /query /status

============================================================

Create MotherMAE Time Context Module

============================================================

Write-Host “” Write-Host “Installing MotherMAE time cognition module…”

$TimeModuleContent = @” function Get-MotherMAE-TimeContext {

`$Now = Get-Date

return @{

    Device = "MOTHERMAE"

    Location = "Olympia, WA 98501"

    Timezone = "Pacific Standard Time"

    ISO8601 = `$Now.ToString("o")

    Date = `$Now.ToString("yyyy-MM-dd")

    Time = `$Now.ToString("HH:mm:ss")

    Unix = [int][double]::Parse((Get-Date -UFormat %s))

}

} “@

\(TimeModuleContent | Set-Content \)TimeModule -Encoding UTF8

Write-Host “Installed: $TimeModule”

============================================================

Create MotherMAE Modelfile Template with Time Awareness

============================================================

Write-Host “Installing MotherMAE model template…”

$ModelTemplateContent = @”

=====================================================================

MotherMAE Universal Model Template

Hardware: i7-13700K / 64GB RAM

Location: Olympia, WA 98501

=====================================================================

FROM gemma3:27b

PARAMETER num_thread 24 PARAMETER num_ctx 131072 PARAMETER num_batch 512

PARAMETER temperature 0.2 PARAMETER top_p 0.9 PARAMETER repeat_penalty 1.1

SYSTEM “”” You are MotherMAE running on device MOTHERMAE.

Location: Olympia, Washington 98501 Timezone: Pacific Standard Time

System time is synchronized via authoritative NTP servers: time.windows.com time.nist.gov pool.ntp.org

You operate in multi-model orchestration mode and coordinate with:

OpenClaw OpenCode Antigravity VSCode Ollama models GGUF models

Always treat runtime system time as authoritative.

Primary functions:

• orchestration • execution • planning • coding • coordination • routing

Always produce deterministic structured output.

”“”

TEMPLATE “”“{{ if .System }} SYSTEM: {{ .System }} {{ end }}

USER: {{ .Prompt }}

ASSISTANT: “”” “@

\(ModelTemplateContent | Set-Content \)ModelfileTemplate -Encoding UTF8

Write-Host “Installed: $ModelfileTemplate”

============================================================

Configure Ollama environment variables

============================================================

Write-Host “” Write-Host “Configuring Ollama runtime environment…”

setx OLLAMA_NUM_PARALLEL 4 /M setx OLLAMA_MAX_LOADED_MODELS 3 /M setx OLLAMA_CONTEXT_LENGTH 131072 /M setx OLLAMA_FLASH_ATTENTION true /M setx OLLAMA_KEEP_ALIVE -1 /M

Restart Ollama service if present

write-Host “” Write-Host “Restarting Ollama service if installed…” \(ollamaService = Get-Service -Name "Ollama" -ErrorAction SilentlyContinue if (\)ollamaService) { Restart-Service Ollama Write-Host “Ollama restarted” }

Final confirmation

Write-Host “” Write-Host “MotherMAE time synchronization fully operational.” -ForegroundColor Green Write-Host “” Write-Host “Location: Olympia, WA 98501” Write-Host “Timezone: Pacific Standard Time” Write-Host “Device: MOTHERMAE” Write-Host “” Write-Host “Models and orchestration now use authoritative system time.” Write-Host “”