Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
1a8db94
fix(docker): resolve shell script line ending issues
valentt Oct 14, 2025
5f497c8
fix(deps): add missing langchain-openai dependency
valentt Oct 14, 2025
2a17574
fix(backend): add missing __init__.py for nodes package
valentt Oct 14, 2025
202d1ad
fix(workflow): add missing Command imports in browser and planner nodes
valentt Oct 14, 2025
f8f0df4
fix(coordinator): add Command import and improve response handling
valentt Oct 14, 2025
de091c8
fix(workflow): simplify graph configuration to use Command-based routing
valentt Oct 14, 2025
648b86d
fix(prompts): correct template regex and add TEAM_MEMBERS support
valentt Oct 14, 2025
59109e3
fix(workflow): handle both dict and Pydantic message objects
valentt Oct 14, 2025
99c94c4
fix(llm): improve PlaceholderLLM and implement actual LLM client crea…
valentt Oct 14, 2025
daa08f0
fix(frontend): implement ChatInput event handlers
valentt Oct 14, 2025
f393bc6
fix(frontend): connect UI to backend API with SSE streaming
valentt Oct 14, 2025
0820602
fix(frontend): improve ChatDisplay styling and UX
valentt Oct 14, 2025
36e4199
fix(cli): update client.py for current API endpoint
valentt Oct 14, 2025
b92e2e1
feat(llm): implement Manus API custom client
valentt Oct 14, 2025
f4fccb1
docs: create comprehensive .env.example template
valentt Oct 14, 2025
633f193
docs: update README with comprehensive configuration guide
valentt Oct 14, 2025
3aa06a4
docs: add comprehensive bug fix report
valentt Oct 14, 2025
d90dfbf
chore: update .gitignore to exclude IDE files and planning docs
valentt Oct 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# OpenManus LLM Configuration
# Copy this file to .env and fill in your API keys

# ============================================
# BASIC LLM (Required)
# Used by most agents (coordinator, supervisor, etc.)
# ============================================
BASIC_API_KEY=your-api-key-here
BASIC_BASE_URL=https://api.openai.com/v1
BASIC_MODEL=gpt-3.5-turbo

# ============================================
# REASONING LLM (Optional)
# Used for complex reasoning tasks
# ============================================
REASONING_API_KEY=your-api-key-here
REASONING_BASE_URL=https://api.deepseek.com/v1
REASONING_MODEL=deepseek-r1

# ============================================
# VISION-LANGUAGE LLM (Optional)
# Used for tasks involving images
# ============================================
VL_API_KEY=your-api-key-here
VL_BASE_URL=https://api.openai.com/v1
VL_MODEL=gpt-4o

# ============================================
# AZURE OPENAI (Optional Alternative)
# Uncomment and configure if using Azure
# ============================================
# AZURE_API_BASE=https://your-resource.openai.azure.com
# AZURE_API_KEY=your-azure-key
# AZURE_API_VERSION=2024-02-15-preview
# BASIC_AZURE_DEPLOYMENT=your-gpt4-deployment-name
# VL_AZURE_DEPLOYMENT=your-vision-deployment-name
# REASONING_AZURE_DEPLOYMENT=your-reasoning-deployment-name

# ============================================
# BROWSER CONFIGURATION (Optional)
# ============================================
# CHROME_INSTANCE_PATH=/path/to/chrome
# CHROME_HEADLESS=True
# CHROME_PROXY_SERVER=http://proxy:port
# CHROME_PROXY_USERNAME=username
# CHROME_PROXY_PASSWORD=password
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sh text eol=lf
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,10 @@ cython_debug/

# PyPI configuration file
.pypirc

# IDE-specific directories
.claude/

# Internal planning documents
COMMIT_PLAN.md
NEXT_STEPS.md
Loading