Spaces:
Sleeping
Sleeping
File size: 1,247 Bytes
987f564 fdbec52 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | ---
title: Marketer Chatbot
emoji: 🚀
colorFrom: purple
colorTo: pink
sdk: streamlit
sdk_version: 1.37.1
app_file: app.py
pinned: false
---
# Marketer Chatbot Project
## Overview
Marketer Chatbot is a Python-based project designed to provide a simple interface for users to interact with a chatbot behaving like a marketer. The chatbot is built using the Streamlit library and Hugging Face Inference API, together with a Llama-family model.
## Contents
- `functions.py`: Contains various functions used in the project.
- `config.py`: Configuration settings for the project.
- `requirements.txt`: Lists the dependencies required to run the project.
- `app.py`: The main application file.
- `.gitignore`: Specifies files and directories to be ignored by git.
- `.gitattributes`: Configuration for git attributes.
## Getting Started
### Prerequisites
Ensure you have the following installed:
- Python 3.x
- pip (Python package installer)
### Installation
1. Clone the repository:
2. Navigate to the project directory:
```sh
cd marketer_chatbot
```
3. Install the required dependencies:
```sh
pip install -r requirements.txt
```
### Running the Application
Run the main application file:
```sh
streamlit run app.py
``` |