Metadata-Version: 2.1
Name: lfg-llama
Version: 1.0.2
Summary: LFG, It Really Whips the Llama's Ass 🦙🦙🦙🦙
Author: Bjarne Oeverli
Author-email: Bjarne Oeverli <bjarneocodes@gmail.com>
Maintainer-email: Bjarne Oeverli <bjarneocodes@gmail.com>
Project-URL: Homepage, https://github.com/bjarneo/lfg-llama
Project-URL: Documentation, https://github.com/bjarneo/lfg-llama
Project-URL: Repository, https://github.com/bjarneo/lfg-llama
Project-URL: Bug Tracker, https://github.com/bjarneo/lfg-llama
Project-URL: Changelog, https://github.com/bjarneo/lfg-llama
Keywords: llama,llama3,cli,sysadmin,devops,hacker,llm,tool,helper
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: ollama==0.1.9

# LFG

> LFG, It Really Whips the Llama's Ass 🦙🦙🦙🦙

![Logo](./logo.png)

LFG is a command-line tool that intelligently helps you find the right terminal commands for your tasks. It taps into the vast knowledge of the LLAMA3 language model (via Ollama) to understand your natural language descriptions and provide you with the most relevant commands and explanations.

## Installation

Currently, it uses ollama to run everything locally.

```bash
# install ollama
https://ollama.com/download/

# install the llama3 LLM
ollama run llama3

# start ollama
ollama server

# install LFG
pip install lfg-llama
```

## Usage

```bash
lfg kill port 3000

# Kill process listening on port 3000
lsof -i :3000 | xargs kill

```

### Development

```bash
pip install --user pipenv
pipenv --python 3.7
pipenv install
```

### TODO

- Use the model directly without ollama
