Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.47 KB

README.md

File metadata and controls

61 lines (40 loc) · 1.47 KB

Virtual Agent Analysis

Analyze the behavior and performance of Moveo.AI virtual agents.

Prerequisites

Getting Started

  1. Install Python 3.10.

    pyenv install 3.10
    pyenv global 3.10
  2. Clone the repo.

    git clone [email protected]:moveo-ai/virtual-agent-analysis.git
    cd virtual-agent-analysis
  3. Install dependencies.

    make install-dev
  4. Generate a .env file at the project's root by duplicating the contents of .env.example. Then, populate the file with your specific values.

  5. Start JupyterLab

    make jupyter
  6. Select the notebook you are interested in.

  7. Add your data (only CSV format currently supported) in the /data directory.

  8. Run the notebook.

Used for creating the graphs

https://plotly.com/python/

Contributing

To ensure that your commits exclude any notebook outputs while contributing to the project, execute the following command within your terminal, in the project's root directory:

git config filter.strip-notebook-output.clean 'jupyter nbconvert --ClearOutputPreprocessor.enabled=True --to=notebook --stdin --stdout --log-level=ERROR'

The project uses a Makefile.

To see all the available commands:

make help