Metadata-Version: 2.1
Name: llama-index-packs-gradio-agent-chat
Version: 0.2.0
Summary: llama-index packs gradio_agent_chat integration
License: MIT
Keywords: agent,chatbot,gradio,tools
Author: Your Name
Author-email: you@example.com
Maintainer: nerdai
Requires-Python: >=3.8.1,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: llama-index-core (>=0.11.0,<0.12.0)
Description-Content-Type: text/markdown

# Gradio Chat With Your LlamaIndex Agent

Create a LlamaIndex Agent (i.e., `BaseAgent`) and quickly chat with it using
this pack's Gradio Chatbot interface.

## CLI Usage

You can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:

```bash
llamaindex-cli download-llamapack GradioAgentChatPack --download-dir ./gradio_agent_chat
```

You can then inspect the files at `./gradio_agent_chat` and use them as a template for your own project!

To run the app directly, use in your terminal:

```bash
export OPENAI_API_KEY="sk-...
python ./gradio_agent_chat/base.py
```

