codepp 0.0.437__tar.gz → 0.0.438__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codepp-0.0.437 → codepp-0.0.438}/PKG-INFO +22 -22
- codepp-0.0.438/code_puppy/models.json +46 -0
- {codepp-0.0.437 → codepp-0.0.438}/pyproject.toml +26 -26
- codepp-0.0.437/code_puppy/models.json +0 -174
- {codepp-0.0.437 → codepp-0.0.438}/.gitignore +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/LICENSE +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/README.md +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/__main__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_c_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_code_puppy.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_code_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_cpp_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_creator_agent.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_golang_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_helios.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_javascript_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_manager.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_pack_leader.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_planning.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_python_programmer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_python_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_qa_expert.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_qa_kitten.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_scheduler.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_security_auditor.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_terminal_qa.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/agent_typescript_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/base_agent.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/event_stream_handler.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/json_agent.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/bloodhound.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/husky.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/retriever.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/shepherd.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/terrier.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/pack/watchdog.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/prompt_reviewer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/agents/subagent_stream_handler.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/app.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/main.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/pty_manager.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/routers/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/routers/agents.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/routers/commands.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/routers/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/routers/sessions.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/templates/terminal.html +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/api/websocket.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/chatgpt_codex_client.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/claude_cache_client.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/cli_runner.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/add_model_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/agent_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/attachments.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/autosave_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/clipboard.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/colors_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/command_handler.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/command_registry.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/config_commands.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/core_commands.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/diff_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/file_path_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/load_context_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/base.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/catalog_server_installer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/custom_server_form.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/custom_server_installer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/edit_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/handler.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/help_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/install_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/install_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/list_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/logs_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/remove_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/restart_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/search_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/start_all_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/start_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/status_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/stop_all_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/stop_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/test_command.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp/wizard_utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/mcp_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/model_picker_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/model_settings_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/motd.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/onboarding_slides.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/onboarding_wizard.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/pin_command_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/prompt_toolkit_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/session_commands.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/shell_passthrough.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/skills_completion.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/uc_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/command_line/wiggum_state.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/error_logging.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/gemini_code_assist.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/gemini_model.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/README.md +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/aliases.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/engine.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/executor.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/matcher.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/models.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/registry.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/hook_engine/validator.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/http_utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/keymap.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/main.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/async_lifecycle.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/blocking_startup.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/captured_stdio_server.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/circuit_breaker.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/config_wizard.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/dashboard.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/error_isolation.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/examples/retry_example.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/health_monitor.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/managed_server.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/manager.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/mcp_logs.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/registry.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/retry_manager.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/server_registry_catalog.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/status_tracker.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_/system_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_prompts/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/mcp_prompts/hook_creator.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/bus.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/commands.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/markdown_patches.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/message_queue.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/messages.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/queue_console.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/renderers.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/rich_renderer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/spinner/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/spinner/console_spinner.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/spinner/spinner_base.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/messaging/subagent_console.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/model_factory.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/model_switching.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/model_utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/models_dev_api.json +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/models_dev_parser.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/discovery.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/downloader.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/installer.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/metadata.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/prompt_builder.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/remote_catalog.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/skill_catalog.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/skills_install_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/agent_skills/skills_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/accounts.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/antigravity_model.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/constants.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/oauth.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/storage.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/test_plugin.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/token.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/transport.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/antigravity_oauth/utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/chatgpt_oauth/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/chatgpt_oauth/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/chatgpt_oauth/oauth_flow.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/chatgpt_oauth/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/chatgpt_oauth/test_plugin.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/chatgpt_oauth/utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_hooks/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_hooks/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_hooks/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/README.md +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/SETUP.md +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/test_plugin.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/token_refresh_heartbeat.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/claude_code_oauth/utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/customizable_commands/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/customizable_commands/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/example_custom_command/README.md +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/example_custom_command/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/file_permission_handler/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/file_permission_handler/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/frontend_emitter/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/frontend_emitter/emitter.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/frontend_emitter/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/hook_creator/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/hook_creator/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/hook_manager/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/hook_manager/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/hook_manager/hooks_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/hook_manager/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/oauth_puppy_html.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/scheduler/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/scheduler/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/scheduler/scheduler_menu.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/scheduler/scheduler_wizard.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/shell_safety/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/shell_safety/agent_shell_safety.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/shell_safety/command_cache.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/shell_safety/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/synthetic_status/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/synthetic_status/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/synthetic_status/status_api.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/universal_constructor/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/universal_constructor/models.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/universal_constructor/register_callbacks.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/universal_constructor/registry.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/plugins/universal_constructor/sandbox.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/prompts/antigravity_system_prompt.md +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/pydantic_patches.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/reopenable_async_client.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/round_robin_model.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/__main__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/cli.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/config.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/daemon.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/executor.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/platform.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/platform_unix.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/scheduler/platform_win.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/session_storage.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/status_display.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/summarization_agent.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/terminal_utils.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/agent_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/constants.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/demo_tui.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/handler.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/models.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/registration.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/renderers.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/terminal_ui.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/theme.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/ask_user_question/tui_loop.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/__init__.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_control.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_interactions.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_locators.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_manager.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_navigation.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_screenshot.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_scripts.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/browser_workflows.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/chromium_terminal_manager.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/terminal_command_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/terminal_screenshot_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/browser/terminal_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/command_runner.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/common.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/display.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/file_modifications.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/file_operations.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/scheduler_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/skills_tools.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/subagent_context.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/tools_content.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/tools/universal_constructor.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/uvx_detection.py +0 -0
- {codepp-0.0.437 → codepp-0.0.438}/code_puppy/version_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codepp
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.438
|
|
4
4
|
Summary: Code generation agent
|
|
5
5
|
Project-URL: repository, https://github.com/mpfaffenberger/code_puppy
|
|
6
6
|
Project-URL: HomePage, https://github.com/mpfaffenberger/code_puppy
|
|
@@ -20,28 +20,28 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
20
20
|
Classifier: Topic :: Software Development :: Code Generators
|
|
21
21
|
Requires-Python: <3.15,>=3.11
|
|
22
22
|
Requires-Dist: anthropic==0.79.0
|
|
23
|
-
Requires-Dist: dbos>=2.
|
|
24
|
-
Requires-Dist: fastapi>=0.
|
|
25
|
-
Requires-Dist: httpx[http2]>=0.
|
|
26
|
-
Requires-Dist: json-repair>=0.
|
|
27
|
-
Requires-Dist: mcp>=1.
|
|
28
|
-
Requires-Dist: openai>=
|
|
29
|
-
Requires-Dist: pillow>=
|
|
30
|
-
Requires-Dist: playwright>=1.
|
|
23
|
+
Requires-Dist: dbos>=2.16.0
|
|
24
|
+
Requires-Dist: fastapi>=0.135.2
|
|
25
|
+
Requires-Dist: httpx[http2]>=0.28.1
|
|
26
|
+
Requires-Dist: json-repair>=0.58.7
|
|
27
|
+
Requires-Dist: mcp>=1.26.0
|
|
28
|
+
Requires-Dist: openai>=2.30.0
|
|
29
|
+
Requires-Dist: pillow>=12.1.1
|
|
30
|
+
Requires-Dist: playwright>=1.58.0
|
|
31
31
|
Requires-Dist: prompt-toolkit>=3.0.52
|
|
32
|
-
Requires-Dist: pydantic-ai-slim[anthropic,mcp,openai]==1.
|
|
33
|
-
Requires-Dist: pydantic>=2.
|
|
34
|
-
Requires-Dist: pyfiglet>=0.
|
|
35
|
-
Requires-Dist: python-dotenv>=1.
|
|
36
|
-
Requires-Dist: rapidfuzz>=3.
|
|
37
|
-
Requires-Dist: requests>=2.
|
|
38
|
-
Requires-Dist: rich>=
|
|
39
|
-
Requires-Dist: ripgrep==
|
|
40
|
-
Requires-Dist: tenacity>=
|
|
41
|
-
Requires-Dist: termflow-md>=0.1.
|
|
42
|
-
Requires-Dist: typer>=0.
|
|
43
|
-
Requires-Dist: uvicorn[standard]>=0.
|
|
44
|
-
Requires-Dist: websockets>=
|
|
32
|
+
Requires-Dist: pydantic-ai-slim[anthropic,mcp,openai]==1.60.0
|
|
33
|
+
Requires-Dist: pydantic>=2.12.5
|
|
34
|
+
Requires-Dist: pyfiglet>=1.0.4
|
|
35
|
+
Requires-Dist: python-dotenv>=1.2.2
|
|
36
|
+
Requires-Dist: rapidfuzz>=3.14.3
|
|
37
|
+
Requires-Dist: requests>=2.33.0
|
|
38
|
+
Requires-Dist: rich>=14.3.3
|
|
39
|
+
Requires-Dist: ripgrep==15.0.0
|
|
40
|
+
Requires-Dist: tenacity>=9.1.4
|
|
41
|
+
Requires-Dist: termflow-md>=0.1.9
|
|
42
|
+
Requires-Dist: typer>=0.24.1
|
|
43
|
+
Requires-Dist: uvicorn[standard]>=0.42.0
|
|
44
|
+
Requires-Dist: websockets>=16.0
|
|
45
45
|
Description-Content-Type: text/markdown
|
|
46
46
|
|
|
47
47
|
<div align="center">
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"firepass-kimi-k2p5-turbo": {
|
|
3
|
+
"type": "custom_openai",
|
|
4
|
+
"name": "accounts/fireworks/routers/kimi-k2p5-turbo",
|
|
5
|
+
"custom_endpoint": {
|
|
6
|
+
"url": "https://api.fireworks.ai/inference/v1",
|
|
7
|
+
"api_key": "$FIREWORKS_API_KEY"
|
|
8
|
+
},
|
|
9
|
+
"context_length": 262144,
|
|
10
|
+
"supported_settings": ["temperature", "seed", "top_p"]
|
|
11
|
+
},
|
|
12
|
+
"Cerebras-GLM-4.7": {
|
|
13
|
+
"type": "cerebras",
|
|
14
|
+
"name": "zai-glm-4.7",
|
|
15
|
+
"custom_endpoint": {
|
|
16
|
+
"url": "https://api.cerebras.ai/v1",
|
|
17
|
+
"api_key": "$CEREBRAS_API_KEY"
|
|
18
|
+
},
|
|
19
|
+
"context_length": 131072,
|
|
20
|
+
"supported_settings": ["temperature", "seed", "top_p"]
|
|
21
|
+
},
|
|
22
|
+
"zai-glm-5-turbo-coding": {
|
|
23
|
+
"type": "zai_coding",
|
|
24
|
+
"name": "glm-5-turbo",
|
|
25
|
+
"context_length": 200000,
|
|
26
|
+
"supported_settings": ["temperature", "top_p"]
|
|
27
|
+
},
|
|
28
|
+
"zai-glm-5-turbo-api": {
|
|
29
|
+
"type": "zai_api",
|
|
30
|
+
"name": "glm-5-turbo",
|
|
31
|
+
"context_length": 200000,
|
|
32
|
+
"supported_settings": ["temperature", "top_p"]
|
|
33
|
+
},
|
|
34
|
+
"zai-glm-5.1-coding": {
|
|
35
|
+
"type": "zai_coding",
|
|
36
|
+
"name": "glm-5.1",
|
|
37
|
+
"context_length": 200000,
|
|
38
|
+
"supported_settings": ["temperature", "top_p"]
|
|
39
|
+
},
|
|
40
|
+
"zai-glm-5.1-api": {
|
|
41
|
+
"type": "zai_api",
|
|
42
|
+
"name": "glm-5.1",
|
|
43
|
+
"context_length": 200000,
|
|
44
|
+
"supported_settings": ["temperature", "top_p"]
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -4,33 +4,33 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codepp"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.438"
|
|
8
8
|
description = "Code generation agent"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11,<3.15"
|
|
11
11
|
dependencies = [
|
|
12
|
-
"pydantic-ai-slim[openai,anthropic,mcp]==1.
|
|
13
|
-
"typer>=0.
|
|
14
|
-
"mcp>=1.
|
|
15
|
-
"httpx[http2]>=0.
|
|
16
|
-
"requests>=2.
|
|
17
|
-
"rich>=
|
|
18
|
-
"pydantic>=2.
|
|
19
|
-
"python-dotenv>=1.
|
|
12
|
+
"pydantic-ai-slim[openai,anthropic,mcp]==1.60.0",
|
|
13
|
+
"typer>=0.24.1",
|
|
14
|
+
"mcp>=1.26.0",
|
|
15
|
+
"httpx[http2]>=0.28.1",
|
|
16
|
+
"requests>=2.33.0",
|
|
17
|
+
"rich>=14.3.3",
|
|
18
|
+
"pydantic>=2.12.5",
|
|
19
|
+
"python-dotenv>=1.2.2",
|
|
20
20
|
"prompt-toolkit>=3.0.52",
|
|
21
|
-
"rapidfuzz>=3.
|
|
22
|
-
"json-repair>=0.
|
|
23
|
-
"pyfiglet>=0.
|
|
24
|
-
"openai>=
|
|
25
|
-
"ripgrep==
|
|
26
|
-
"tenacity>=
|
|
27
|
-
"playwright>=1.
|
|
28
|
-
"dbos>=2.
|
|
29
|
-
"fastapi>=0.
|
|
30
|
-
"uvicorn[standard]>=0.
|
|
31
|
-
"websockets>=
|
|
32
|
-
"termflow-md>=0.1.
|
|
33
|
-
"Pillow>=
|
|
21
|
+
"rapidfuzz>=3.14.3",
|
|
22
|
+
"json-repair>=0.58.7",
|
|
23
|
+
"pyfiglet>=1.0.4",
|
|
24
|
+
"openai>=2.30.0",
|
|
25
|
+
"ripgrep==15.0.0",
|
|
26
|
+
"tenacity>=9.1.4",
|
|
27
|
+
"playwright>=1.58.0",
|
|
28
|
+
"dbos>=2.16.0",
|
|
29
|
+
"fastapi>=0.135.2",
|
|
30
|
+
"uvicorn[standard]>=0.42.0",
|
|
31
|
+
"websockets>=16.0",
|
|
32
|
+
"termflow-md>=0.1.9",
|
|
33
|
+
"Pillow>=12.1.1",
|
|
34
34
|
"anthropic==0.79.0"
|
|
35
35
|
]
|
|
36
36
|
authors = [
|
|
@@ -87,9 +87,9 @@ python-preference = "only-managed"
|
|
|
87
87
|
|
|
88
88
|
[dependency-groups]
|
|
89
89
|
dev = [
|
|
90
|
-
"pytest>=
|
|
91
|
-
"pytest-cov>=
|
|
92
|
-
"pytest-asyncio>=
|
|
93
|
-
"ruff>=0.
|
|
90
|
+
"pytest>=9.0.2",
|
|
91
|
+
"pytest-cov>=7.1.0",
|
|
92
|
+
"pytest-asyncio>=1.3.0",
|
|
93
|
+
"ruff>=0.15.8",
|
|
94
94
|
"pexpect>=4.9.0",
|
|
95
95
|
]
|
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"synthetic-GLM-4.7": {
|
|
3
|
-
"type": "custom_openai",
|
|
4
|
-
"name": "hf:zai-org/GLM-4.7",
|
|
5
|
-
"custom_endpoint": {
|
|
6
|
-
"url": "https://api.synthetic.new/openai/v1/",
|
|
7
|
-
"api_key": "$SYN_API_KEY"
|
|
8
|
-
},
|
|
9
|
-
"context_length": 200000,
|
|
10
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
11
|
-
},
|
|
12
|
-
"synthetic-MiniMax-M2.5": {
|
|
13
|
-
"type": "custom_openai",
|
|
14
|
-
"name": "hf:MiniMaxAI/MiniMax-M2.5",
|
|
15
|
-
"custom_endpoint": {
|
|
16
|
-
"url": "https://api.synthetic.new/openai/v1/",
|
|
17
|
-
"api_key": "$SYN_API_KEY"
|
|
18
|
-
},
|
|
19
|
-
"context_length": 195000,
|
|
20
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
21
|
-
},
|
|
22
|
-
"synthetic-qwen3.5-397b": {
|
|
23
|
-
"type": "custom_openai",
|
|
24
|
-
"name": "hf:Qwen/Qwen3.5-397B-A17B",
|
|
25
|
-
"custom_endpoint": {
|
|
26
|
-
"url": "https://api.synthetic.new/openai/v1/",
|
|
27
|
-
"api_key": "$SYN_API_KEY"
|
|
28
|
-
},
|
|
29
|
-
"context_length": 256000,
|
|
30
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
31
|
-
},
|
|
32
|
-
"synthetic-Kimi-K2.5-Thinking": {
|
|
33
|
-
"type": "custom_openai",
|
|
34
|
-
"name": "hf:moonshotai/Kimi-K2.5",
|
|
35
|
-
"custom_endpoint": {
|
|
36
|
-
"url": "https://api.synthetic.new/openai/v1/",
|
|
37
|
-
"api_key": "$SYN_API_KEY"
|
|
38
|
-
},
|
|
39
|
-
"context_length": 256000,
|
|
40
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
41
|
-
},
|
|
42
|
-
"synthetic-Kimi-K2.5-Thinking-NVFP4": {
|
|
43
|
-
"type": "custom_openai",
|
|
44
|
-
"name": "hf:nvidia/Kimi-K2.5-NVFP4",
|
|
45
|
-
"custom_endpoint": {
|
|
46
|
-
"url": "https://api.synthetic.new/openai/v1/",
|
|
47
|
-
"api_key": "$SYN_API_KEY"
|
|
48
|
-
},
|
|
49
|
-
"context_length": 256000,
|
|
50
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
51
|
-
},
|
|
52
|
-
"synthetic-NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4": {
|
|
53
|
-
"type": "custom_openai",
|
|
54
|
-
"name": "hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
|
|
55
|
-
"custom_endpoint": {
|
|
56
|
-
"url": "https://api.synthetic.new/openai/v1/",
|
|
57
|
-
"api_key": "$SYN_API_KEY"
|
|
58
|
-
},
|
|
59
|
-
"context_length": 131072,
|
|
60
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
61
|
-
},
|
|
62
|
-
"firepass-kimi-k2p5-turbo": {
|
|
63
|
-
"type": "custom_openai",
|
|
64
|
-
"name": "accounts/fireworks/routers/kimi-k2p5-turbo",
|
|
65
|
-
"custom_endpoint": {
|
|
66
|
-
"url": "https://api.fireworks.ai/inference/v1",
|
|
67
|
-
"api_key": "$FIREWORKS_API_KEY"
|
|
68
|
-
},
|
|
69
|
-
"context_length": 262144,
|
|
70
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
71
|
-
},
|
|
72
|
-
"Gemini-3": {
|
|
73
|
-
"type": "gemini",
|
|
74
|
-
"name": "gemini-3-pro-preview",
|
|
75
|
-
"context_length": 200000,
|
|
76
|
-
"supported_settings": ["temperature", "top_p", "thinking_enabled", "thinking_level"]
|
|
77
|
-
},
|
|
78
|
-
"Gemini-3-Long-Context": {
|
|
79
|
-
"type": "gemini",
|
|
80
|
-
"name": "gemini-3-pro-preview",
|
|
81
|
-
"context_length": 1000000,
|
|
82
|
-
"supported_settings": ["temperature", "top_p", "thinking_enabled", "thinking_level"]
|
|
83
|
-
},
|
|
84
|
-
"gpt-5.2": {
|
|
85
|
-
"type": "openai",
|
|
86
|
-
"name": "gpt-5.1",
|
|
87
|
-
"context_length": 272000,
|
|
88
|
-
"supported_settings": ["temperature", "top_p", "reasoning_effort", "verbosity"],
|
|
89
|
-
"supports_xhigh_reasoning": false
|
|
90
|
-
},
|
|
91
|
-
"gpt-5.2-codex-api": {
|
|
92
|
-
"type": "openai",
|
|
93
|
-
"name": "gpt-5.2-codex",
|
|
94
|
-
"context_length": 272000,
|
|
95
|
-
"supported_settings": ["temperature", "top_p", "reasoning_effort", "verbosity"],
|
|
96
|
-
"supports_xhigh_reasoning": true
|
|
97
|
-
},
|
|
98
|
-
"Cerebras-GLM-4.7": {
|
|
99
|
-
"type": "cerebras",
|
|
100
|
-
"name": "zai-glm-4.7",
|
|
101
|
-
"custom_endpoint": {
|
|
102
|
-
"url": "https://api.cerebras.ai/v1",
|
|
103
|
-
"api_key": "$CEREBRAS_API_KEY"
|
|
104
|
-
},
|
|
105
|
-
"context_length": 131072,
|
|
106
|
-
"supported_settings": ["temperature", "seed", "top_p"]
|
|
107
|
-
},
|
|
108
|
-
"claude-4-5-haiku": {
|
|
109
|
-
"type": "anthropic",
|
|
110
|
-
"name": "claude-haiku-4-5",
|
|
111
|
-
"context_length": 200000,
|
|
112
|
-
"supported_settings": ["temperature", "extended_thinking", "budget_tokens"]
|
|
113
|
-
},
|
|
114
|
-
"claude-4-5-sonnet": {
|
|
115
|
-
"type": "anthropic",
|
|
116
|
-
"name": "claude-sonnet-4-5",
|
|
117
|
-
"context_length": 200000,
|
|
118
|
-
"supported_settings": ["temperature", "extended_thinking", "budget_tokens"]
|
|
119
|
-
},
|
|
120
|
-
"claude-4-5-opus": {
|
|
121
|
-
"type": "anthropic",
|
|
122
|
-
"name": "claude-opus-4-5",
|
|
123
|
-
"context_length": 200000,
|
|
124
|
-
"supported_settings": ["temperature", "extended_thinking", "budget_tokens", "interleaved_thinking"]
|
|
125
|
-
},
|
|
126
|
-
"zai-glm-4.7-coding": {
|
|
127
|
-
"type": "zai_coding",
|
|
128
|
-
"name": "glm-4.7",
|
|
129
|
-
"context_length": 200000,
|
|
130
|
-
"supported_settings": ["temperature", "top_p"]
|
|
131
|
-
},
|
|
132
|
-
"zai-glm-4.7-api": {
|
|
133
|
-
"type": "zai_api",
|
|
134
|
-
"name": "glm-4.7",
|
|
135
|
-
"context_length": 200000,
|
|
136
|
-
"supported_settings": ["temperature", "extended_thinking", "budget_tokens", "interleaved_thinking"]
|
|
137
|
-
},
|
|
138
|
-
"zai-glm-5-coding": {
|
|
139
|
-
"type": "zai_coding",
|
|
140
|
-
"name": "glm-5",
|
|
141
|
-
"context_length": 200000,
|
|
142
|
-
"supported_settings": ["temperature", "top_p"]
|
|
143
|
-
},
|
|
144
|
-
"zai-glm-5-api": {
|
|
145
|
-
"type": "zai_api",
|
|
146
|
-
"name": "glm-5",
|
|
147
|
-
"context_length": 200000,
|
|
148
|
-
"supported_settings": ["temperature", "top_p"]
|
|
149
|
-
},
|
|
150
|
-
"zai-glm-5-turbo-coding": {
|
|
151
|
-
"type": "zai_coding",
|
|
152
|
-
"name": "glm-5-turbo",
|
|
153
|
-
"context_length": 200000,
|
|
154
|
-
"supported_settings": ["temperature", "top_p"]
|
|
155
|
-
},
|
|
156
|
-
"zai-glm-5-turbo-api": {
|
|
157
|
-
"type": "zai_api",
|
|
158
|
-
"name": "glm-5-turbo",
|
|
159
|
-
"context_length": 200000,
|
|
160
|
-
"supported_settings": ["temperature", "top_p"]
|
|
161
|
-
},
|
|
162
|
-
"zai-glm-5.1-coding": {
|
|
163
|
-
"type": "zai_coding",
|
|
164
|
-
"name": "glm-5.1",
|
|
165
|
-
"context_length": 200000,
|
|
166
|
-
"supported_settings": ["temperature", "top_p"]
|
|
167
|
-
},
|
|
168
|
-
"zai-glm-5.1-api": {
|
|
169
|
-
"type": "zai_api",
|
|
170
|
-
"name": "glm-5.1",
|
|
171
|
-
"context_length": 200000,
|
|
172
|
-
"supported_settings": ["temperature", "top_p"]
|
|
173
|
-
}
|
|
174
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|