Metadata-Version: 2.3
Name: test-simulator-1
Version: 0.0.4
Summary: A tool for simulating Customer-Agent conversations based on real chat data
License: MIT
Keywords: conversation,simulation,rag,llm,chatbot,customer-service
Author: Dev team
Author-email: dev-team@gmail.com
Requires-Python: >=3.12.0,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: attrs (>=25.3.0,<26.0.0)
Requires-Dist: cattrs (>=25.1.1,<26.0.0)
Requires-Dist: faiss-cpu (>=1.11.0,<2.0.0)
Requires-Dist: langchain (>=0.3.25,<0.4.0)
Requires-Dist: langchain-community (>=0.3.21,<0.4.0)
Requires-Dist: langchain-openai (>=0.3.21,<0.4.0)
Requires-Dist: pydantic (>=2.0,<3.0)
Requires-Dist: python-dotenv (>=1.1.0,<2.0.0)
Project-URL: Documentation, https://github.com/leonidb/conversation-simulator
Project-URL: Homepage, https://github.com/leonidb/conversation-simulator
Project-URL: Repository, https://github.com/leonidb/conversation-simulator
Description-Content-Type: text/markdown

# Conversation Simulator

A tool for simulating Customer-Agent conversations based on real chat data.

## Installation

Install from PyPI:
```bash
pip install test-simulator-1
```

## Basic Usage

```python
from conversation_simulator import SimulationSession
# Import other components as needed

# Basic simulation setup
# See examples/ directory for complete usage examples
```

## Quick Start

### For Development

1. Clone this repository
   ```bash
   git clone https://github.com/leonidb/conversation-simulator.git
   cd conversation-simulator
   ```

2. Set up the development environment (see [Development Guide](https://github.com/leonidb/conversation-simulator/blob/main/docs/development/dev_guide.md))

3. Try the examples to see the library in action (see [Examples](https://github.com/leonidb/conversation-simulator/blob/main/examples/README.md))

## Project Structure

- `conversation_simulator/` - Package source code
- `examples/` - Usage examples and tutorials
- `tests/` - Test files
- `docs/` - Project documentation

## Development

See the [Development Guide](https://github.com/leonidb/conversation-simulator/blob/main/docs/development/dev_guide.md) for setup instructions and testing.

### Coding Standards

Refer to [CODING_STANDARDS.md](https://github.com/leonidb/conversation-simulator/blob/main/CODING_STANDARDS.md) for detailed guidelines.

## License

MIT

