{"id":27734316,"url":"https://github.com/evannotfound/lumon","last_synced_at":"2026-02-14T06:32:47.365Z","repository":{"id":278459310,"uuid":"935567654","full_name":"EvanNotFound/lumon","owner":"EvanNotFound","description":"Lumon AI","archived":false,"fork":false,"pushed_at":"2025-02-27T03:12:01.000Z","size":271,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-28T13:05:45.993Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EvanNotFound.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-19T16:51:08.000Z","updated_at":"2025-02-27T03:12:04.000Z","dependencies_parsed_at":"2025-02-19T22:29:10.818Z","dependency_job_id":"8dd98b19-80aa-4784-bff4-7b9456b246ea","html_url":"https://github.com/EvanNotFound/lumon","commit_stats":null,"previous_names":["evannotfound/lumon"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EvanNotFound/lumon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanNotFound%2Flumon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanNotFound%2Flumon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanNotFound%2Flumon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanNotFound%2Flumon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EvanNotFound","download_url":"https://codeload.github.com/EvanNotFound/lumon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanNotFound%2Flumon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29438775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T05:24:35.651Z","status":"ssl_error","status_checked_at":"2026-02-14T05:24:34.830Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-28T13:05:38.739Z","updated_at":"2026-02-14T06:32:47.361Z","avatar_url":"https://github.com/EvanNotFound.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lumon AI\n\nLumon is a personal AI assistant built with Python that provides a conversational interface with memory capabilities, task management, and web research functionality.\n\n## Features\n\n- **Conversational Interface**: Interact with Lumon through a natural language interface in your terminal\n- **Memory Management**: Lumon remembers your preferences, identity, and past interactions\n- **Task Management**: Create, track, and manage tasks, deadlines, and appointments\n- **Web Research**: Search the web for information directly through the assistant\n- **Rich Text Output**: Enhanced UI with markdown rendering in production mode\n- **Orchestration System**: Uses a conductor-agent architecture to delegate specialized tasks\n\n## Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/yourusername/lumon.git\n   cd lumon\n   ```\n\n2. Create and activate a virtual environment:\n   ```bash\n   python -m venv .venv\n   source .venv/bin/activate  # On Windows: .venv\\Scripts\\activate\n   ```\n\n3. Install dependencies:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. Create a `.env` file with your API keys:\n   ```\n   OPENAI_API_KEY=your_openai_api_key\n   OPENROUTER_API_KEY=your_openrouter_api_key\n   GEMINI_API_KEY=your_gemini_api_key\n   ANONYMIZED_TELEMETRY=false\n\n   CHROME_INSTANCE_PATH=your_chrome_instance_path (eg /Applications/Chromium.app/Contents/MacOS/Chromium)\n   ```\n\n## Usage\n\nRun Lumon in standard mode:\n```bash\npython main.py\n```\n\nRun Lumon in production mode with enhanced UI:\n```bash\npython main.py --prod\n```\nor\n```bash\npython main.py -p\n```\n\n## Project Structure\n\n- `main.py`: Entry point for the application\n- `chat/`: Contains the core chat functionality\n  - `orchestra.py`: Orchestrates the chat system and agent interactions\n  - `agents/`: Specialized agents for different tasks\n    - `web_research.py`: Agent for web search functionality\n    - `memory_management.py`: Agent for managing user memories\n    - `task_management.py`: Agent for managing tasks and appointments\n  - `tools/`: Tools used by the agents\n    - `memory_tools.py`: Tools for memory operations\n    - `task_tools.py`: Tools for task management\n    - `date_tool.py`: Tools for date handling\n    - `calculation.py`: Tools for calculations\n    - `weather_tool.py`: Tools for weather information\n- `config/`: Configuration files\n  - `prompts.yaml`: System prompts for the AI assistant\n- `utils/`: Utility functions and helpers\n- `data/`: Storage for application data\n\n## Dependencies\n\nLumon relies on several key libraries:\n- `mainframe-orchestra`: For agent orchestration\n- `langchain`: For language model interactions\n- `openai`: For GPT model access\n- `rich`: For enhanced terminal output\n- `click`: For command-line interface\n- `pandas`: For data manipulation\n- `tiktoken`: For token counting\n\n## License\n\nThis project is licensed under the terms included in the LICENSE file.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevannotfound%2Flumon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevannotfound%2Flumon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevannotfound%2Flumon/lists"}