-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add Pi.dev Agent SDK support as a first-class AI assistant provider #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -45,7 +45,7 @@ interface SetupConfig { | |||||
| claudeOauthToken?: string; | ||||||
| codex: boolean; | ||||||
| codexTokens?: CodexTokens; | ||||||
| defaultAssistant: 'claude' | 'codex'; | ||||||
| defaultAssistant: 'claude' | 'codex' | 'pi'; | ||||||
| }; | ||||||
| platforms: { | ||||||
| github: boolean; | ||||||
|
|
@@ -677,7 +677,7 @@ After upgrading, run 'archon setup' again.`, | |||||
| } | ||||||
|
|
||||||
| // Determine default assistant | ||||||
| let defaultAssistant: 'claude' | 'codex' = 'claude'; | ||||||
| let defaultAssistant: 'claude' | 'codex' | 'pi' = 'claude'; | ||||||
|
||||||
| let defaultAssistant: 'claude' | 'codex' | 'pi' = 'claude'; | |
| let defaultAssistant: 'claude' | 'codex' = 'claude'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow example uses
provider: anthropic, but workflow/nodeprovideronly accepts the assistant providers (claude,codex,pi). For Pi, keepprovider: piand set the Anthropic model viamodel: anthropic/<model-id>; if you intend to use the native Claude client, useprovider: claudeinstead.