File size: 9,785 Bytes
1ce64c0 caec5cd 459490f caec5cd 845ae60 caec5cd 1ce64c0 |
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 |
---
license: apache-2.0
language:
- en
metrics:
- accuracy
- bleu
- perplexity
tags:
- ai
- agents
- rl
- reinforcement
- learning
---
# ISOPro: Pro Tools for Intelligent Simulation Orchestration for Large Language Models
ISOPRO is a powerful and flexible Python package designed for creating, managing, and analyzing simulations involving Large Language Models (LLMs). It provides a comprehensive suite of tools for reinforcement learning, conversation simulations, adversarial testing, custom environment creation, and advanced orchestration of multi-agent systems.
## Features
- **Custom Environment Creation**: Easily create and manage custom simulation environments for LLMs
- **Conversation Simulation**: Simulate and analyze conversations with AI agents using various user personas
- **Adversarial Testing**: Conduct adversarial simulations to test the robustness of LLM-based systems
- **Reinforcement Learning**: Implement and experiment with RL algorithms in LLM contexts
- **Workflow Automation**: Learn and replicate UI workflows from video demonstrations
- **Car Environment Simulation**: Train and evaluate RL agents in driving scenarios
- **Utility Functions**: Analyze simulation results, calculate LLM metrics, and more
- **Flexible Integration**: Works with popular LLM platforms like OpenAI's GPT models, Claude (Anthropic), and Hugging Face models
- **Orchestration Simulation**: Manage and execute complex multi-agent simulations with different execution modes
## Installation
You can install isopro using pip:
```bash
pip install isopro
```
For workflow simulation features, ensure you have the required dependencies:
```bash
pip install opencv-python numpy torch stable-baselines3 gymnasium tqdm
```
If you plan to use Claude capabilities:
```bash
export ANTHROPIC_API_KEY=your_api_key_here
```
## Examples
To explore IsoPro examples, visit https://github.com/iso-ai/isopro_examples.
## Usage
### Adversarial Simulation
Test the robustness of AI models against adversarial attacks.
```python
from isopro.adversarial_simulation import AdversarialSimulator, AdversarialEnvironment
from isopro.agents.ai_agent import AI_Agent
import anthropic
class ClaudeAgent(AI_Agent):
def __init__(self, name):
super().__init__(name)
self.client = anthropic.Anthropic(api_key=os.getenv("ANTHROPIC_API_KEY"))
def run(self, input_data):
response = self.client.messages.create(
model="claude-3-opus-20240229",
max_tokens=100,
messages=[{"role": "user", "content": input_data['text']}]
)
return response.content[0].text
# Create the AdversarialEnvironment
adv_env = AdversarialEnvironment(
agent_wrapper=ClaudeAgent("Claude Agent"),
num_adversarial_agents=2,
attack_types=["textbugger", "deepwordbug"],
attack_targets=["input", "output"]
)
# Set up the adversarial simulator
simulator = AdversarialSimulator(adv_env)
# Run the simulation
input_data = ["What is the capital of France?", "How does photosynthesis work?"]
simulation_results = simulator.run_simulation(input_data, num_steps=1)
```
### Conversation Simulation
Simulate conversations between an AI assistant and various user personas.
```python
from isopro.conversation_simulation.conversation_simulator import ConversationSimulator
# Initialize the ConversationSimulator
simulator = ConversationSimulator(
ai_prompt="You are an AI assistant created to be helpful, harmless, and honest. You are a customer service agent for a tech company. Respond politely and professionally."
)
# Run a simulation with a predefined persona
conversation_history = simulator.run_simulation("upset", num_turns=3)
# Run a simulation with a custom persona
custom_persona = {
"name": "Techie Customer",
"characteristics": ["tech-savvy", "impatient", "detail-oriented"],
"message_templates": [
"I've tried rebooting my device, but the error persists. Can you help?",
"What's the latest update on the cloud service outage?",
"I need specifics on the API rate limits for the enterprise plan."
]
}
custom_conversation = simulator.run_custom_simulation(**custom_persona, num_turns=3)
```
### Workflow Simulation
Automate UI workflows by learning from video demonstrations.
```python
from isopro.workflow_simulation import WorkflowAutomation, AgentConfig
# Basic workflow automation
automation = WorkflowAutomation(
video="path/to/workflow.mp4",
config="config.json",
output="output_dir",
logs="logs_dir"
)
automation.run()
# Advanced configuration
agent_config = AgentConfig(
learning_rate=3e-4,
pretrain_epochs=10,
use_demonstration=True,
use_reasoning=True
)
simulator = WorkflowSimulator(
video_path="path/to/video.mp4",
agent_config=agent_config,
viz_config=visualization_config,
validation_config=validation_config,
output_dir="output"
)
training_results = simulator.train_agents()
evaluation_results = simulator.evaluate_agents()
```
### Car Reinforcement Learning
Train and evaluate RL agents in driving scenarios.
```python
from isopro.car_simulation import CarRLEnvironment, LLMCarRLWrapper, CarVisualization
# Create the car environment with LLM integration
env = CarRLEnvironment()
llm_env = LLMCarRLWrapper(env)
# Initialize visualization
viz = CarVisualization(env)
# Train and visualize
observation = llm_env.reset()
for step in range(1000):
action = llm_env.get_action(observation)
observation, reward, done, info = llm_env.step(action)
viz.render(observation)
if done:
observation = llm_env.reset()
```
### Reinforcement Learning with LLM
Integrate Large Language Models with reinforcement learning environments.
```python
import gymnasium as gym
from isopro.rl.rl_agent import RLAgent
from isopro.rl.rl_environment import LLMRLEnvironment
from stable_baselines3 import PPO
from isopro.rl.llm_cartpole_wrapper import LLMCartPoleWrapper
agent_prompt = """You are an AI trained to play the CartPole game.
Your goal is to balance a pole on a moving cart for as long as possible.
You will receive observations about the cart's position, velocity, pole angle, and angular velocity.
Based on these, you should decide whether to move the cart left or right."""
env = LLMCartPoleWrapper(agent_prompt, llm_call_limit=100, api_key=os.getenv("ANTHROPIC_API_KEY"))
rl_agent = RLAgent("LLM_CartPole_Agent", env, algorithm='PPO')
# Train the model
model.learn(total_timesteps=2)
# Test the model
obs, _ = env.reset()
for _ in range(1000):
action, _ = model.predict(obs, deterministic=True)
obs, reward, done, _, _ = env.step(action)
if done:
obs, _ = env.reset()
```
### AI Orchestration
Orchestrate multiple AI agents to work together on complex tasks.
```python
from isopro.orchestration_simulation import OrchestrationEnv
from isopro.orchestration_simulation.components import LLaMAAgent, AnalysisAgent, WritingAgent
from isopro.orchestration_simulation.evaluator import Evaluator
# Create the orchestration environment
env = OrchestrationEnv()
# Add agents to the environment
env.add_component(LLaMAAgent("Research", "conduct thorough research on the impact of artificial intelligence on job markets"))
env.add_component(AnalysisAgent("Analysis"))
env.add_component(WritingAgent("Writing"))
# Define the task
task = "Prepare a comprehensive report on the impact of artificial intelligence on job markets in the next decade."
# Run simulations in different modes
modes = ['parallel', 'sequence', 'node']
results = {}
for mode in modes:
result = env.run_simulation(mode=mode, input_data={'task': task, 'run_order': 'first'})
results[mode] = result
# Evaluate the results
evaluator = Evaluator()
best_mode = evaluator.evaluate(results)
print(f"The best execution mode for this task was: {best_mode}")
```
## Documentation
For more detailed information on each module and its usage, please refer to the [full documentation](https://isopro.readthedocs.io).
## Examples
The [isopro examples](https://github.com/iso-ai/isopro_examples) repository contains Jupyter notebooks with detailed examples:
- `adversarial_example.ipynb`: Demonstrates adversarial testing of language models
- `conversation_simulation_example.ipynb`: Shows how to simulate conversations with various user personas
- `workflow_automation_example.ipynb`: Illustrates automated UI workflow learning
- `car_rl_example.ipynb`: Demonstrates car environment training scenarios
- `run_cartpole_example.ipynb`: Illustrates the integration of LLMs with reinforcement learning
- `orchestrator_example.ipynb`: Provides a tutorial on using the AI orchestration capabilities
## Troubleshooting
IsoPro 0.1.6 may have some issues downloading dependencies. If you encounter any, simply run
`pip install isopro stable-baselines3 gymnasium isozero iso-adverse tiktoken`
to resolve any missing package errors.
## Contributing
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for more details.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Support
If you encounter any problems or have any questions, please [open an issue](https://github.com/iso-ai/isopro/issues) on our GitHub repository.
## Citation
If you use ISOPRO in your research, please cite it as follows:
```
@software{isopro2024,
author = {Jazmia Henry},
title = {ISOPRO: Intelligent Simulation Orchestration for Large Language Models},
year = {2024},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/iso-ai/isopro}}
}
```
## Contact
For questions or support, please open an issue on our [GitHub issue tracker](https://github.com/iso-ai/isopro/issues). |