Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,17 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
*.egg-info/
dist/
build/
60 changes: 60 additions & 0 deletions PYTHON_SETUP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Python Setup Guide

This project includes Python dependencies for extended functionality.

## Prerequisites

- Python 3.12 or higher
- pip (Python package manager)

## Installation

### Using pip

Install Python dependencies using:

```bash
pip install -r requirements.txt
```

Or install directly:

```bash
pip install llama-stack
```

### Using a Virtual Environment (Recommended)

For isolated dependency management:

```bash
# Create a virtual environment
python3 -m venv venv

# Activate the virtual environment
# On Linux/Mac:
source venv/bin/activate
# On Windows:
# venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt
```

## Dependencies

- **llama-stack** (v0.3.2): Meta's Llama Stack framework for building LLM applications

## Verification

To verify the installation:

```bash
pip show llama-stack
```

## Notes

- Python dependencies are managed separately from Node.js dependencies
- The `venv/` directory is excluded from version control (see `.gitignore`)
- Python packages are installed in user space or in a virtual environment
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,13 @@ Continue building your app on:
2. Deploy your chats from the v0 interface
3. Changes are automatically pushed to this repository
4. Vercel deploys the latest version from this repository

## Python Dependencies

This project includes Python dependencies for extended functionality. See [PYTHON_SETUP.md](./PYTHON_SETUP.md) for setup instructions.

To install Python dependencies:

```bash
pip install -r requirements.txt
```
Loading