A research tool for advanced model manipulation.
- Relay Reference Manual - forge user documentation forge.md
- Summary Notes - machine generated summary blocks notes.md
Timestamps in logging files use slopmarks, a hexadecimal encoding of sixteenths of a second since 2025.4.12.
Requires an api environment variable, see accounts.json for latest
- DEEPSEEK_API_KEY
- XAI_API_KEY
- OPENAI_API_KEY
- GEMINI_API_KEY
- MISTRAL_API_KEY
- ALIBABA_API_KEY
- ANTHROPIC_API_KEY
- COHERE_API_KEY
- MOONSHOT_API_KEY
- HUGGINGFACE_API_KEY
The following native API are used by Slop Relay:
"api": "OpenAI",
"api": "DeepSeek",
"api": "Google",
"api": "Anthropic",
- relay.ts project support
- relay.ts sloppybots testing on discord
- consider agents.md additions to system prompt
On /share of a relay.md file a Relay project is keyed to that folder name.
- ~/relay.log
- ~/relay.md
Shares and home path are keyed per project.
When project activated with /project command:
- current path and shares restored
- any writable %project/relay.log is appended with forge.log history
roha.keyedShares[key]=roha.sharedFiles;
To consider:
- config search on
- implementation per API with account hints and tool billing
openai
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: process.env.OPENAI_API_KEY
});
const response = await client.responses.create({
model: 'gpt-5.5',
tools: [
{ type: 'web_search' }
],
input: 'What are the latest RP2350 announcements?'
});
console.log(response.output_text);
anthropic webSearch
import Anthropic from '@anthropic-ai/sdk';
const anthropic = new Anthropic({
apiKey: process.env.ANTHROPIC_API_KEY
});
const response = await anthropic.messages.create({
model: 'claude-sonnet-4-20250514',
max_tokens: 512,
tools: [
{
type: 'web_search_20250305',
name: 'web_search'
}
],
messages: [
{
role: 'user',
content: 'What are the latest RP2350 announcements?'
}
]
});
console.log(response);
xai tools webSearch
import { xai } from '@ai-sdk/xai';
import { generateText } from 'ai';
const { text, sources } = await generateText({
model: xai.responses('grok-4.3'),
prompt: 'What is xAI?',
tools: {
web_search: xai.tools.webSearch(),
},
});
console.log(text);
console.log('Citations:', sources);
Accounts and SDK support for Cohere Mistral Nvidia and Alibaba retired until previous notice.
Stage one nitrologic roha roha
Second stage nitrologic foundry foundry
Third stage nitrologic forge forge
Fourth stage slop fountain forge