gianna


Namegianna JSON
Version 0.1.4 PyPI version JSON
download
home_pagehttps://github.com/marvinbraga/gianna
SummaryGenerative Intelligent Artificial Neural Network Assistant
upload_time2024-05-08 13:39:08
maintainerNone
docs_urlNone
authorMarcus Braga
requires_python<=3.13,>=3.11
licenseApache License 2.0
keywords voice-assistant ai crewai langchain openai google nvidia groq ollama
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Gianna: Generative Intelligent Artificial Neural Network Assistant

Gianna is a voice assistant that utilizes CrewAI and Langchain to perform complex tasks. It provides an easy way to create chain instances for working with a simple prompt, a string parser, and various LLM models such as OpenAI, Google, NVIDIA, Groq, and Ollama.

## Installation

### Prerequisites

- Python 3.10 or higher
- Poetry (Python package manager)

```shell
sudo apt update -y 
```

```shell
sudo apt install --no-install-recommends -y \
   build-essential \
   libpq-dev \
   libgirepository1.0-dev \
   libcairo2-dev pkg-config python3-dev \
   python3-pyaudio portaudio19-dev \
   libportaudio2
```

```shell
sudo apt update -y && sudo apt upgrade -y
```

### Clone

To get started with Gianna, you'll need to have Poetry installed. Poetry is a dependency management and packaging tool for Python projects. If you don't have Poetry installed, you can follow the installation instructions from the [official Poetry documentation](https://python-poetry.org/docs/#installation).

Once you have Poetry installed, follow these steps to set up Gianna:

1. Clone the Gianna repository:
   ```
   git clone https://github.com/marvinbraga/gianna.git
   ```

2. Navigate to the project directory:
   ```
   cd gianna
   ```

3. Install the project dependencies using Poetry:
   ```
   poetry install
   ```

4. Activate the virtual environment created by Poetry:
   ```
   poetry shell
   ```

5. Run Gianna:
   ```
   python main.py
   ```

## More Info

- [**LLMs factory** - assistants/models/readme.md](gianna/assistants/models/readme.md)
- [**Recorders** - assistants/audio/recorders/readme.md](gianna/assistants/audio/recorders/readme.md)
- [**SpeechToText** - assistants/audio/stt/readme.md](gianna/assistants/audio/stt/readme.md)
- [**TextToSpeech** - assistants/audio/tts/readme.md](gianna/assistants/audio/tts/readme.md)
- [**Commands** - assistants/commands/readme.md](gianna/assistants/commands/readme.md)

## Contributing

We welcome contributions from the community to make Gianna even better! If you'd like to contribute to the project, please follow these steps:

1. Fork the Gianna repository on GitHub.

2. Create a new branch for your feature or bug fix:
   ```
   git checkout -b feature/your-feature-name
   ```

3. Make your changes and commit them with descriptive commit messages.

4. Push your changes to your forked repository:
   ```
   git push origin feature/your-feature-name
   ```

5. Open a pull request on the main Gianna repository, describing your changes and why they should be merged.

We appreciate your contributions and will review your pull request as soon as possible. Together, let's make Gianna an even more powerful and versatile voice assistant!

If you have any questions or need further assistance, please don't hesitate to reach out to our friendly community on [GitHub Discussions](https://github.com/marvinbraga/gianna/discussions) or [Discord](https://discord.gg/xXaqSaYS).

Happy coding!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/marvinbraga/gianna",
    "name": "gianna",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<=3.13,>=3.11",
    "maintainer_email": null,
    "keywords": "voice-assistant AI CrewAI Langchain OpenAI Google NVIDIA Groq Ollama",
    "author": "Marcus Braga",
    "author_email": "mvbraga@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ec/65/c2cf532edd53e50493f7b08dca86c0ce4e06d1f2cca8e997f0de8b4b2562/gianna-0.1.4.tar.gz",
    "platform": null,
    "description": "# Gianna: Generative Intelligent Artificial Neural Network Assistant\n\nGianna is a voice assistant that utilizes CrewAI and Langchain to perform complex tasks. It provides an easy way to create chain instances for working with a simple prompt, a string parser, and various LLM models such as OpenAI, Google, NVIDIA, Groq, and Ollama.\n\n## Installation\n\n### Prerequisites\n\n- Python 3.10 or higher\n- Poetry (Python package manager)\n\n```shell\nsudo apt update -y \n```\n\n```shell\nsudo apt install --no-install-recommends -y \\\n   build-essential \\\n   libpq-dev \\\n   libgirepository1.0-dev \\\n   libcairo2-dev pkg-config python3-dev \\\n   python3-pyaudio portaudio19-dev \\\n   libportaudio2\n```\n\n```shell\nsudo apt update -y && sudo apt upgrade -y\n```\n\n### Clone\n\nTo get started with Gianna, you'll need to have Poetry installed. Poetry is a dependency management and packaging tool for Python projects. If you don't have Poetry installed, you can follow the installation instructions from the [official Poetry documentation](https://python-poetry.org/docs/#installation).\n\nOnce you have Poetry installed, follow these steps to set up Gianna:\n\n1. Clone the Gianna repository:\n   ```\n   git clone https://github.com/marvinbraga/gianna.git\n   ```\n\n2. Navigate to the project directory:\n   ```\n   cd gianna\n   ```\n\n3. Install the project dependencies using Poetry:\n   ```\n   poetry install\n   ```\n\n4. Activate the virtual environment created by Poetry:\n   ```\n   poetry shell\n   ```\n\n5. Run Gianna:\n   ```\n   python main.py\n   ```\n\n## More Info\n\n- [**LLMs factory** - assistants/models/readme.md](gianna/assistants/models/readme.md)\n- [**Recorders** - assistants/audio/recorders/readme.md](gianna/assistants/audio/recorders/readme.md)\n- [**SpeechToText** - assistants/audio/stt/readme.md](gianna/assistants/audio/stt/readme.md)\n- [**TextToSpeech** - assistants/audio/tts/readme.md](gianna/assistants/audio/tts/readme.md)\n- [**Commands** - assistants/commands/readme.md](gianna/assistants/commands/readme.md)\n\n## Contributing\n\nWe welcome contributions from the community to make Gianna even better! If you'd like to contribute to the project, please follow these steps:\n\n1. Fork the Gianna repository on GitHub.\n\n2. Create a new branch for your feature or bug fix:\n   ```\n   git checkout -b feature/your-feature-name\n   ```\n\n3. Make your changes and commit them with descriptive commit messages.\n\n4. Push your changes to your forked repository:\n   ```\n   git push origin feature/your-feature-name\n   ```\n\n5. Open a pull request on the main Gianna repository, describing your changes and why they should be merged.\n\nWe appreciate your contributions and will review your pull request as soon as possible. Together, let's make Gianna an even more powerful and versatile voice assistant!\n\nIf you have any questions or need further assistance, please don't hesitate to reach out to our friendly community on [GitHub Discussions](https://github.com/marvinbraga/gianna/discussions) or [Discord](https://discord.gg/xXaqSaYS).\n\nHappy coding!\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Generative Intelligent Artificial Neural Network Assistant",
    "version": "0.1.4",
    "project_urls": {
        "Homepage": "https://github.com/marvinbraga/gianna"
    },
    "split_keywords": [
        "voice-assistant",
        "ai",
        "crewai",
        "langchain",
        "openai",
        "google",
        "nvidia",
        "groq",
        "ollama"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed46f33071474fe8f89838a0b77c32901f91db0b1dcb27e270075de14ec4e208",
                "md5": "c88896b0bd18d327bcf0f6d06bed3157",
                "sha256": "c06d94a5c49383f05b2d0181fa48a48b2173a7d6f93a9c9d3040b1e310df19a5"
            },
            "downloads": -1,
            "filename": "gianna-0.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c88896b0bd18d327bcf0f6d06bed3157",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<=3.13,>=3.11",
            "size": 43630,
            "upload_time": "2024-05-08T13:39:05",
            "upload_time_iso_8601": "2024-05-08T13:39:05.370562Z",
            "url": "https://files.pythonhosted.org/packages/ed/46/f33071474fe8f89838a0b77c32901f91db0b1dcb27e270075de14ec4e208/gianna-0.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec65c2cf532edd53e50493f7b08dca86c0ce4e06d1f2cca8e997f0de8b4b2562",
                "md5": "8b5e8b89136980bfbc0a058281c63184",
                "sha256": "7319e618ed91980c5fb024f11d592af68574421daef1b2213e95695c904ed3d7"
            },
            "downloads": -1,
            "filename": "gianna-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "8b5e8b89136980bfbc0a058281c63184",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<=3.13,>=3.11",
            "size": 23451,
            "upload_time": "2024-05-08T13:39:08",
            "upload_time_iso_8601": "2024-05-08T13:39:08.040184Z",
            "url": "https://files.pythonhosted.org/packages/ec/65/c2cf532edd53e50493f7b08dca86c0ce4e06d1f2cca8e997f0de8b4b2562/gianna-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-08 13:39:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "marvinbraga",
    "github_project": "gianna",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "gianna"
}
        
Elapsed time: 0.23898s