Pricing checked: 2026-07-26
Unit: 1,000,000 output tokens
| Variable | Lower case | Upper case |
|---|---|---|
| Output tokens per request | 1,000 | 100 |
| // ==UserScript== | |
| // @name ChatGPT Chat Exporter | |
| // @namespace https://gist.github.com/sssemil/b0b8af1a850aeb99b690a80dbead84c0 | |
| // @version 1.2.1 | |
| // @description Export a ChatGPT conversation as Markdown, a print-ready PDF, or a ZIP with session files. | |
| // @author sssemil | |
| // @homepageURL https://gist.github.com/sssemil/b0b8af1a850aeb99b690a80dbead84c0 | |
| // @updateURL https://gist.githubusercontent.com/sssemil/b0b8af1a850aeb99b690a80dbead84c0/raw/chatgpt-chat-exporter.user.js | |
| // @downloadURL https://gist.githubusercontent.com/sssemil/b0b8af1a850aeb99b690a80dbead84c0/raw/chatgpt-chat-exporter.user.js | |
| // @match https://chatgpt.com/* |
Would you use a backend where you just define schema, access policy, and functions?
Basically something like making smart contracts on EVM, but instead they run on a hyperscaler, and have regular backend fundamentals.
Here's a mock frenchie made me, was thinking something like this:
schema User {
email: string @private(owner)
name: string @public
| #!/usr/bin/env python3 | |
| """ | |
| Simple CLI for PersonaPlex - talk and listen via terminal. | |
| """ | |
| import argparse | |
| import os | |
| import sys | |
| import time | |
| import threading |
| #!/usr/bin/env bash | |
| set -e | |
| usage() { | |
| echo "usage: $0 <command> -a <writable_path> [-a <writable_path>...]" | |
| exit 1 | |
| } | |
| if [ "$#" -lt 3 ]; then | |
| usage |
| import numpy as np | |
| import torch | |
| import cv2 | |
| from PIL import Image | |
| from transformers import AutoImageProcessor, AutoModelForDepthEstimation | |
| from transformers import DPTForDepthEstimation, DPTImageProcessor | |
| def depth_estimation(model, feature_extractor, image): | |
| inputs = feature_extractor(images=image, return_tensors="pt").to("cuda") |
| from math import inf | |
| import torch | |
| from torch import tensor, device | |
| import torch.fx as fx | |
| import torch._dynamo | |
| from torch._dynamo.testing import rand_strided | |
| from torch._dynamo.debug_utils import run_fwd_maybe_bwd | |
| import torch._dynamo.config |
| #!/bin/bash | |
| set -e | |
| # Check if zsh is installed | |
| if ! command -v zsh &> /dev/null; then | |
| echo "zsh is not installed. Please install zsh first." | |
| exit 1 | |
| fi |