Metadata-Version: 2.1
Name: llm-astar
Version: 0.1.1
Summary: LLM-A*: Large Language Model Enhanced Incremental Heuristic Search on Path Planning.
Home-page: https://github.com/SilinMeng0510/llm-astar
Download-URL: https://github.com/SilinMeng0510/llm-astar/archive/refs/heads/main.zip
Author: Silin Meng
Author-email: silinmeng@gmail.com
Keywords: LLMs,route planning,deep learning,neural networks,research,LLMs agent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: setuptools~=68.2.2
Requires-Dist: openai==0.27.2
Requires-Dist: inquirer~=3.2.4
Requires-Dist: shapely
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: transformers
Requires-Dist: torch
Requires-Dist: shapely

<br/>
<p align="center"> <img width="1000" src="https://github.com/SilinMeng0510/RouteAgent/assets/89226819/7bc8d029-4707-4b42-9c0d-41a11de95814">


[![Downloads](https://static.pepy.tech/badge/termax)](https://pepy.tech/project/termax) ![PyPI - Version](https://img.shields.io/pypi/v/termax)


# Overview
Route-agent performs path planning with GPT and LLMs.

## Installation
```bash
pip install routeagent
```

## Quick Start
```python
from routeagent import RePE

query = "design a path from [10, 0] to [0, 10] that avoids crossing the area of circle centered at [5, 5] with a radius of 4."
pather = RePE()
pather.run(query)
```


