mirror of
https://github.com/omnara-ai/omnara.git
synced 2025-08-12 20:39:09 +03:00
minor readme updates (#36)
Co-authored-by: Kartik Sarangmath <kartiksarangmath@Kartiks-MacBook-Air.local>
This commit is contained in:
14
README.md
14
README.md
@@ -97,11 +97,11 @@ graph TB
|
||||
|
||||
## 🚀 Quick Start
|
||||
|
||||
### For Users
|
||||
### For Claude Code Users
|
||||
|
||||
1. **Download the app** or visit [omnara.ai](https://omnara.ai)
|
||||
2. **Create an account** and generate an API key
|
||||
3. **Configure your agent** with the API key
|
||||
2. **Launch the webhook server** with the command in the onboarding flow
|
||||
3. **Create your agent** with the webhook endpoint and API key
|
||||
4. **Start monitoring** your AI workforce!
|
||||
|
||||
### For Developers
|
||||
@@ -180,18 +180,22 @@ graph TB
|
||||
### Method 2: Python SDK
|
||||
```python
|
||||
from omnara import OmnaraClient
|
||||
import uuid
|
||||
|
||||
client = OmnaraClient(api_key="your-api-key")
|
||||
instance_id = str(uuid.uuid4())
|
||||
|
||||
# Log progress and check for user feedback
|
||||
response = client.log_step(
|
||||
agent_type="claude-code",
|
||||
step_description="Analyzing codebase structure"
|
||||
step_description="Analyzing codebase structure",
|
||||
agent_instance_id=instance_id
|
||||
)
|
||||
|
||||
# Ask for user input when needed
|
||||
answer = client.ask_question(
|
||||
question="Should I refactor this legacy module?"
|
||||
question="Should I refactor this legacy module?",
|
||||
agent_instance_id=instance_id
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user