Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 716 Bytes

File metadata and controls

55 lines (40 loc) · 716 Bytes

Get started

Create your enviroment

python -m venv .venv

Activate your environment

.venv\Scripts\activate

Initialize the project

uv init

Install the dependencies

uv add llama_index

llama_index

Enviroment variables

Create a new .env file and add these variables.

HF_TOKEN=<Your_API_KEY>
TAVILY_API_KEY=<Your_API_KEY>

Usage

python agent.py

Git Config

git config --list | grep user
git config --local user.name "user_name"
git config --local user.email "nuevo.correo@example.com"
git config --global user.name "user_name"
git config --global user.email "nuevo.correo@example.com"