Metadata-Version: 2.1
Name: guia_cli
Version: 0.0.6
Summary: Gu, a simple IA agent that specializes in software engineering, aiding in coding tasks and providing technical guidance.
Home-page: https://github.com/andersonbosa/guia-cli
Author: Anderson Bosa
License: MIT
Keywords: IA assistant gemini-pro
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: aiohttp==3.9.3
Requires-Dist: aiosignal==1.3.1
Requires-Dist: annotated-types==0.6.0
Requires-Dist: anyio==4.3.0
Requires-Dist: attrs==23.2.0
Requires-Dist: cachetools==5.3.3
Requires-Dist: certifi==2024.2.2
Requires-Dist: charset-normalizer==3.3.2
Requires-Dist: click==8.1.7
Requires-Dist: crewai==0.19.0
Requires-Dist: dataclasses-json==0.6.4
Requires-Dist: Deprecated==1.2.14
Requires-Dist: distro==1.9.0
Requires-Dist: docstring-parser==0.15
Requires-Dist: frozenlist==1.4.1
Requires-Dist: google-ai-generativelanguage==0.4.0
Requires-Dist: google-api-core==2.17.1
Requires-Dist: google-auth==2.28.2
Requires-Dist: google-generativeai==0.3.2
Requires-Dist: googleapis-common-protos==1.62.0
Requires-Dist: greenlet==3.0.3
Requires-Dist: grpcio==1.62.1
Requires-Dist: grpcio-status==1.62.1
Requires-Dist: h11==0.14.0
Requires-Dist: httpcore==1.0.4
Requires-Dist: httpx==0.27.0
Requires-Dist: idna==3.6
Requires-Dist: importlib-metadata==6.11.0
Requires-Dist: instructor==0.5.2
Requires-Dist: jsonpatch==1.33
Requires-Dist: jsonpointer==2.4
Requires-Dist: langchain==0.1.11
Requires-Dist: langchain-community==0.0.27
Requires-Dist: langchain-core==0.1.30
Requires-Dist: langchain-google-genai==0.0.9
Requires-Dist: langchain-openai==0.0.5
Requires-Dist: langchain-text-splitters==0.0.1
Requires-Dist: langsmith==0.1.23
Requires-Dist: markdown-it-py==3.0.0
Requires-Dist: marshmallow==3.21.1
Requires-Dist: mdurl==0.1.2
Requires-Dist: multidict==6.0.5
Requires-Dist: mypy-extensions==1.0.0
Requires-Dist: numpy==1.26.4
Requires-Dist: openai==1.13.3
Requires-Dist: opentelemetry-api==1.23.0
Requires-Dist: opentelemetry-exporter-otlp-proto-common==1.23.0
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.23.0
Requires-Dist: opentelemetry-proto==1.23.0
Requires-Dist: opentelemetry-sdk==1.23.0
Requires-Dist: opentelemetry-semantic-conventions==0.44b0
Requires-Dist: orjson==3.9.15
Requires-Dist: packaging==23.2
Requires-Dist: proto-plus==1.23.0
Requires-Dist: protobuf==4.25.3
Requires-Dist: pyasn1==0.5.1
Requires-Dist: pyasn1-modules==0.3.0
Requires-Dist: pydantic==2.6.3
Requires-Dist: pydantic_core==2.16.3
Requires-Dist: Pygments==2.17.2
Requires-Dist: python-dotenv==1.0.1
Requires-Dist: PyYAML==6.0.1
Requires-Dist: regex==2023.12.25
Requires-Dist: requests==2.31.0
Requires-Dist: rich==13.7.1
Requires-Dist: rsa==4.9
Requires-Dist: sniffio==1.3.1
Requires-Dist: SQLAlchemy==2.0.28
Requires-Dist: tenacity==8.2.3
Requires-Dist: tiktoken==0.5.2
Requires-Dist: tqdm==4.66.2
Requires-Dist: typer==0.9.0
Requires-Dist: typing-inspect==0.9.0
Requires-Dist: typing_extensions==4.10.0
Requires-Dist: urllib3==2.2.1
Requires-Dist: wrapt==1.16.0
Requires-Dist: yarl==1.9.4
Requires-Dist: zipp==3.17.0


<section align="center">
  <img src="docs/assets/images/banner.svg" title="Project banner" alt="Project banner" />
  <br>
  <br>

  <!-- badges -->

  <p>
    <a href="#about">About</a> •
    <a href="#installation">Installation</a> •
    <a href="#getting-started">Getting Started</a> •
    <a href="#contribution">Contribution</a> •
    <a href="#license">License</a>
  </p>
</section>

---

## About

Gu IA Agent (aka GuIA-CLI) is an agent specializing in software engineering, designed to assist in programming tasks and provide technical guidance.It is able to generate code based on provided requirements and answer technical questions, offering clear explanations and relevant recommendations.

## Installation

You can install Guia-CLI via PyPI using pip:

```bash
pip install guia-cli
```

Alternatively, you can build from the repository:

1. Clone the repository:
```bash
git clone https://github.com/andersonbosa/guia-cli.git
```

2. Navigate to the repository directory:
```bash
cd repo
```

3. Install the package:
```bash
python setup.py install
```


## Getting Started

To use the GU agent, you can execute the script `main.py` providing the following options:

- `--coding "YOUR REQUEST"`: Uses Gu agent programming ability to generate code based on your request.
- `--mentoring "YOUR QUESTION"`: Uses Gu agent mentoring ability to receive technical guidance in response to your question.

#### Settings

Be sure to configure the following environment variables or it is setup in the `.env` file:

- `GOOGLE_API_KEY`: Your Google API key to use Gemini service (required)

#### Example of use

```bash
python main.py --coding "Implement a function to order a Python list using bubble-sort"
```

```bash
python main.py --mentoring "What is the difference between inheritance and composition in object -oriented programming?"
```

#### Backup results

The results of interactions with agent GU are saved in the `outputs` folder. Each file generated contains the date, type of interaction and a description of the request.


## 🤝 Contribution

<p>
  This project is for study purposes too, so please send me a message telling me what you are doing and why you are doing it, teach me what you know. All kinds of contributions are very welcome and appreciated!
</p>


## 📝 License

This project is under the MIT license.

---

<h4>  
  <img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/andersonbosa/guia-cli?style=social">
  | Did you like the repository? Give it a star! 😁
</h4>

