# AI Parrot: Python package for creating Chatbots
This is an open-source Python package for creating Chatbots based on Langchain and Navigator.
This README provides instructions for installation, development, testing, and releasing Parrot.
## Installation
**Creating a virtual environment:**
This is recommended for development and isolation from system-wide libraries.
Run the following command in your terminal:
Debian-based systems installation:
```
sudo apt install gcc python3.11-venv python3.11-full python3.11-dev libmemcached-dev zlib1g-dev build-essential libffi-dev unixodbc unixodbc-dev libsqliteodbc libev4 libev-dev
```
For Qdrant installation:
```
docker pull qdrant/qdrant
docker run -d -p 6333:6333 -p 6334:6334 --name qdrant -v $(pwd)/qdrant_storage:/qdrant/storage:z qdrant/qdrant
```
For VertexAI, creates a folder on "env" called "google" and copy the JSON credentials file into it.
```bash
make venv
```
This will create a virtual environment named `.venv`. To activate it, run:
```bash
source .venv/bin/activate # Linux/macOS
```
Once activated, install Parrot within the virtual environment:
```bash
make install
```
The output will remind you to activate the virtual environment before development.
**Optional** (for developers):
```bash
pip install -e .
```
## Start http server
```bash
python run.py
```
## Development Setup
This section explains how to set up your development environment:
1. **Install development requirements:**
```bash
make setup
```
This installs development dependencies like linters and test runners mentioned in the `docs/requirements-dev.txt` file.
2. **Install Parrot in editable mode:**
This allows you to make changes to the code and test them without reinstalling:
```bash
make dev
```
This uses `flit` to install Parrot in editable mode.
### Usage (Replace with actual usage instructions)
*Once you have set up your development environment, you can start using Parrot.*
#### Test with Code ChatBOT
* Set environment variables for:
[google]
GOOGLE_API_KEY=apikey
GOOGLE_CREDENTIALS_FILE=.../credentials.json
VERTEX_PROJECT_ID=vertex-project
VERTEX_REGION=region
* Run the chatbot:
```bash
python examples/test_agent.py
```
### Testing
To run the test suite:
```bash
make test
```
This will run tests using `coverage` to report on code coverage.
### Code Formatting
To format the code with black:
```bash
make format
```
### Linting
To lint the code for style and potential errors:
```bash
make lint
```
This uses `pylint` and `black` to check for issues.
### Releasing a New Version
This section outlines the steps for releasing a new version of Parrot:
1. **Ensure everything is clean and tested:**
```bash
make release
```
This runs `lint`, `test`, and `clean` tasks before proceeding.
2. **Publish the package:**
```bash
make release
```
This uses `flit` to publish the package to a repository like PyPI. You'll need to have publishing credentials configured for `flit`.
### Cleaning Up
To remove the virtual environment:
```bash
make distclean
```
### Contributing
We welcome contributions to Parrot! Please refer to the CONTRIBUTING.md file for guidelines on how to contribute.
Raw data
{
"_id": null,
"home_page": "https://github.com/phenobarbital/ai-parrot",
"name": "ai-parrot",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9.20",
"maintainer_email": null,
"keywords": "asyncio, asyncpg, aioredis, aiomcache, langchain, chatbot, agents",
"author": "Jesus Lara",
"author_email": "jesuslara@phenobarbital.info",
"download_url": null,
"platform": "POSIX",
"description": "# AI Parrot: Python package for creating Chatbots\nThis is an open-source Python package for creating Chatbots based on Langchain and Navigator.\nThis README provides instructions for installation, development, testing, and releasing Parrot.\n\n## Installation\n\n**Creating a virtual environment:**\n\nThis is recommended for development and isolation from system-wide libraries.\nRun the following command in your terminal:\n\nDebian-based systems installation:\n ```\n sudo apt install gcc python3.11-venv python3.11-full python3.11-dev libmemcached-dev zlib1g-dev build-essential libffi-dev unixodbc unixodbc-dev libsqliteodbc libev4 libev-dev\n ```\n\n For Qdrant installation:\n ```\n docker pull qdrant/qdrant\n docker run -d -p 6333:6333 -p 6334:6334 --name qdrant -v $(pwd)/qdrant_storage:/qdrant/storage:z qdrant/qdrant\n ```\n\nFor VertexAI, creates a folder on \"env\" called \"google\" and copy the JSON credentials file into it.\n\n ```bash\n make venv\n ```\n\n This will create a virtual environment named `.venv`. To activate it, run:\n\n ```bash\n source .venv/bin/activate # Linux/macOS\n ```\n\n Once activated, install Parrot within the virtual environment:\n\n ```bash\n make install\n ```\n The output will remind you to activate the virtual environment before development.\n\n **Optional** (for developers):\n ```bash\n pip install -e .\n ```\n\n## Start http server\n```bash\npython run.py\n```\n\n## Development Setup\n\nThis section explains how to set up your development environment:\n\n1. **Install development requirements:**\n\n ```bash\n make setup\n ```\n\n This installs development dependencies like linters and test runners mentioned in the `docs/requirements-dev.txt` file.\n\n2. **Install Parrot in editable mode:**\n\n This allows you to make changes to the code and test them without reinstalling:\n\n ```bash\n make dev\n ```\n\n This uses `flit` to install Parrot in editable mode.\n\n\n### Usage (Replace with actual usage instructions)\n\n*Once you have set up your development environment, you can start using Parrot.*\n\n#### Test with Code ChatBOT\n* Set environment variables for:\n [google]\n GOOGLE_API_KEY=apikey\n GOOGLE_CREDENTIALS_FILE=.../credentials.json\n VERTEX_PROJECT_ID=vertex-project\n VERTEX_REGION=region\n\n* Run the chatbot:\n ```bash\n python examples/test_agent.py\n ```\n\n### Testing\n\nTo run the test suite:\n\n```bash\nmake test\n```\n\nThis will run tests using `coverage` to report on code coverage.\n\n\n### Code Formatting\n\nTo format the code with black:\n\n```bash\nmake format\n```\n\n\n### Linting\n\nTo lint the code for style and potential errors:\n\n```bash\nmake lint\n```\n\nThis uses `pylint` and `black` to check for issues.\n\n\n### Releasing a New Version\n\nThis section outlines the steps for releasing a new version of Parrot:\n\n1. **Ensure everything is clean and tested:**\n\n ```bash\n make release\n ```\n\n This runs `lint`, `test`, and `clean` tasks before proceeding.\n\n2. **Publish the package:**\n\n ```bash\n make release\n ```\n\n This uses `flit` to publish the package to a repository like PyPI. You'll need to have publishing credentials configured for `flit`.\n\n\n### Cleaning Up\n\nTo remove the virtual environment:\n\n```bash\nmake distclean\n```\n\n\n### Contributing\n\nWe welcome contributions to Parrot! Please refer to the CONTRIBUTING.md file for guidelines on how to contribute.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Live Chatbots based on Langchain chatbots and Agents Integrated into Navigator Framework or used into any aiohttp applications.",
"version": "0.4.8",
"project_urls": {
"Documentation": "https://github.com/phenobarbital/ai-parrot/",
"Funding": "https://paypal.me/phenobarbital",
"Homepage": "https://github.com/phenobarbital/ai-parrot",
"Say Thanks!": "https://saythanks.io/to/phenobarbital",
"Source": "https://github.com/phenobarbital/ai-parrot",
"Tracker": "https://github.com/phenobarbital/ai-parrot/issues"
},
"split_keywords": [
"asyncio",
" asyncpg",
" aioredis",
" aiomcache",
" langchain",
" chatbot",
" agents"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "128e19705725c78d9808f92c98b5904ff21e9f29eafe167664164f5dbc2d680b",
"md5": "b89dc1e6b2b30526c3de7972ae1caeac",
"sha256": "21964642c36a0367b6b0b5a1459a8e129ae20532d4c85eb4c2bf7b8cad277ff3"
},
"downloads": -1,
"filename": "ai_parrot-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b89dc1e6b2b30526c3de7972ae1caeac",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9.20",
"size": 705137,
"upload_time": "2024-11-08T01:12:16",
"upload_time_iso_8601": "2024-11-08T01:12:16.854743Z",
"url": "https://files.pythonhosted.org/packages/12/8e/19705725c78d9808f92c98b5904ff21e9f29eafe167664164f5dbc2d680b/ai_parrot-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "741e29355c0b9da6d15ffb1a53a572f2790daff7c6a839419cf26ef7cd832fea",
"md5": "461de05285c0996c028ac4d00871aaba",
"sha256": "ead74133910033414be209f889f8cdb9e09ee988fbb0a2f26644848dd71ffad6"
},
"downloads": -1,
"filename": "ai_parrot-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "461de05285c0996c028ac4d00871aaba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9.20",
"size": 745520,
"upload_time": "2024-11-08T01:12:19",
"upload_time_iso_8601": "2024-11-08T01:12:19.557950Z",
"url": "https://files.pythonhosted.org/packages/74/1e/29355c0b9da6d15ffb1a53a572f2790daff7c6a839419cf26ef7cd832fea/ai_parrot-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0274cc2d77ed8b9ef4d49a75c9767d0baee571e85d476e03df4f917ba1771eb5",
"md5": "87e28b13bfeadb3b95b5132605e60303",
"sha256": "533bef6b369cb3fa3d242a5583b127682c2cfbd6bd77234d75504bb99749ff41"
},
"downloads": -1,
"filename": "ai_parrot-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "87e28b13bfeadb3b95b5132605e60303",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9.20",
"size": 811723,
"upload_time": "2024-11-08T01:12:20",
"upload_time_iso_8601": "2024-11-08T01:12:20.905784Z",
"url": "https://files.pythonhosted.org/packages/02/74/cc2d77ed8b9ef4d49a75c9767d0baee571e85d476e03df4f917ba1771eb5/ai_parrot-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7abdc8789c91c0a6be25681118fc63a128220d7427ce922d6733c64c52de3989",
"md5": "63091f637e18cadb3c1bedd6b6cf3ac3",
"sha256": "2efaa3b359779538f3c43ffaa326d80fcde62fdffa1cbb26915afe72d43ce1f3"
},
"downloads": -1,
"filename": "ai_parrot-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "63091f637e18cadb3c1bedd6b6cf3ac3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9.20",
"size": 709845,
"upload_time": "2024-11-08T01:12:22",
"upload_time_iso_8601": "2024-11-08T01:12:22.208161Z",
"url": "https://files.pythonhosted.org/packages/7a/bd/c8789c91c0a6be25681118fc63a128220d7427ce922d6733c64c52de3989/ai_parrot-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-08 01:12:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "phenobarbital",
"github_project": "ai-parrot",
"github_not_found": true,
"lcname": "ai-parrot"
}