Initial pi agent config
This commit is contained in:
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# Secrets — never commit API keys / credentials
|
||||
auth.json
|
||||
|
||||
# Per-machine session transcripts (large, machine-specific, may contain private data)
|
||||
sessions/
|
||||
|
||||
# Installed packages — regenerated by `pi install` / startup from settings.json
|
||||
npm/
|
||||
git/
|
||||
|
||||
# Per-folder trust decisions (machine / working-dir specific)
|
||||
trust.json
|
||||
|
||||
# Debug output written by the hidden `/debug` command
|
||||
pi-debug.log
|
||||
16
models.json
Normal file
16
models.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"providers": {
|
||||
"openrouter": {
|
||||
"modelOverrides": {
|
||||
"z-ai/glm-5.2": {
|
||||
"name": "GLM 5.2 (Novita FP8)",
|
||||
"compat": {
|
||||
"openRouterRouting": {
|
||||
"only": ["novita/fp8"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
13
settings.json
Normal file
13
settings.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"lastChangelogVersion": "0.80.3",
|
||||
"theme": "dark",
|
||||
"defaultProvider": "openrouter",
|
||||
"defaultModel": "z-ai/glm-5.2",
|
||||
"defaultThinkingLevel": "high",
|
||||
"enabledModels": [
|
||||
"openrouter/anthropic/claude-opus-4.8",
|
||||
"openrouter/openai/gpt-5.5",
|
||||
"openrouter/z-ai/glm-5.2"
|
||||
],
|
||||
"packages": []
|
||||
}
|
||||
Reference in New Issue
Block a user