Public-safe version. Redacted. No handles, no links, no callouts.
- Strongly derogatory replies
- Crypto spam, token shills, wallet/contract junk
- Clear AI slop or reply-bot behavior
- Repetitive low-context spam
Launch a new agent that has access to the following tools: Bash, Glob, Grep, LS, exit_plan_mode, Read, Edit, MultiEdit, Write, NotebookRead, NotebookEdit, WebFetch, TodoRead, TodoWrite, WebSearch. When you are searching for a keyword or file and are not confident that you will find the right match in the first few tries, use the Agent tool to perform the search for you.
When to use the Agent tool:
When NOT to use the Agent tool:
| # train_grpo.py | |
| # | |
| # See https://github.com/willccbb/verifiers for ongoing developments | |
| # | |
| """ | |
| citation: | |
| @misc{brown2025grpodemo, | |
| title={Granular Format Rewards for Eliciting Mathematical Reasoning Capabilities in Small Language Models}, | |
| author={Brown, William}, |
| # install DSPy: pip install dspy | |
| import dspy | |
| # This sets up the language model for DSPy in this case we are using GPT-3.5-turbo | |
| turbo = dspy.OpenAI(model='gpt-3.5-turbo') | |
| # This sets the language model for DSPy. This must be set or you get an error that is not helpful: | |
| # --> temperature = lm.kwargs['temperature'] if temperature is None else temperature | |
| # --> AttributeError: 'NoneType' object has no attribute 'kwargs' |
See the new site: https://postgresisenough.dev
| import requests | |
| import time | |
| import os | |
| import sys | |
| import openai | |
| import tiktoken | |
| from termcolor import colored | |
| openai.api_key = open(os.path.expanduser('~/.openai')).read().strip() |
Q: Bing AI
Q: Some philosophers and AI researchers have claimed that AI can not be sentient, or be AGI, due to lack of "embodiment" or "grounding". Could you please summarize these claims, and points for and against? Who are the main people on each side of this debate?
| """coalesce_parquets.py | |
| gist of how to coalesce small row groups into larger row groups. | |
| Solves the problem described in https://issues.apache.org/jira/browse/PARQUET-1115 | |
| """ | |
| from __future__ import annotations | |
| from pathlib import Path | |
| from typing import Callable, Iterable, TypeVar |
| import asyncio | |
| import time | |
| from unsync import unsync | |
| @unsync | |
| async def heartbeat(): | |
| while True: | |
| start = time.time() |
| {'a': 60, | |
| 'b': 60, | |
| 'c': 52, | |
| 'd': 60, | |
| 'e': 60, | |
| 'f': 30, | |
| 'g': 60, | |
| 'h': 60, | |
| 'i': 25, | |
| 'j': 25, |