@aman_asmuei/aman-agent 0.18.0 → 0.21.0

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.
package/README.md CHANGED
@@ -105,7 +105,23 @@ export OPENAI_API_KEY="sk-..." # → uses GPT-4o
105
105
  # Or if Ollama is running locally # → uses llama3.2
106
106
  ```
107
107
 
108
- No env var? First run prompts for your LLM provider, API key, and model.
108
+ No env var? First run prompts for your LLM provider and model:
109
+
110
+ ```
111
+ ◇ LLM provider
112
+ │ ● Claude (Anthropic) — recommended, uses Claude Code CLI
113
+ │ ○ GitHub Copilot — uses GitHub Models API
114
+ │ ○ GPT (OpenAI)
115
+ │ ○ Ollama (local) — free, runs offline
116
+ ```
117
+
118
+ **Claude** — authentication handled by Claude Code CLI (`claude login`). Supports subscription (Pro/Max/Team/Enterprise), API billing, Bedrock, and Vertex AI. No API key needed.
119
+
120
+ **GitHub Copilot** — authentication handled by GitHub CLI (`gh auth login`). Uses GitHub Models API with access to GPT-4o, Claude Sonnet, Llama, Mistral, and more.
121
+
122
+ **OpenAI** — enter your API key directly.
123
+
124
+ **Ollama** — local models, no account needed.
109
125
 
110
126
  ### 2. First Launch — You'll Be Asked About You
111
127