connectonion 0.6.1__py3-none-any.whl → 0.6.3__py3-none-any.whl
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.
- connectonion/__init__.py +46 -9
- connectonion/cli/__init__.py +11 -1
- connectonion/cli/browser_agent/__init__.py +11 -1
- connectonion/cli/browser_agent/browser.py +95 -142
- connectonion/cli/browser_agent/element_finder.py +147 -0
- connectonion/cli/browser_agent/highlight_screenshot.py +182 -0
- connectonion/cli/browser_agent/prompt.md +188 -105
- connectonion/cli/browser_agent/prompts/element_matcher.md +59 -0
- connectonion/cli/browser_agent/prompts/form_filler.md +19 -0
- connectonion/cli/browser_agent/prompts/scroll_strategy.md +36 -0
- connectonion/cli/browser_agent/scripts/extract_elements.js +126 -0
- connectonion/cli/browser_agent/scroll.py +145 -0
- connectonion/cli/co_ai/__init__.py +6 -0
- connectonion/cli/co_ai/agent.py +87 -0
- connectonion/cli/co_ai/agents/__init__.py +5 -0
- connectonion/cli/co_ai/agents/registry.py +57 -0
- connectonion/cli/co_ai/commands/__init__.py +45 -0
- connectonion/cli/co_ai/commands/compact.py +173 -0
- connectonion/cli/co_ai/commands/cost.py +77 -0
- connectonion/cli/co_ai/commands/export.py +60 -0
- connectonion/cli/co_ai/commands/help.py +80 -0
- connectonion/cli/co_ai/commands/init.py +101 -0
- connectonion/cli/co_ai/commands/sessions.py +55 -0
- connectonion/cli/co_ai/commands/tasks.py +63 -0
- connectonion/cli/co_ai/commands/undo.py +103 -0
- connectonion/cli/co_ai/context.py +127 -0
- connectonion/cli/co_ai/main.py +52 -0
- connectonion/cli/co_ai/plugins/__init__.py +6 -0
- connectonion/cli/co_ai/plugins/reminder.py +76 -0
- connectonion/cli/co_ai/plugins/shell_approval.py +105 -0
- connectonion/cli/co_ai/prompts/agents/explore.md +79 -0
- connectonion/cli/co_ai/prompts/agents/plan.md +60 -0
- connectonion/cli/co_ai/prompts/assembler.py +303 -0
- connectonion/cli/{docs/co-vibecoding-principles-docs-contexts-all-in-one.md → co_ai/prompts/connectonion/README.md} +26 -0
- connectonion/cli/co_ai/prompts/connectonion/api.md +457 -0
- connectonion/cli/co_ai/prompts/connectonion/cli/README.md +805 -0
- connectonion/cli/co_ai/prompts/connectonion/cli/auth.md +46 -0
- connectonion/cli/co_ai/prompts/connectonion/cli/browser.md +235 -0
- connectonion/cli/co_ai/prompts/connectonion/cli/copy.md +184 -0
- connectonion/cli/co_ai/prompts/connectonion/cli/create.md +335 -0
- connectonion/cli/co_ai/prompts/connectonion/cli/init.md +431 -0
- connectonion/cli/co_ai/prompts/connectonion/co-directory-structure.md +214 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/agent.md +1078 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/events.md +816 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/llm_do.md +256 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/max_iterations.md +362 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/models.md +641 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/plugins.md +100 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/prompts.md +122 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/tools.md +512 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/transcribe.md +156 -0
- connectonion/cli/co_ai/prompts/connectonion/concepts/trust.md +291 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/README.md +18 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/auto_debug.md +1026 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/console.md +129 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/eval-format.md +178 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/eval.md +230 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/exceptions.md +307 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/log.md +117 -0
- connectonion/cli/co_ai/prompts/connectonion/debug/xray.md +215 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/001-choosing-input-method.md +202 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/002-choosing-llm-function-name.md +202 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/003-choosing-trust-keyword.md +141 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/004-cli-create-flow.md +117 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/005-designing-agent-network-protocol.md +503 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/006-agent-address-format.md +305 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/007-authentication-backend-design.md +240 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/008-naming-is-hard.md +228 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/009-why-connect-function.md +167 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/010-cli-ux-progressive-disclosure.md +176 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/011-global-config-identity-management.md +357 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/012-tool-execution-separation.md +259 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/013-debug-and-logging-design.md +253 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/014-hook-system-design.md +510 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/015-interactive-auto-debug-design.md +837 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/016-why-no-zero-knowledge-proofs.md +358 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/017-session-logging-and-eval-format.md +120 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/018-event-api-naming.md +274 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/019-agent-lifecycle-design.md +655 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/020-trust-system-and-network-architecture.md +503 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/021-task-storage-jsonl-design.md +496 -0
- connectonion/cli/co_ai/prompts/connectonion/design-decisions/022-raw-asgi-implementation.md +273 -0
- connectonion/cli/co_ai/prompts/connectonion/examples/agent_reasoning.md +62 -0
- connectonion/cli/co_ai/prompts/connectonion/examples/atomic_tools.md +24 -0
- connectonion/cli/co_ai/prompts/connectonion/examples/load_guide.md +18 -0
- connectonion/cli/co_ai/prompts/connectonion/examples.md +0 -0
- connectonion/cli/co_ai/prompts/connectonion/hook-system-options.md +364 -0
- connectonion/cli/co_ai/prompts/connectonion/index.md +162 -0
- connectonion/cli/co_ai/prompts/connectonion/integrations/README.md +12 -0
- connectonion/cli/co_ai/prompts/connectonion/integrations/auth.md +450 -0
- connectonion/cli/co_ai/prompts/connectonion/integrations/google.md +431 -0
- connectonion/cli/co_ai/prompts/connectonion/integrations/microsoft.md +370 -0
- connectonion/cli/co_ai/prompts/connectonion/network/README.md +14 -0
- connectonion/cli/co_ai/prompts/connectonion/network/connect.md +543 -0
- connectonion/cli/co_ai/prompts/connectonion/network/connection.md +538 -0
- connectonion/cli/co_ai/prompts/connectonion/network/deploy.md +123 -0
- connectonion/cli/co_ai/prompts/connectonion/network/host.md +1049 -0
- connectonion/cli/co_ai/prompts/connectonion/network/protocol/agent-relay-protocol.md +495 -0
- connectonion/cli/co_ai/prompts/connectonion/network/protocol/announce-message.md +115 -0
- connectonion/cli/co_ai/prompts/connectonion/principles.md +124 -0
- connectonion/cli/co_ai/prompts/connectonion/quickstart.md +261 -0
- connectonion/cli/co_ai/prompts/connectonion/roadmap.md +81 -0
- connectonion/cli/co_ai/prompts/connectonion/templates/README.md +77 -0
- connectonion/cli/co_ai/prompts/connectonion/templates/meta-agent.md +152 -0
- connectonion/cli/co_ai/prompts/connectonion/templates/minimal.md +105 -0
- connectonion/cli/co_ai/prompts/connectonion/templates/playwright.md +130 -0
- connectonion/cli/co_ai/prompts/connectonion/templates/web-research.md +144 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/README.md +95 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/chat.md +181 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/divider.md +63 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/dropdown.md +83 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/footer.md +44 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/fuzzy.md +68 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/input.md +84 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/keys.md +77 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/pick.md +71 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/providers.md +89 -0
- connectonion/cli/co_ai/prompts/connectonion/tui/status_bar.md +67 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/README.md +156 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/calendar_plugin.md +68 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/eval.md +89 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/gmail_plugin.md +68 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/image_result_formatter.md +74 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/re_act.md +86 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_plugins/shell_approval.md +69 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/README.md +81 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/diff_writer.md +138 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/get_emails.md +499 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/gmail.md +135 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/google_calendar.md +106 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/memory.md +486 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/microsoft_calendar.md +106 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/outlook.md +120 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/send_email.md +403 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/shell.md +95 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/slash_command.md +96 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/terminal.md +97 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/todo_list.md +252 -0
- connectonion/cli/co_ai/prompts/connectonion/useful_tools/web_fetch.md +130 -0
- connectonion/cli/co_ai/prompts/connectonion/vibe-coding-guide.md +97 -0
- connectonion/cli/co_ai/prompts/connectonion/windows-support.md +258 -0
- connectonion/cli/co_ai/prompts/main.md +247 -0
- connectonion/cli/co_ai/prompts/reminders/plan_mode.md +34 -0
- connectonion/cli/co_ai/prompts/summarization.md +55 -0
- connectonion/cli/co_ai/prompts/tools/ask_user.md +61 -0
- connectonion/cli/co_ai/prompts/tools/background.md +57 -0
- connectonion/cli/co_ai/prompts/tools/edit.md +90 -0
- connectonion/cli/co_ai/prompts/tools/glob.md +52 -0
- connectonion/cli/co_ai/prompts/tools/grep.md +55 -0
- connectonion/cli/co_ai/prompts/tools/plan_mode.md +80 -0
- connectonion/cli/co_ai/prompts/tools/read.md +40 -0
- connectonion/cli/co_ai/prompts/tools/shell.md +67 -0
- connectonion/cli/co_ai/prompts/tools/task.md +51 -0
- connectonion/cli/co_ai/prompts/tools/todo.md +139 -0
- connectonion/cli/co_ai/prompts/tools/write.md +47 -0
- connectonion/cli/co_ai/prompts/workflow.md +89 -0
- connectonion/cli/co_ai/reminders.py +159 -0
- connectonion/cli/co_ai/sessions.py +110 -0
- connectonion/cli/co_ai/skills/__init__.py +37 -0
- connectonion/cli/co_ai/skills/builtin/commit/SKILL.md +63 -0
- connectonion/cli/co_ai/skills/builtin/review-pr/SKILL.md +76 -0
- connectonion/cli/co_ai/skills/loader.py +166 -0
- connectonion/cli/co_ai/skills/tool.py +46 -0
- connectonion/cli/co_ai/tools/__init__.py +92 -0
- connectonion/cli/co_ai/tools/ask_user.py +35 -0
- connectonion/cli/co_ai/tools/background.py +201 -0
- connectonion/cli/co_ai/tools/diff_writer.py +291 -0
- connectonion/cli/co_ai/tools/edit.py +89 -0
- connectonion/cli/co_ai/tools/glob.py +84 -0
- connectonion/cli/co_ai/tools/grep.py +158 -0
- connectonion/cli/co_ai/tools/load_guide.py +23 -0
- connectonion/cli/co_ai/tools/multi_edit.py +116 -0
- connectonion/cli/co_ai/tools/plan_mode.py +172 -0
- connectonion/cli/co_ai/tools/read.py +67 -0
- connectonion/cli/co_ai/tools/task.py +59 -0
- connectonion/cli/co_ai/tools/todo_list.py +159 -0
- connectonion/cli/co_ai/tools/write.py +126 -0
- connectonion/cli/commands/__init__.py +11 -1
- connectonion/cli/commands/ai_commands.py +34 -0
- connectonion/cli/commands/copy_commands.py +55 -6
- connectonion/cli/commands/create.py +20 -17
- connectonion/cli/commands/init.py +19 -22
- connectonion/cli/commands/project_cmd_lib.py +15 -0
- connectonion/cli/main.py +11 -0
- connectonion/console.py +15 -1
- connectonion/core/__init__.py +10 -1
- connectonion/core/agent.py +37 -16
- connectonion/core/exceptions.py +74 -0
- connectonion/core/llm.py +54 -6
- connectonion/core/tool_executor.py +32 -31
- connectonion/core/tool_factory.py +47 -10
- connectonion/debug/__init__.py +10 -1
- connectonion/debug/debug_explainer/__init__.py +10 -1
- connectonion/debug/execution_analyzer/__init__.py +10 -1
- connectonion/debug/execution_analyzer/execution_analysis.py +5 -2
- connectonion/debug/runtime_inspector/__init__.py +10 -1
- connectonion/docs/.package-ignore +6 -0
- connectonion/docs/README.md +2036 -0
- connectonion/docs/api.md +457 -0
- connectonion/docs/archive/001-ai-agent-is-just-prompt-plus-function.md +249 -0
- connectonion/docs/archive/README.md +53 -0
- connectonion/docs/archive/archive/consolidation-plan.md +72 -0
- connectonion/docs/archive/archive/core-principles-extracted.md +239 -0
- connectonion/docs/archive/archive/master-principles.md +222 -0
- connectonion/docs/archive/archive/principles.md +293 -0
- connectonion/docs/archive/archive/simplicity-principles.md +221 -0
- connectonion/docs/archive/attack-defense-insights.md +410 -0
- connectonion/docs/archive/business-model.md +305 -0
- connectonion/docs/archive/core-principles-unified.md +190 -0
- connectonion/docs/archive/discussion-journey.md +178 -0
- connectonion/docs/archive/economic-analysis.md +323 -0
- connectonion/docs/archive/features/01-share-and-find.md +256 -0
- connectonion/docs/archive/features/02-agent-authentication.md +93 -0
- connectonion/docs/archive/features/03-test-before-trust.md +71 -0
- connectonion/docs/archive/features/06-reliability-and-offline.md +197 -0
- connectonion/docs/archive/features/README.md +46 -0
- connectonion/docs/archive/features-roadmap.md +247 -0
- connectonion/docs/archive/mcp-comparison-insights.md +215 -0
- connectonion/docs/archive/migration-strategy.md +571 -0
- connectonion/docs/archive/mini-whitepaper.md +293 -0
- connectonion/docs/archive/network-protocol.md +394 -0
- connectonion/docs/archive/semantic-revolution.md +367 -0
- connectonion/docs/archive/technical-architecture.md +453 -0
- connectonion/docs/archive/the-semantic-insight.md +207 -0
- connectonion/docs/archive/threat-model.md +164 -0
- connectonion/docs/cli/README.md +805 -0
- connectonion/docs/cli/auth.md +46 -0
- connectonion/docs/cli/browser.md +235 -0
- connectonion/docs/cli/copy.md +232 -0
- connectonion/docs/cli/create.md +335 -0
- connectonion/docs/cli/init.md +431 -0
- connectonion/docs/co-directory-structure.md +214 -0
- connectonion/docs/concepts/agent.md +1078 -0
- connectonion/docs/concepts/events.md +699 -0
- connectonion/docs/concepts/llm_do.md +256 -0
- connectonion/docs/concepts/max_iterations.md +362 -0
- connectonion/docs/concepts/models.md +641 -0
- connectonion/docs/concepts/plugins.md +100 -0
- connectonion/docs/concepts/prompts.md +122 -0
- connectonion/docs/concepts/session.md +428 -0
- connectonion/docs/concepts/tools.md +512 -0
- connectonion/docs/concepts/transcribe.md +156 -0
- connectonion/docs/concepts/trust.md +291 -0
- connectonion/docs/connectonion.md +1256 -0
- connectonion/docs/debug/README.md +18 -0
- connectonion/docs/debug/auto_debug.md +1026 -0
- connectonion/docs/debug/console.md +129 -0
- connectonion/docs/debug/eval-format.md +178 -0
- connectonion/docs/debug/eval.md +230 -0
- connectonion/docs/debug/exceptions.md +307 -0
- connectonion/docs/debug/log.md +117 -0
- connectonion/docs/debug/xray.md +215 -0
- connectonion/docs/design-decisions/001-choosing-input-method.md +202 -0
- connectonion/docs/design-decisions/002-choosing-llm-function-name.md +202 -0
- connectonion/docs/design-decisions/003-choosing-trust-keyword.md +141 -0
- connectonion/docs/design-decisions/004-cli-create-flow.md +117 -0
- connectonion/docs/design-decisions/005-designing-agent-network-protocol.md +503 -0
- connectonion/docs/design-decisions/006-agent-address-format.md +305 -0
- connectonion/docs/design-decisions/007-authentication-backend-design.md +240 -0
- connectonion/docs/design-decisions/008-naming-is-hard.md +228 -0
- connectonion/docs/design-decisions/009-why-connect-function.md +167 -0
- connectonion/docs/design-decisions/010-cli-ux-progressive-disclosure.md +176 -0
- connectonion/docs/design-decisions/011-global-config-identity-management.md +357 -0
- connectonion/docs/design-decisions/012-tool-execution-separation.md +259 -0
- connectonion/docs/design-decisions/013-debug-and-logging-design.md +253 -0
- connectonion/docs/design-decisions/014-hook-system-design.md +510 -0
- connectonion/docs/design-decisions/015-interactive-auto-debug-design.md +837 -0
- connectonion/docs/design-decisions/016-why-no-zero-knowledge-proofs.md +358 -0
- connectonion/docs/design-decisions/017-session-logging-and-eval-format.md +120 -0
- connectonion/docs/design-decisions/018-event-api-naming.md +274 -0
- connectonion/docs/design-decisions/019-agent-lifecycle-design.md +655 -0
- connectonion/docs/design-decisions/020-trust-system-and-network-architecture.md +503 -0
- connectonion/docs/design-decisions/021-task-storage-jsonl-design.md +496 -0
- connectonion/docs/design-decisions/022-raw-asgi-implementation.md +273 -0
- connectonion/docs/examples.md +0 -0
- connectonion/docs/hook-system-options.md +364 -0
- connectonion/docs/integrations/README.md +12 -0
- connectonion/docs/integrations/auth.md +450 -0
- connectonion/docs/integrations/google.md +431 -0
- connectonion/docs/integrations/microsoft.md +370 -0
- connectonion/docs/network/README.md +14 -0
- connectonion/docs/network/connect.md +629 -0
- connectonion/docs/network/deploy.md +124 -0
- connectonion/docs/network/host.md +1087 -0
- connectonion/docs/network/io.md +538 -0
- connectonion/docs/network/protocol/agent-relay-protocol.md +495 -0
- connectonion/docs/network/protocol/announce-message.md +115 -0
- connectonion/docs/principles.md +124 -0
- connectonion/docs/quickstart.md +261 -0
- connectonion/docs/roadmap.md +81 -0
- connectonion/docs/templates/README.md +77 -0
- connectonion/docs/templates/meta-agent.md +152 -0
- connectonion/docs/templates/minimal.md +105 -0
- connectonion/docs/templates/playwright.md +130 -0
- connectonion/docs/templates/web-research.md +144 -0
- connectonion/docs/tui/README.md +95 -0
- connectonion/docs/tui/chat.md +181 -0
- connectonion/docs/tui/divider.md +63 -0
- connectonion/docs/tui/dropdown.md +83 -0
- connectonion/docs/tui/footer.md +44 -0
- connectonion/docs/tui/fuzzy.md +68 -0
- connectonion/docs/tui/input.md +84 -0
- connectonion/docs/tui/keys.md +77 -0
- connectonion/docs/tui/pick.md +71 -0
- connectonion/docs/tui/providers.md +89 -0
- connectonion/docs/tui/status_bar.md +67 -0
- connectonion/docs/useful_plugins/README.md +160 -0
- connectonion/docs/useful_plugins/calendar_plugin.md +68 -0
- connectonion/docs/useful_plugins/eval.md +89 -0
- connectonion/docs/useful_plugins/gmail_plugin.md +68 -0
- connectonion/docs/useful_plugins/image_result_formatter.md +74 -0
- connectonion/docs/useful_plugins/re_act.md +86 -0
- connectonion/docs/useful_plugins/shell_approval.md +69 -0
- connectonion/docs/useful_plugins/system_reminder.md +210 -0
- connectonion/docs/useful_prompts/README.md +127 -0
- connectonion/docs/useful_prompts/coding_agent.md +214 -0
- connectonion/docs/useful_tools/README.md +81 -0
- connectonion/docs/useful_tools/ask_user.md +103 -0
- connectonion/docs/useful_tools/diff_writer.md +158 -0
- connectonion/docs/useful_tools/get_emails.md +519 -0
- connectonion/docs/useful_tools/gmail.md +155 -0
- connectonion/docs/useful_tools/google_calendar.md +126 -0
- connectonion/docs/useful_tools/memory.md +506 -0
- connectonion/docs/useful_tools/microsoft_calendar.md +126 -0
- connectonion/docs/useful_tools/outlook.md +140 -0
- connectonion/docs/useful_tools/send_email.md +423 -0
- connectonion/docs/useful_tools/shell.md +115 -0
- connectonion/docs/useful_tools/slash_command.md +116 -0
- connectonion/docs/useful_tools/terminal.md +115 -0
- connectonion/docs/useful_tools/todo_list.md +272 -0
- connectonion/docs/useful_tools/web_fetch.md +150 -0
- connectonion/docs/vibe-coding-guide.md +97 -0
- connectonion/docs/windows-support.md +258 -0
- connectonion/logger.py +3 -3
- connectonion/network/__init__.py +19 -6
- connectonion/network/asgi/__init__.py +81 -0
- connectonion/network/asgi/http.py +205 -0
- connectonion/network/asgi/websocket.py +217 -0
- connectonion/network/connect.py +232 -185
- connectonion/network/host/__init__.py +59 -0
- connectonion/network/host/auth.py +191 -0
- connectonion/network/host/routes.py +135 -0
- connectonion/network/host/server.py +289 -0
- connectonion/network/host/session.py +78 -0
- connectonion/network/io/__init__.py +21 -0
- connectonion/network/{connection.py → io/base.py} +17 -42
- connectonion/network/io/websocket.py +55 -0
- connectonion/network/relay.py +37 -16
- connectonion/network/trust/__init__.py +30 -0
- connectonion/network/trust/factory.py +138 -0
- connectonion/network/{trust_agents.py → trust/prompts.py} +3 -3
- connectonion/network/{trust_functions.py → trust/tools.py} +2 -2
- connectonion/prompt_files/__init__.py +11 -1
- connectonion/prompt_files/react_acknowledge.md +26 -0
- connectonion/prompts.py +10 -1
- connectonion/tui/chat.py +10 -1
- connectonion/tui/divider.py +10 -1
- connectonion/tui/dropdown.py +10 -1
- connectonion/tui/footer.py +8 -0
- connectonion/tui/fuzzy.py +11 -1
- connectonion/tui/input.py +118 -70
- connectonion/tui/keys.py +133 -6
- connectonion/tui/providers.py +11 -1
- connectonion/tui/status_bar.py +10 -1
- connectonion/useful_events_handlers/__init__.py +8 -0
- connectonion/useful_events_handlers/reflect.py +19 -4
- connectonion/useful_plugins/__init__.py +2 -1
- connectonion/useful_plugins/eval.py +2 -2
- connectonion/useful_plugins/gmail_plugin.py +3 -3
- connectonion/useful_plugins/image_result_formatter.py +3 -3
- connectonion/useful_plugins/re_act.py +114 -28
- connectonion/useful_plugins/shell_approval.py +2 -2
- connectonion/useful_plugins/system_reminder.py +103 -0
- connectonion/useful_plugins/ui_stream.py +18 -133
- connectonion/useful_prompts/README.md +61 -0
- connectonion/useful_prompts/__init__.py +45 -0
- connectonion/useful_prompts/coding_agent/README.md +106 -0
- connectonion/useful_prompts/coding_agent/assembler.py +123 -0
- connectonion/useful_prompts/coding_agent/prompts/main.md +227 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/ask_user.md +61 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/background.md +57 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/edit.md +90 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/glob.md +52 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/grep.md +55 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/plan_mode.md +80 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/read.md +40 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/shell.md +67 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/task.md +51 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/todo.md +139 -0
- connectonion/useful_prompts/coding_agent/prompts/tools/write.md +48 -0
- connectonion/useful_prompts/system-reminders/security-warning.md +14 -0
- connectonion/useful_prompts/system-reminders/test-reminder.md +11 -0
- connectonion/useful_tools/__init__.py +31 -4
- connectonion/useful_tools/ask_user.py +35 -0
- connectonion/useful_tools/bash.py +69 -0
- connectonion/useful_tools/diff_writer.py +186 -94
- connectonion/useful_tools/edit.py +102 -0
- connectonion/useful_tools/glob_files.py +97 -0
- connectonion/useful_tools/grep_files.py +171 -0
- connectonion/useful_tools/multi_edit.py +116 -0
- connectonion/useful_tools/read_file.py +73 -0
- connectonion/useful_tools/shell.py +50 -45
- connectonion/useful_tools/write_file.py +129 -0
- {connectonion-0.6.1.dist-info → connectonion-0.6.3.dist-info}/METADATA +10 -3
- connectonion-0.6.3.dist-info/RECORD +469 -0
- connectonion/cli/browser_agent/scroll_strategies.py +0 -276
- connectonion/network/asgi.py +0 -407
- connectonion/network/host.py +0 -616
- connectonion/network/trust.py +0 -166
- connectonion-0.6.1.dist-info/RECORD +0 -123
- /connectonion/cli/{docs → co_ai/prompts/connectonion}/connectonion.md +0 -0
- {connectonion-0.6.1.dist-info → connectonion-0.6.3.dist-info}/WHEEL +0 -0
- {connectonion-0.6.1.dist-info → connectonion-0.6.3.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
# Authentication & Managed Keys
|
|
2
|
+
|
|
3
|
+
Zero-configuration LLM access with ConnectOnion's managed keys. Use any LLM model without managing API keys.
|
|
4
|
+
|
|
5
|
+
## Quick Start (2 minutes)
|
|
6
|
+
|
|
7
|
+
Get started with managed keys in three simple steps:
|
|
8
|
+
|
|
9
|
+
### 1. Authenticate Once
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
$ co auth
|
|
13
|
+
Opening browser for authentication...
|
|
14
|
+
✅ Authenticated successfully! Token saved to ~/.co/auth.json
|
|
15
|
+
📧 Your email: 0x1234abcd@mail.openonion.ai (activated)
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### 2. Use Any Model with `co/` Prefix
|
|
19
|
+
|
|
20
|
+
```python
|
|
21
|
+
from connectonion import llm_do
|
|
22
|
+
|
|
23
|
+
# No API keys needed!
|
|
24
|
+
response = llm_do("Hello world!", model="co/gpt-4o")
|
|
25
|
+
print(response) # Works immediately!
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### 3. That's It!
|
|
29
|
+
|
|
30
|
+
You now have access to all major LLM models without managing any API keys.
|
|
31
|
+
|
|
32
|
+
## Your Keys vs Managed Keys
|
|
33
|
+
|
|
34
|
+
| Aspect | Your Own Keys | Managed Keys (co/) |
|
|
35
|
+
|--------|--------------|-------------------|
|
|
36
|
+
| **Setup** | Get keys from each provider | One-time `co auth` |
|
|
37
|
+
| **Usage** | `model="gpt-4o"` | `model="co/gpt-4o"` |
|
|
38
|
+
| **Config** | Set environment variables | None needed |
|
|
39
|
+
| **Models** | Limited to your keys | All models instantly |
|
|
40
|
+
| **Cost** | Direct provider billing | Usage-based pricing |
|
|
41
|
+
| **Team** | Share keys manually | Built-in collaboration |
|
|
42
|
+
|
|
43
|
+
## How It Works
|
|
44
|
+
|
|
45
|
+
### The Magic of `co/` Prefix
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
# Using your own OpenAI key (traditional way)
|
|
49
|
+
llm_do("Hello", model="gpt-4o") # Requires OPENAI_API_KEY
|
|
50
|
+
|
|
51
|
+
# Using ConnectOnion managed keys (new way)
|
|
52
|
+
llm_do("Hello", model="co/gpt-4o") # Just works!
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
The `co/` prefix tells ConnectOnion to use managed keys from the platform instead of looking for environment variables.
|
|
56
|
+
|
|
57
|
+
### Behind the Scenes
|
|
58
|
+
|
|
59
|
+
1. **Authentication**: `co auth` gets a secure token from OpenOnion.ai
|
|
60
|
+
2. **Token Storage**: Token saved to `~/.co/auth.json` (encrypted)
|
|
61
|
+
3. **Email Activation**: Your agent's email address is activated for sending/receiving
|
|
62
|
+
4. **Request Flow**: When you use `co/` prefix, requests go through OpenOnion's proxy
|
|
63
|
+
5. **Automatic Refresh**: Tokens refresh automatically when needed
|
|
64
|
+
|
|
65
|
+
## Available Commands
|
|
66
|
+
|
|
67
|
+
### Currently Available
|
|
68
|
+
|
|
69
|
+
#### `co auth` - Authenticate with OpenOnion
|
|
70
|
+
```bash
|
|
71
|
+
$ co auth
|
|
72
|
+
|
|
73
|
+
# What happens:
|
|
74
|
+
# 1. Opens browser to https://openonion.ai/auth
|
|
75
|
+
# 2. You log in with GitHub/Google/Email
|
|
76
|
+
# 3. Token is saved locally
|
|
77
|
+
# 4. You're ready to use co/ models
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Coming Soon
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
# Check authentication status and usage
|
|
84
|
+
$ co status
|
|
85
|
+
✅ Authenticated as: user@example.com
|
|
86
|
+
📊 Usage today: 15,234 tokens ($0.31)
|
|
87
|
+
💳 Plan: Free tier (84,766 tokens remaining)
|
|
88
|
+
|
|
89
|
+
# Log out and clear credentials
|
|
90
|
+
$ co logout
|
|
91
|
+
✅ Logged out successfully
|
|
92
|
+
|
|
93
|
+
# Configure settings
|
|
94
|
+
$ co config set default_model co/claude-3-5-sonnet
|
|
95
|
+
✅ Default model updated
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Supported Models
|
|
99
|
+
|
|
100
|
+
All models are available with the `co/` prefix:
|
|
101
|
+
|
|
102
|
+
### OpenAI Models
|
|
103
|
+
```python
|
|
104
|
+
llm_do("Hello", model="co/gpt-4o")
|
|
105
|
+
llm_do("Hello", model="co/gpt-4o-mini")
|
|
106
|
+
llm_do("Hello", model="co/o1-preview")
|
|
107
|
+
llm_do("Hello", model="co/o1-mini")
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
### Anthropic Models
|
|
111
|
+
```python
|
|
112
|
+
llm_do("Hello", model="co/claude-3-5-sonnet")
|
|
113
|
+
llm_do("Hello", model="co/claude-3-5-haiku")
|
|
114
|
+
llm_do("Hello", model="co/claude-3-opus")
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Google Models
|
|
118
|
+
```python
|
|
119
|
+
llm_do("Hello", model="co/gemini-1.5-pro")
|
|
120
|
+
llm_do("Hello", model="co/gemini-1.5-flash")
|
|
121
|
+
llm_do("Hello", model="co/gemini-2.0-flash-exp")
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## Real-World Examples
|
|
125
|
+
|
|
126
|
+
### Basic Usage
|
|
127
|
+
|
|
128
|
+
```python
|
|
129
|
+
from connectonion import llm_do, Agent
|
|
130
|
+
|
|
131
|
+
# Simple completion
|
|
132
|
+
response = llm_do("Explain quantum computing", model="co/gpt-4o")
|
|
133
|
+
|
|
134
|
+
# With structured output
|
|
135
|
+
from pydantic import BaseModel
|
|
136
|
+
|
|
137
|
+
class Summary(BaseModel):
|
|
138
|
+
title: str
|
|
139
|
+
key_points: list[str]
|
|
140
|
+
complexity: int
|
|
141
|
+
|
|
142
|
+
result = llm_do(
|
|
143
|
+
"Summarize this article about AI...",
|
|
144
|
+
model="co/claude-3-5-sonnet",
|
|
145
|
+
output=Summary
|
|
146
|
+
)
|
|
147
|
+
print(result.key_points)
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
### Using with Agents
|
|
151
|
+
|
|
152
|
+
```python
|
|
153
|
+
from connectonion import Agent
|
|
154
|
+
|
|
155
|
+
# Agent with managed keys
|
|
156
|
+
agent = Agent(
|
|
157
|
+
name="assistant",
|
|
158
|
+
model="co/gpt-4o", # No API key needed!
|
|
159
|
+
system_prompt="You are a helpful assistant"
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
response = agent.input("Help me write a Python function")
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
### Model Comparison
|
|
166
|
+
|
|
167
|
+
```python
|
|
168
|
+
# Compare responses from different models
|
|
169
|
+
models = ["co/gpt-4o", "co/claude-3-5-sonnet", "co/gemini-1.5-pro"]
|
|
170
|
+
|
|
171
|
+
for model in models:
|
|
172
|
+
response = llm_do("What's the meaning of life?", model=model)
|
|
173
|
+
print(f"{model}: {response[:100]}...")
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Mixing Keys
|
|
177
|
+
|
|
178
|
+
```python
|
|
179
|
+
# Use your own key for development
|
|
180
|
+
dev_response = llm_do("Test prompt", model="gpt-4o-mini")
|
|
181
|
+
|
|
182
|
+
# Use managed keys for production
|
|
183
|
+
prod_response = llm_do("Production prompt", model="co/gpt-4o")
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
## Developer Workflows
|
|
187
|
+
|
|
188
|
+
### Development Pattern
|
|
189
|
+
|
|
190
|
+
```python
|
|
191
|
+
import os
|
|
192
|
+
from connectonion import llm_do
|
|
193
|
+
|
|
194
|
+
def get_model():
|
|
195
|
+
"""Smart model selection based on environment."""
|
|
196
|
+
if os.getenv("OPENAI_API_KEY"):
|
|
197
|
+
return "gpt-4o" # Use own key if available
|
|
198
|
+
else:
|
|
199
|
+
return "co/gpt-4o" # Fall back to managed
|
|
200
|
+
|
|
201
|
+
response = llm_do("Hello", model=get_model())
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
### Cost Optimization
|
|
205
|
+
|
|
206
|
+
```python
|
|
207
|
+
# Use cheaper models for development/testing
|
|
208
|
+
DEV_MODEL = "co/gpt-4o-mini" # Cheaper
|
|
209
|
+
PROD_MODEL = "co/gpt-4o" # Better
|
|
210
|
+
|
|
211
|
+
model = DEV_MODEL if debug else PROD_MODEL
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Testing Multiple Models
|
|
215
|
+
|
|
216
|
+
```python
|
|
217
|
+
def test_all_models(prompt):
|
|
218
|
+
"""Test prompt across all providers."""
|
|
219
|
+
models = {
|
|
220
|
+
"OpenAI": "co/gpt-4o",
|
|
221
|
+
"Anthropic": "co/claude-3-5-sonnet",
|
|
222
|
+
"Google": "co/gemini-1.5-pro"
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
results = {}
|
|
226
|
+
for provider, model in models.items():
|
|
227
|
+
try:
|
|
228
|
+
results[provider] = llm_do(prompt, model=model)
|
|
229
|
+
except Exception as e:
|
|
230
|
+
results[provider] = f"Error: {e}"
|
|
231
|
+
|
|
232
|
+
return results
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
## Migration Guide
|
|
236
|
+
|
|
237
|
+
### From Environment Variables
|
|
238
|
+
|
|
239
|
+
**Before (with environment variables):**
|
|
240
|
+
```python
|
|
241
|
+
# .env file
|
|
242
|
+
OPENAI_API_KEY=sk-...
|
|
243
|
+
ANTHROPIC_API_KEY=sk-ant-...
|
|
244
|
+
|
|
245
|
+
# Python code
|
|
246
|
+
import os
|
|
247
|
+
from connectonion import llm_do
|
|
248
|
+
|
|
249
|
+
# Had to manage multiple keys
|
|
250
|
+
response = llm_do("Hello", model="gpt-4o")
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
**After (with managed keys):**
|
|
254
|
+
```python
|
|
255
|
+
# No .env needed!
|
|
256
|
+
from connectonion import llm_do
|
|
257
|
+
|
|
258
|
+
# Just add co/ prefix
|
|
259
|
+
response = llm_do("Hello", model="co/gpt-4o")
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
### Gradual Migration
|
|
263
|
+
|
|
264
|
+
```python
|
|
265
|
+
def smart_llm_do(prompt, preferred_model="gpt-4o"):
|
|
266
|
+
"""Gradually migrate to managed keys."""
|
|
267
|
+
try:
|
|
268
|
+
# Try with your own key first
|
|
269
|
+
return llm_do(prompt, model=preferred_model)
|
|
270
|
+
except Exception:
|
|
271
|
+
# Fall back to managed keys
|
|
272
|
+
return llm_do(prompt, model=f"co/{preferred_model}")
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
### Team Collaboration
|
|
276
|
+
|
|
277
|
+
```python
|
|
278
|
+
# Everyone on the team just needs to run:
|
|
279
|
+
# $ co auth
|
|
280
|
+
|
|
281
|
+
# Then everyone can use the same code:
|
|
282
|
+
agent = Agent("shared_bot", model="co/gpt-4o")
|
|
283
|
+
|
|
284
|
+
# No more "it works on my machine" issues!
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
## Error Handling
|
|
288
|
+
|
|
289
|
+
### Common Errors and Solutions
|
|
290
|
+
|
|
291
|
+
```python
|
|
292
|
+
try:
|
|
293
|
+
response = llm_do("Hello", model="co/gpt-4o")
|
|
294
|
+
except Exception as e:
|
|
295
|
+
if "Not authenticated" in str(e):
|
|
296
|
+
print("Run 'co auth' to authenticate first")
|
|
297
|
+
elif "Token expired" in str(e):
|
|
298
|
+
print("Run 'co auth' to refresh your token")
|
|
299
|
+
elif "Rate limit" in str(e):
|
|
300
|
+
print("Rate limited. Try again in a few seconds")
|
|
301
|
+
else:
|
|
302
|
+
print(f"Unexpected error: {e}")
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
### Error Messages
|
|
306
|
+
|
|
307
|
+
| Error | Meaning | Solution |
|
|
308
|
+
|-------|---------|----------|
|
|
309
|
+
| `Not authenticated` | No auth token found | Run `co auth` |
|
|
310
|
+
| `Token expired` | Auth token is too old | Run `co auth` again |
|
|
311
|
+
| `Rate limit exceeded` | Too many requests | Wait and retry |
|
|
312
|
+
| `Model not found` | Invalid model name | Check supported models |
|
|
313
|
+
| `Network error` | Connection issues | Check internet connection |
|
|
314
|
+
|
|
315
|
+
## Security & Privacy
|
|
316
|
+
|
|
317
|
+
### Token Storage
|
|
318
|
+
|
|
319
|
+
- **Location**: `~/.co/auth.json`
|
|
320
|
+
- **Encryption**: Tokens are encrypted at rest
|
|
321
|
+
- **Permissions**: File is readable only by you (600)
|
|
322
|
+
- **Expiration**: Tokens expire after 30 days
|
|
323
|
+
|
|
324
|
+
### Data Handling
|
|
325
|
+
|
|
326
|
+
- **Requests**: Proxied through OpenOnion.ai servers
|
|
327
|
+
- **Logging**: Optional request logging (can be disabled)
|
|
328
|
+
- **Storage**: No prompt/response storage by default
|
|
329
|
+
- **Compliance**: SOC2 Type II compliant infrastructure
|
|
330
|
+
|
|
331
|
+
### Best Practices
|
|
332
|
+
|
|
333
|
+
1. **Don't commit tokens**: Add `~/.co/` to `.gitignore`
|
|
334
|
+
2. **Use environment-specific models**: Different models for dev/prod
|
|
335
|
+
3. **Monitor usage**: Check usage regularly with `co status` (coming soon)
|
|
336
|
+
4. **Rotate tokens**: Re-authenticate monthly for security
|
|
337
|
+
|
|
338
|
+
## Troubleshooting
|
|
339
|
+
|
|
340
|
+
### Authentication Issues
|
|
341
|
+
|
|
342
|
+
**Browser doesn't open:**
|
|
343
|
+
```bash
|
|
344
|
+
# Manually open the URL
|
|
345
|
+
$ co auth --no-browser
|
|
346
|
+
Visit: https://openonion.ai/auth?token=abc123...
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
**Token not saving:**
|
|
350
|
+
```bash
|
|
351
|
+
# Check permissions
|
|
352
|
+
$ ls -la ~/.co/
|
|
353
|
+
# Should show drwx------ (700) permissions
|
|
354
|
+
|
|
355
|
+
# Fix permissions if needed
|
|
356
|
+
$ chmod 700 ~/.co
|
|
357
|
+
$ chmod 600 ~/.co/auth.json
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
### Connection Issues
|
|
361
|
+
|
|
362
|
+
**Timeout errors:**
|
|
363
|
+
```python
|
|
364
|
+
# Increase timeout
|
|
365
|
+
response = llm_do(
|
|
366
|
+
"Hello",
|
|
367
|
+
model="co/gpt-4o",
|
|
368
|
+
timeout=60 # seconds
|
|
369
|
+
)
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
**Proxy issues:**
|
|
373
|
+
```bash
|
|
374
|
+
# If behind corporate proxy
|
|
375
|
+
$ export HTTPS_PROXY=http://proxy.company.com:8080
|
|
376
|
+
$ co auth
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
## API Reference
|
|
380
|
+
|
|
381
|
+
### Authentication Endpoint
|
|
382
|
+
|
|
383
|
+
```
|
|
384
|
+
POST https://api.openonion.ai/v1/auth
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
### Request Format
|
|
388
|
+
|
|
389
|
+
When using `co/` prefix, requests are automatically formatted:
|
|
390
|
+
|
|
391
|
+
```python
|
|
392
|
+
# Your code
|
|
393
|
+
llm_do("Hello", model="co/gpt-4o")
|
|
394
|
+
|
|
395
|
+
# What gets sent
|
|
396
|
+
{
|
|
397
|
+
"model": "gpt-4o",
|
|
398
|
+
"messages": [...],
|
|
399
|
+
"auth_token": "your_token_here"
|
|
400
|
+
}
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
### Rate Limits
|
|
404
|
+
|
|
405
|
+
| Plan | Requests/min | Tokens/day |
|
|
406
|
+
|------|--------------|------------|
|
|
407
|
+
| Free | 20 | 10,000 |
|
|
408
|
+
| Pro | 100 | 100,000 |
|
|
409
|
+
| Team | 500 | 1,000,000 |
|
|
410
|
+
|
|
411
|
+
## Frequently Asked Questions
|
|
412
|
+
|
|
413
|
+
**Q: Is this free?**
|
|
414
|
+
A: Yes! Free tier includes 10,000 tokens/day. Paid plans available for higher usage.
|
|
415
|
+
|
|
416
|
+
**Q: Can I use my own keys alongside managed keys?**
|
|
417
|
+
A: Yes! Use `model="gpt-4o"` for your keys, `model="co/gpt-4o"` for managed keys.
|
|
418
|
+
|
|
419
|
+
**Q: What happens to my prompts?**
|
|
420
|
+
A: Prompts are proxied through OpenOnion servers but not stored by default. You can enable logging for debugging.
|
|
421
|
+
|
|
422
|
+
**Q: Can I use this in production?**
|
|
423
|
+
A: Yes! The platform is designed for production use with 99.9% uptime SLA for paid plans.
|
|
424
|
+
|
|
425
|
+
**Q: How do I monitor costs?**
|
|
426
|
+
A: Use `co status` (coming soon) or visit dashboard.openonion.ai
|
|
427
|
+
|
|
428
|
+
**Q: Can my team share access?**
|
|
429
|
+
A: Team features are coming soon. For now, each developer needs their own account.
|
|
430
|
+
|
|
431
|
+
**Q: What if OpenOnion is down?**
|
|
432
|
+
A: You can always fall back to your own API keys by removing the `co/` prefix.
|
|
433
|
+
|
|
434
|
+
## Getting Help
|
|
435
|
+
|
|
436
|
+
- **Documentation**: https://docs.connectonion.com/auth
|
|
437
|
+
- **Issues**: https://github.com/connectonion/connectonion/issues
|
|
438
|
+
- **Discord**: https://discord.gg/connectonion
|
|
439
|
+
- **Email**: support@openonion.ai
|
|
440
|
+
|
|
441
|
+
## Next Steps
|
|
442
|
+
|
|
443
|
+
1. Run `co auth` to get started
|
|
444
|
+
2. Try the [Quick Start examples](#quick-start-2-minutes)
|
|
445
|
+
3. Explore [all available models](#supported-models)
|
|
446
|
+
4. Join our [Discord community](https://discord.gg/connectonion)
|
|
447
|
+
|
|
448
|
+
---
|
|
449
|
+
|
|
450
|
+
*Note: This feature is currently in beta. Additional commands (`co status`, `co logout`, `co config`) are coming soon.*
|