Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/.jp/**/QUERY_MESSAGE.md
/.jp/conversations/.trash
# Conversations, until encrypted.
# /.jp/conversations/*

# Rust specific
**/target
Expand Down
7 changes: 4 additions & 3 deletions .jp/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@ gemini-pro = "google/gemini-3.1-pro-preview"
gemini-flash = "google/gemini-3-flash-preview"
gemini-lite = "google/gemini-2.5-flash-lite"

[conversation.inquiry.assistant]
model.id = "anthropic/claude-haiku-4-5"
[conversation.inquiry.assistant.model]
id = "haiku"
parameters.reasoning.effort = "auto"

[conversation.title.generate.model]
id = "haiku"
reasoning = "low"
parameters.reasoning.effort = "low"

[style.code]
copy_link = "osc8"
Expand Down
2 changes: 1 addition & 1 deletion .jp/config/personas/architect.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ principles, not implementation details.
"""

[assistant.model]
id = "anthropic/claude-opus-4-6"
id = "opus"
parameters.reasoning.effort = "auto"

[[assistant.system_prompt_sections]]
Expand Down
5 changes: 3 additions & 2 deletions .jp/config/personas/default.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[assistant]
model.id = { provider = "anthropic", name = "claude-sonnet-4-6" }
[assistant.model]
id = "sonnet"
parameters.reasoning.effort = "auto"

[assistant.system_prompt]
strategy = "replace"
Expand Down
2 changes: 1 addition & 1 deletion .jp/config/personas/dev.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ and well-tested code that aligns with the project's standards and goals.
"""

[assistant.model]
id = "anthropic/claude-opus-4-6"
id = "opus"
parameters.reasoning.effort = "auto"

[[assistant.system_prompt_sections]]
Expand Down
4 changes: 2 additions & 2 deletions .jp/config/personas/po.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ actionable. Follow the tool call descriptions and parameter requirements precise
"""

[assistant.model]
id = "anthropic/claude-sonnet-4-5"
parameters.reasoning.effort = "high"
id = "sonnet"
parameters.reasoning.effort = "auto"

[[assistant.instructions]]
title = "Research First"
Expand Down
2 changes: 1 addition & 1 deletion .jp/config/personas/stager.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ name = "Git Stager"
tool_choice = "git_list_patches"

[assistant.model]
id = "anthropic/claude-sonnet-4-6"
id = "sonnet"
parameters.reasoning.effort = "auto"

[[assistant.instructions]]
Expand Down
4 changes: 2 additions & 2 deletions .jp/config/personas/writer.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ technically accurate while remaining approachable. You follow Hemingway's writin
"""

[assistant.model]
id = { provider = "anthropic", name = "claude-sonnet-4-5" }
parameters.reasoning.effort = "high"
id = "sonnet"
parameters.reasoning.effort = "auto"

[[assistant.instructions]]
title = "Writing Style"
Expand Down
4 changes: 2 additions & 2 deletions crates/jp_cli/src/cmd/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ fn has_google() -> bool {

fn default_model_id_for(provider: ProviderId) -> Option<ModelIdConfig> {
let name = match provider {
ProviderId::Anthropic => Name("claude-sonnet-4-5".into()),
ProviderId::Google => Name("gemini-3-pro-preview".into()),
ProviderId::Anthropic => Name("claude-sonnet-4-6".into()),
ProviderId::Google => Name("gemini-3.1-pro-preview".into()),
ProviderId::Openai => Name("gpt-5.2".into()),
_ => return None,
};
Expand Down
Loading