Name | aeiva JSON |
Version |
0.8.2.6
JSON |
| download |
home_page | None |
Summary | aeiva is a general AI agent framework |
upload_time | 2024-12-16 08:20:44 |
maintainer | None |
docs_url | None |
author | Bang Liu |
requires_python | <3.14,>=3.10 |
license | Apache License Version 2.0 |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<p align="center" width="100%">
<img src="https://i.ibb.co/P4zQHDk/aeiva-1024.png" alt="AEIVA" style="width: 50%; min-width: 300px; display: block; margin: auto; background-color: transparent;">
</p>
# AEIVA: An Evolving Intelligent Virtual Assistant
<p align="center">
<a href="README_CN.md"><img src="https://img.shields.io/badge/文档-中文版-blue.svg" alt="CN doc"></a>
<a href="README.md"><img src="https://img.shields.io/badge/document-English-blue.svg" alt="EN doc"></a>
<!-- <a href="docs/README_JA.md"><img src="https://img.shields.io/badge/ドキュメント-日本語-blue.svg" alt="JA doc"></a> -->
<!-- <a href="https://discord.gg/wCp6Q3fsAk"><img src="https://dcbadge.vercel.app/api/server/wCp6Q3fsAk?compact=true&style=flat" alt="Discord Follow"></a> -->
<a href="https://opensource.org/license/apache-2-0/"><img src="https://img.shields.io/badge/Code%20License-Apache_2.0-green.svg" alt="License: Apache 2.0"></a>
<!-- <a href="docs/ROADMAP.md"><img src="https://img.shields.io/badge/ROADMAP-路线图-blue" alt="roadmap"></a> -->
<!-- <a href="docs/resources/MetaGPT-WeChat-Personal.jpeg"><img src="https://img.shields.io/badge/WeChat-微信-blue" alt="roadmap"></a> -->
<!-- <a href="https://twitter.com/DeepWisdom2019"><img src="https://img.shields.io/twitter/follow/MetaGPT?style=social" alt="Twitter Follow"></a> -->
</p>
## Introduction
In this project, our objective is to develop a modular and flexible intelligent agent and society system, designed as a virtual assistant capable of performing diverse tasks, learning from data, environment, and interactions, and self-evolving over time. The system will leverage deep learning models, primarily transformers, while also exploring innovative models and learning methods.
Our ultimate goal is to develop a General AI Agent System capable of forming a “**genius society**” of AI agents. These agents will:
- Collaboratively address and solve societal challenges across domains.
- Function in diverse environments, from virtual simulations to real-world applications.
- Continuously evolve and improve through self-assessment and adaptation.
- Serve as versatile assistants in various roles, such as AI researchers, software engineers, game players, or digital society members.
Currently, Aeiva supports the following interaction modes:
- **Chat in terminal**: chat with an agent in the terminal interface
- **Chat with Gradio Webui**: we developed a gradio web UI interface that allows user to chat with the agent. We plan to support multimodality in the near future.
- **Chat with desktop Waifu mode**: by combining with our another project `Maid`, we can use our agent as the backend and call it through Maid desktop assistant.
⭐️ **Documentation** 👉 [aeiva documentation](https://chatsci.github.io/Aeiva/)
## Key Features
Currently, we features with the following functionalities:
- **Rich Toolkits**: I have implemented a series of different API tools and I'm keep improving the API library.
- **Open Operator**: By implementing **computer-use** related tools, aeiva is able to understand and operate user's computer and complete daily tasks. We are keep enhancing the functionality in this part. Note: use this feature with caution!
- **Memory Palace**: I have designed and implemented a layered memory palace for storaging agent memories. It is flexible and can be customized to represent and query different types of memories.
More functionalities and modules will be implemented gradually. Keep tuned! If you find any errors or bugs, feel free to report by opening an issue, thanks a lot!
## Installation
To install AEIVA, follow these steps:
### Prerequisites
* `Python 3.10` or newer
* `pip` (Python package manager)
### Option 1: Install via `pip` [recommended]
You can easily install vai pip by:
```shell
pip install aeiva
```
### Option 2: Install from Repository
1. **Clone the AEIVA Repository**
First, clone the AEIVA repository to your local machine using Git:
```bash
git clone https://github.com/chatsci/Aeiva.git
cd Aeiva
```
2. **Create a Virtual Environment (Recommended)**
It's a good practice to create a virtual environment for Python projects. This keeps dependencies required by different projects separate. Use the following command to create a virtual environment with `conda`:
```bash
conda create --name <my-env>
```
Replace `<my-env>` with the name of your environment.
To acivate your env:
```bash
conda activate <my-env>
```
For more advanced configurations or options, please check the online document of `conda`.
3. **Install Dependencies**
Install all dependencies listed in **requirements.txt**:
```bash
pip install -r requirements.txt
```
4. **Install Aeiva**
Finally, install AEIVA using the **setup.py** script:
```bash
python setup.py install
```
5. **Verify Installation**
To verify that AEIVA has been installed correctly, you can run the following command:
```bash
python -c "import aeiva; print(aeiva.__version__)"
```
## Dependencies
Our memory module utilizes different types of databases.
1. **Vector Database**: Our memory module also utilizes vector database. Please install vector database such as `milvus` (recommended), `chroma`, `qdrant`, or `weaviate`.
2. **Graph Database**: Ensure Neo4j is installed and the `NEO4J_HOME` environment variable is set.
3. **Relational Database**: We use `sqlite` (recommended) or `postgre sql`.
## Commands
After installing Neo4j and setting the environment variable, follow these steps to run different aeiva chat commands.
### 🪄⭐Aeiva Chat in Terminal Mode
Run the following command in terminal:
```bash
aeiva-chat-terminal --config configs/agent_config.yaml --verbose
```
* **Options**:
- `--config` or `-c`: Path to the configuration file (default: `configs/agent_config.yaml`).
- `--verbose` or `-v`: Enable verbose logging for detailed output.
* **Using the Interface**:
- Interact with the chatbot directly in your terminal after running the command. * View Logs:
- Logs are stored at `~/.aeiva/logs/aeiva-chat-terminal.log`.
- To monitor logs in real-time, use:
```shell
tail -f ~/.aeiva/logs/aeiva-chat-terminal.log
```
You will see your terminal is like below:
<!--![terminal_chatbot](assets/aeiva-chat-terminal-demo.png)-->
<p align="center" width="100%">
<img src="https://i.ibb.co/Y0mtmn6/aeiva-chat-terminal-demo.png" alt="Terminal Chatbot" style="width: 80%; display: block; margin: auto;">
</p>
### 🪄⭐Aeiva Chat in Gradio Mode
Run the following command in terminal:
```shell
aeiva-chat-gradio --config configs/agent_config.yaml --verbose
```
* **Options**:
- `--config` or `-c`: Path to the configuration file (default: `configs/agent_config.yaml`).
- `--verbose` or `-v`: Enable verbose logging for detailed output.
* **Access the Gradio Interface**:
- Open your web browser and navigate to http://localhost:7860.
- Alternatively, use the public URL provided in the terminal output (e.g., https://1b1f89328e57b2f2e1.gradio.live) to access the interface remotely.
* **View Logs**:
- Logs are stored at `~/.aeiva/logs/aeiva-chat-gradio.log`.
- To monitor logs in real-time, use:
```shell
tail -f ~/.aeiva/logs/aeiva-chat-gradio.log
```
By visiting the gradio interface, you will see a gradio web-ui like below:
---
<!--![gradio_chatbot](assets/aeiva-chat-gradio-demo.png)-->
<p align="center" width="100%">
<img src="https://i.ibb.co/8x82p3K/aeiva-chat-gradio-demo.png" alt="Gradio Chatbot" style="width: 80%; display: block; margin: auto;">
</p>
---
### 🪄⭐Aeiva Server
Run the following command in terminal:
```bash
aeiva-server --config configs/agent_config.yaml --host 0.0.0.0 --port 8000 --verbose
```
* **Options**:
- `--config` or `-c`: Path to the configuration file (default: configs/agent_config.yaml).
- `--host` or `-H`: Host address to run the server on (default: 0.0.0.0).
- `--port` or `-p`: Port number to run the server on (default: 8000).
- `--verbose` or `-v`: Enable verbose logging for detailed output.
* **Access the Server**:
- Open your web browser and navigate to `http://localhost:8000/docs` to access the interactive API documentation.
* **View Logs**:
- Logs are stored at `~/.aeiva/logs/aeiva-server.log`.
- To monitor logs in real-time, use:
```shell
tail -f ~/.aeiva/logs/aeiva-server.log
```
### 🪄⭐Maid Chat (Your Intelligent Assistant on Desktop!)
Run the following command in terminal to get an animated virtual assisatnt on your deskto that you can talk in voice mode or by typing:
```bash
maid-chat --config configs/agent_config.yaml --host 0.0.0.0 --port 8000 --verbose
```
* **Options**:
- `--config` or `-c`: Path to the configuration file (default: `configs/agent_config.yaml`).
- `--host` or `-H`: Host address to run the server on (default: `0.0.0.0`).
- `--port` or `-p`: Port number to run the server on (default: `8000`).
- `--verbose` or `-v`: Enable verbose logging for detailed output.
* **Download `Maid.app`**:
- Download `Maid.app` from [here](https://drive.google.com/file/d/1c7PXoMk7-QgWJ37XM_JqrLn3HQCg3HDL/view?usp=sharing).
* **Set `MAID_HOME` Environment Variable**:
- Unix/Linux/macOS:
```shell
export MAID_HOME='/path/to/my/unity.app/Contents/MacOS/Maid - Your Intelligent Waifu !'
source ~/.bashrc # or source ~/.zshrc
```
- Windows (Command Prompt):
```shell
set MAID_HOME=C:\path\to\my\unity\app
```
- Windows (PowerShell):
```shell
$env:MAID_HOME = "C:\path\to\my\unity\app"
```
Replace `/path/to/my/unity/app` or `C:\path\to\my\unity\app` with the actual path to your Unity application.
* **Using the Interface**:
- Interact with the server through the Maid.app Unity application after running the command.
* **View Logs**:
- Logs are stored at `~/.aeiva/logs/maid-chat.log`.
- To monitor logs in real-time, use:
```shell
tail -f ~/.aeiva/logs/maid-chat.log
```
* **Troubleshooting:**
- **Permission Denied Error When Starting Unity Application:**
If you encounter an error like:
```
Error: Failed to start Unity application: [Errno 13] Permission denied: '/path/to/my/unity/app'
```
**Solution:**
- **macOS Users:**
1. Open **System Preferences**.
2. Navigate to **Security & Privacy**.
3. Click on the **Privacy** tab.
4. Select **Accessibility** from the sidebar.
5. Click the **lock icon** to make changes and enter your password.
6. Click the **"+"** button and add your terminal application (e.g., Terminal, iTerm).
7. Ensure that your terminal application is checked, granting it the necessary permissions to run the Unity application.
- **Windows Users:**
1. Right-click on the Unity application executable.
2. Select **Properties**.
3. Go to the **Compatibility** tab.
4. Check **Run this program as an administrator**.
5. Click **Apply**, then **OK**.
6. Try running the command again.
*Ensure that the `MAID_HOME` environment variable points to the correct path of your Unity application.*
**Demo of Maid-chat**:
<!--[![Maid Chat](assets/Maid-screenshot.png)](https://www.youtube.com/watch?v=ITk1aXSfWAg)-->
<p align="center" width="100%">
<a href="https://www.youtube.com/watch?v=ITk1aXSfWAg">
<img src="https://i.ibb.co/q97nLD3/Maid-screenshot.png" alt="Maid Chat" style="width: 80%; display: block; margin: auto;">
</a>
</p>
## Citation
To cite [Aeiva](https://github.com/chatsci/Aeiva) in publications, please use the following BibTeX entries.
```bibtex
@misc{bang2024aeiva,
title={Aeiva: An Evolving Intelligent Virtual Assistant},
author={Bang Liu},
year={2024},
url={https://github.com/chatsci/Aeiva}
}
```
## Contact
![contact](https://i.ibb.co/wwpPL23/contact.png)
Raw data
{
"_id": null,
"home_page": null,
"name": "aeiva",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.14,>=3.10",
"maintainer_email": null,
"keywords": null,
"author": "Bang Liu",
"author_email": "chatsci.ai@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/e5/43/e6c87a80f56e8516a02698396b7978cad9c00309c6e1c39585815b005b14/aeiva-0.8.2.6.tar.gz",
"platform": null,
"description": "<p align=\"center\" width=\"100%\">\n<img src=\"https://i.ibb.co/P4zQHDk/aeiva-1024.png\" alt=\"AEIVA\" style=\"width: 50%; min-width: 300px; display: block; margin: auto; background-color: transparent;\">\n</p>\n\n# AEIVA: An Evolving Intelligent Virtual Assistant\n\n<p align=\"center\">\n<a href=\"README_CN.md\"><img src=\"https://img.shields.io/badge/\u6587\u6863-\u4e2d\u6587\u7248-blue.svg\" alt=\"CN doc\"></a>\n<a href=\"README.md\"><img src=\"https://img.shields.io/badge/document-English-blue.svg\" alt=\"EN doc\"></a>\n<!-- <a href=\"docs/README_JA.md\"><img src=\"https://img.shields.io/badge/\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8-\u65e5\u672c\u8a9e-blue.svg\" alt=\"JA doc\"></a> -->\n<!-- <a href=\"https://discord.gg/wCp6Q3fsAk\"><img src=\"https://dcbadge.vercel.app/api/server/wCp6Q3fsAk?compact=true&style=flat\" alt=\"Discord Follow\"></a> -->\n<a href=\"https://opensource.org/license/apache-2-0/\"><img src=\"https://img.shields.io/badge/Code%20License-Apache_2.0-green.svg\" alt=\"License: Apache 2.0\"></a>\n<!-- <a href=\"docs/ROADMAP.md\"><img src=\"https://img.shields.io/badge/ROADMAP-\u8def\u7ebf\u56fe-blue\" alt=\"roadmap\"></a> -->\n<!-- <a href=\"docs/resources/MetaGPT-WeChat-Personal.jpeg\"><img src=\"https://img.shields.io/badge/WeChat-\u5fae\u4fe1-blue\" alt=\"roadmap\"></a> -->\n<!-- <a href=\"https://twitter.com/DeepWisdom2019\"><img src=\"https://img.shields.io/twitter/follow/MetaGPT?style=social\" alt=\"Twitter Follow\"></a> -->\n</p>\n\n\n## Introduction\n\nIn this project, our objective is to develop a modular and flexible intelligent agent and society system, designed as a virtual assistant capable of performing diverse tasks, learning from data, environment, and interactions, and self-evolving over time. The system will leverage deep learning models, primarily transformers, while also exploring innovative models and learning methods. \n\nOur ultimate goal is to develop a General AI Agent System capable of forming a \u201c**genius society**\u201d of AI agents. These agents will:\n\n- Collaboratively address and solve societal challenges across domains.\n- Function in diverse environments, from virtual simulations to real-world applications.\n- Continuously evolve and improve through self-assessment and adaptation.\n- Serve as versatile assistants in various roles, such as AI researchers, software engineers, game players, or digital society members.\n\nCurrently, Aeiva supports the following interaction modes:\n\n- **Chat in terminal**: chat with an agent in the terminal interface\n- **Chat with Gradio Webui**: we developed a gradio web UI interface that allows user to chat with the agent. We plan to support multimodality in the near future.\n- **Chat with desktop Waifu mode**: by combining with our another project `Maid`, we can use our agent as the backend and call it through Maid desktop assistant. \n\n\u2b50\ufe0f **Documentation** \ud83d\udc49 [aeiva documentation](https://chatsci.github.io/Aeiva/)\n\n## Key Features\n\nCurrently, we features with the following functionalities:\n\n- **Rich Toolkits**: I have implemented a series of different API tools and I'm keep improving the API library.\n- **Open Operator**: By implementing **computer-use** related tools, aeiva is able to understand and operate user's computer and complete daily tasks. We are keep enhancing the functionality in this part. Note: use this feature with caution!\n- **Memory Palace**: I have designed and implemented a layered memory palace for storaging agent memories. It is flexible and can be customized to represent and query different types of memories.\n\nMore functionalities and modules will be implemented gradually. Keep tuned! If you find any errors or bugs, feel free to report by opening an issue, thanks a lot!\n\n## Installation\nTo install AEIVA, follow these steps:\n### Prerequisites\n* `Python 3.10` or newer\n* `pip` (Python package manager)\n\n### Option 1: Install via `pip` [recommended]\nYou can easily install vai pip by:\n\n```shell\npip install aeiva\n```\n\n### Option 2: Install from Repository\n1. **Clone the AEIVA Repository**\n\n\tFirst, clone the AEIVA repository to your local machine using Git:\n\n\t```bash\n\tgit clone https://github.com/chatsci/Aeiva.git\n\tcd Aeiva\n\t```\n\n2. **Create a Virtual Environment (Recommended)**\nIt's a good practice to create a virtual environment for Python projects. This keeps dependencies required by different projects separate. Use the following command to create a virtual environment with `conda`:\n\n\t```bash\n\tconda create --name <my-env>\n\t```\n\t\n\tReplace `<my-env>` with the name of your environment.\n\t\n\tTo acivate your env:\n\t\n\t```bash\n\tconda activate <my-env>\n\t```\n\t\n\tFor more advanced configurations or options, please check the online document of `conda`.\n\t\n3. **Install Dependencies**\n\tInstall all dependencies listed in **requirements.txt**:\n\t\n\t```bash\n\tpip install -r requirements.txt\n\t```\n\n4. **Install Aeiva**\n\tFinally, install AEIVA using the **setup.py** script:\n\t\n\t```bash\n\tpython setup.py install\n\t```\n\t\n5. **Verify Installation**\n\tTo verify that AEIVA has been installed correctly, you can run the following command:\n\t\n\t```bash\n\tpython -c \"import aeiva; print(aeiva.__version__)\"\n\t```\n\n\n## Dependencies\n\nOur memory module utilizes different types of databases.\n\n1. **Vector Database**: Our memory module also utilizes vector database. Please install vector database such as `milvus` (recommended), `chroma`, `qdrant`, or `weaviate`.\n\n2. **Graph Database**: Ensure Neo4j is installed and the `NEO4J_HOME` environment variable is set.\n\n3. **Relational Database**: We use `sqlite` (recommended) or `postgre sql`.\n\n## Commands\n\nAfter installing Neo4j and setting the environment variable, follow these steps to run different aeiva chat commands.\n\n\n### \ud83e\ude84\u2b50Aeiva Chat in Terminal Mode\nRun the following command in terminal:\n\n```bash\naeiva-chat-terminal --config configs/agent_config.yaml --verbose\n```\n \n* **Options**:\n\t- `--config` or `-c`: Path to the configuration file (default: `configs/agent_config.yaml`).\n\t- `--verbose` or `-v`: Enable verbose logging for detailed output.\n\n* **Using the Interface**:\n\t-\tInteract with the chatbot directly in your terminal after running the command.\t*\tView Logs:\n\t-\tLogs are stored at `~/.aeiva/logs/aeiva-chat-terminal.log`.\n\t-\tTo monitor logs in real-time, use:\n\t\t```shell\n\t\ttail -f ~/.aeiva/logs/aeiva-chat-terminal.log\n\t\t```\n\nYou will see your terminal is like below:\n\n<!--![terminal_chatbot](assets/aeiva-chat-terminal-demo.png)-->\n\n<p align=\"center\" width=\"100%\">\n <img src=\"https://i.ibb.co/Y0mtmn6/aeiva-chat-terminal-demo.png\" alt=\"Terminal Chatbot\" style=\"width: 80%; display: block; margin: auto;\">\n</p>\n\n\n### \ud83e\ude84\u2b50Aeiva Chat in Gradio Mode\nRun the following command in terminal:\n\n```shell\naeiva-chat-gradio --config configs/agent_config.yaml --verbose\n```\n \n* **Options**:\n\t- `--config` or `-c`: Path to the configuration file (default: `configs/agent_config.yaml`).\n\t- `--verbose` or `-v`: Enable verbose logging for detailed output.\n\n* **Access the Gradio Interface**:\n\t-\tOpen your web browser and navigate to http://localhost:7860.\n\t-\tAlternatively, use the public URL provided in the terminal output (e.g., https://1b1f89328e57b2f2e1.gradio.live) to access the interface remotely.\n*\t**View Logs**:\n\t-\tLogs are stored at `~/.aeiva/logs/aeiva-chat-gradio.log`.\n\t-\tTo monitor logs in real-time, use:\n\t\t```shell\n\t\ttail -f ~/.aeiva/logs/aeiva-chat-gradio.log\n\t\t```\n\nBy visiting the gradio interface, you will see a gradio web-ui like below:\n\n---\n<!--![gradio_chatbot](assets/aeiva-chat-gradio-demo.png)-->\n\n<p align=\"center\" width=\"100%\">\n <img src=\"https://i.ibb.co/8x82p3K/aeiva-chat-gradio-demo.png\" alt=\"Gradio Chatbot\" style=\"width: 80%; display: block; margin: auto;\">\n</p>\n\n---\n\n\n### \ud83e\ude84\u2b50Aeiva Server\n\nRun the following command in terminal:\n\n```bash\naeiva-server --config configs/agent_config.yaml --host 0.0.0.0 --port 8000 --verbose\n```\n\n*\t**Options**:\n\t-\t`--config` or `-c`: Path to the configuration file (default: configs/agent_config.yaml).\n\t-\t`--host` or `-H`: Host address to run the server on (default: 0.0.0.0).\n\t-\t`--port` or `-p`: Port number to run the server on (default: 8000).\n\t-\t`--verbose` or `-v`: Enable verbose logging for detailed output.\n*\t**Access the Server**:\n\t-\tOpen your web browser and navigate to `http://localhost:8000/docs` to access the interactive API documentation.\n*\t**View Logs**:\n\t-\tLogs are stored at `~/.aeiva/logs/aeiva-server.log`.\n\t-\tTo monitor logs in real-time, use:\n\t\t```shell\n\t\t tail -f ~/.aeiva/logs/aeiva-server.log\n\t\t```\n\n### \ud83e\ude84\u2b50Maid Chat (Your Intelligent Assistant on Desktop!)\n\nRun the following command in terminal to get an animated virtual assisatnt on your deskto that you can talk in voice mode or by typing:\n\n```bash\nmaid-chat --config configs/agent_config.yaml --host 0.0.0.0 --port 8000 --verbose\n```\n\n*\t**Options**:\n\t-\t`--config` or `-c`: Path to the configuration file (default: `configs/agent_config.yaml`).\n\t-\t`--host` or `-H`: Host address to run the server on (default: `0.0.0.0`).\n\t-\t`--port` or `-p`: Port number to run the server on (default: `8000`).\n\t-\t`--verbose` or `-v`: Enable verbose logging for detailed output.\n*\t**Download `Maid.app`**:\n\t-\tDownload `Maid.app` from [here](https://drive.google.com/file/d/1c7PXoMk7-QgWJ37XM_JqrLn3HQCg3HDL/view?usp=sharing).\n*\t**Set `MAID_HOME` Environment Variable**:\n\t-\tUnix/Linux/macOS:\n\t\t```shell\n\t\texport MAID_HOME='/path/to/my/unity.app/Contents/MacOS/Maid - Your Intelligent Waifu !'\n\t\tsource ~/.bashrc # or source ~/.zshrc\n\t\t```\n\t-\tWindows (Command Prompt):\n\t\t```shell\n\t\tset MAID_HOME=C:\\path\\to\\my\\unity\\app\n\t\t```\n\t-\tWindows (PowerShell):\n\t\t```shell\n\t\t$env:MAID_HOME = \"C:\\path\\to\\my\\unity\\app\"\n\t\t```\n\t\tReplace `/path/to/my/unity/app` or `C:\\path\\to\\my\\unity\\app` with the actual path to your Unity application.\n\n*\t**Using the Interface**:\n\t-\tInteract with the server through the Maid.app Unity application after running the command.\n*\t**View Logs**:\n\t-\tLogs are stored at `~/.aeiva/logs/maid-chat.log`.\n\t-\tTo monitor logs in real-time, use:\n\t ```shell\n\t tail -f ~/.aeiva/logs/maid-chat.log\n\t ```\n* **Troubleshooting:**\n - **Permission Denied Error When Starting Unity Application:**\n If you encounter an error like:\n ```\n Error: Failed to start Unity application: [Errno 13] Permission denied: '/path/to/my/unity/app'\n ```\n **Solution:**\n - **macOS Users:**\n 1. Open **System Preferences**.\n 2. Navigate to **Security & Privacy**.\n 3. Click on the **Privacy** tab.\n 4. Select **Accessibility** from the sidebar.\n 5. Click the **lock icon** to make changes and enter your password.\n 6. Click the **\"+\"** button and add your terminal application (e.g., Terminal, iTerm).\n 7. Ensure that your terminal application is checked, granting it the necessary permissions to run the Unity application.\n \n - **Windows Users:**\n 1. Right-click on the Unity application executable.\n 2. Select **Properties**.\n 3. Go to the **Compatibility** tab.\n 4. Check **Run this program as an administrator**.\n 5. Click **Apply**, then **OK**.\n 6. Try running the command again.\n \n *Ensure that the `MAID_HOME` environment variable points to the correct path of your Unity application.*\n\n**Demo of Maid-chat**:\n<!--[![Maid Chat](assets/Maid-screenshot.png)](https://www.youtube.com/watch?v=ITk1aXSfWAg)-->\n\n<p align=\"center\" width=\"100%\">\n <a href=\"https://www.youtube.com/watch?v=ITk1aXSfWAg\">\n <img src=\"https://i.ibb.co/q97nLD3/Maid-screenshot.png\" alt=\"Maid Chat\" style=\"width: 80%; display: block; margin: auto;\">\n </a>\n</p>\n\n\n## Citation\n\nTo cite [Aeiva](https://github.com/chatsci/Aeiva) in publications, please use the following BibTeX entries.\n\n```bibtex\n@misc{bang2024aeiva,\n title={Aeiva: An Evolving Intelligent Virtual Assistant}, \n author={Bang Liu},\n year={2024},\n url={https://github.com/chatsci/Aeiva}\n}\n```\n\n\n## Contact\n\n![contact](https://i.ibb.co/wwpPL23/contact.png)\n\n\n\n\n",
"bugtrack_url": null,
"license": "Apache License Version 2.0",
"summary": "aeiva is a general AI agent framework",
"version": "0.8.2.6",
"project_urls": null,
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0d2df981caa48685d3c56a95a90704346431d68856ce067b53ac079d76bf1877",
"md5": "442b1d1cc3466fa74da836d06739292c",
"sha256": "8d330c3963a97bbe109d3c1ffefe5eb99d7215b5301c2e1e3399f96baaa18a94"
},
"downloads": -1,
"filename": "aeiva-0.8.2.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "442b1d1cc3466fa74da836d06739292c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.14,>=3.10",
"size": 606858,
"upload_time": "2024-12-16T08:20:40",
"upload_time_iso_8601": "2024-12-16T08:20:40.492896Z",
"url": "https://files.pythonhosted.org/packages/0d/2d/f981caa48685d3c56a95a90704346431d68856ce067b53ac079d76bf1877/aeiva-0.8.2.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e543e6c87a80f56e8516a02698396b7978cad9c00309c6e1c39585815b005b14",
"md5": "0bb18cba68467a1b3404cc4e4f40f128",
"sha256": "ac9efdb488deed81eccf63841f53b8d09bceea2bccc9a1696d8d55c0a7cbad6d"
},
"downloads": -1,
"filename": "aeiva-0.8.2.6.tar.gz",
"has_sig": false,
"md5_digest": "0bb18cba68467a1b3404cc4e4f40f128",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.14,>=3.10",
"size": 362636,
"upload_time": "2024-12-16T08:20:44",
"upload_time_iso_8601": "2024-12-16T08:20:44.602289Z",
"url": "https://files.pythonhosted.org/packages/e5/43/e6c87a80f56e8516a02698396b7978cad9c00309c6e1c39585815b005b14/aeiva-0.8.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-16 08:20:44",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "aeiva"
}