Installation
Prerequisites
Section titled “Prerequisites”- Python 3.8 or higher
- Pinecone account with an active index
- Pinecone API key
Set Up Gilial
Section titled “Set Up Gilial”Clone the Gilial repository and install dependencies:
git clone https://github.com/aadyantmaity/Gilial.gitcd Gilialpip install -r requirements.txtConfigure Your Credentials
Section titled “Configure Your Credentials”Set your Pinecone credentials as environment variables:
export PINECONE_API_KEY="your-api-key-here"export PINECONE_INDEX_NAME="your-index-name"export PINECONE_ENVIRONMENT="us-west-1" # or your regionStart the Server
Section titled “Start the Server”Start the Gilial backend:
python backend/main.pyYou should see output like:
INFO: Uvicorn running on http://0.0.0.0:8000The API is now ready to accept requests!
Verify Setup
Section titled “Verify Setup”Test the connection:
curl http://localhost:8000/statusIf you get a JSON response with your index info, you’re ready to go.
Next Steps
Section titled “Next Steps”- Read the Quick Start Guide
- Learn about Compression Strategies
- Check the REST API Reference