What the source says
Background Smart Search jobs encode each asset once and sav
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| BASE_URL="${CODEX_LOCAL_BASE_URL:-http://localhost:8000/v1}" | |
| DEFAULT_MODEL="${CODEX_LOCAL_MODEL:-Qwen3.6-35B-A3B-8bit}" | |
| LOCAL_HOME="${CODEX_LOCAL_HOME:-/tmp/local-codex-gui-home}" | |
| USER_DATA_DIR="${CODEX_LOCAL_GUI_USER_DATA:-/tmp/local-codex-gui-user-data}" | |
| CATALOG_FILE="$LOCAL_HOME/model-catalog.json" | |
| CONFIG_FILE="$LOCAL_HOME/config.toml" | |
| APP_BIN="/Applications/Codex.app/Contents/MacOS/Codex" |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| BASE_URL="${CODEX_LOCAL_BASE_URL:-http://localhost:8000/v1}" | |
| DEFAULT_MODEL="${CODEX_LOCAL_MODEL:-Qwen3.6-35B-A3B-8bit}" | |
| export OPENAI_API_KEY="${OPENAI_API_KEY:-MY_API_KEY}" | |
| catalog_file="$(mktemp /tmp/local-codex-model-catalog.XXXXXX.json)" | |
| cleanup() { | |
| rm -f "$catalog_file" |
| #!/usr/bin/env bash | |
| printDumpDebug=0 | |
| debug() { | |
| case "$printDumpDebug" in | |
| 1|true|TRUE|yes|YES|on|ON) echo "$@" >&2 ;; | |
| esac | |
| } |
| #!/usr/bin/env bash | |
| EXCLUDED_FOLDERS=( | |
| "assets" | |
| "backups" | |
| "bazel-*" | |
| "bower_components" | |
| "buck-out" | |
| "build" | |
| "contracts" |
| .eslintrc.cjs: | |
| module.exports = { | |
| root: true, | |
| parser: "@typescript-eslint/parser", | |
| plugins: ["@typescript-eslint", "prettier"], | |
| extends: [ | |
| "eslint:recommended", | |
| "plugin:@typescript-eslint/recommended", |
| #!/bin/bash | |
| # Anforderungen: | |
| # - Parameterprüfung: Das Skript akzeptiert mindestens einen Parameter (den Basisordner). | |
| # Ein optionaler zweiter Parameter "scan" aktiviert den Scan-Modus, der nur fehlende | |
| # oder falsche DateTimeOriginal Tags anzeigt, ohne Änderungen vorzunehmen. | |
| # | |
| # - Datum aus Ordnernamen extrahieren: Das Skript extrahiert das Datum aus dem Namen | |
| # des Ordners. Unterstützte Formate sind JJJJ-MM-TT und JJJJ-MM, wobei bei Letzterem |
| #!/bin/bash | |
| # Startverzeichnis als Parameter | |
| if [ -z "$1" ]; then | |
| echo "Verwendung: $0 <Startverzeichnis>" | |
| exit 1 | |
| fi | |
| start_dir="$1" | |
| # Funktion zur Umwandlung eines Datumsformats in Unix-Zeit (Epoch) |
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| // Interface to access storage of Safe contracts | |
| interface IStorageAccessible { | |
| function getStorageAt(uint256 offset, uint256 length) external view returns (bytes memory); | |
| } | |
| library GuardReader { | |
| // Storage slot for the guard address in a Gnosis Safe contract (from GuardManager.sol) |
| > are you a stochastic parrot? | |
| gpt-oss:20b | |
| Today at 8:46 PM | |
| Thought for 18 minutes | |
| <think> | |
| The user asks: "are you a stochastic parrot?" This likely refers to the phrase used in AI ethics about language models being "stochastic parrots" — that is, models that generate outputs based on patterns learned from data. So the assistant should explain what a stochastic parrot means, and clarify its role. The user likely expects an answer like: Yes, I am a language model trained on a large dataset, generating text based on patterns; I don't understand, etc. Provide nuance: I am a large language model that uses probabilistic modeling, not truly conscious, but can simulate understanding, but it's more than a simple parrot because I use context and produce novel output. But still, I am essentially a statistical model. So the answer should explain the concept, the criticism, the mitigation. |