CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
docs/API.md
docs/advanced_features.md
docs/api_reference.md
docs/architecture.md
docs/changelog_v0.2.0.md
docs/deployment.md
docs/faq.md
docs/migration_guides.md
docs/production_deployment.md
docs/quickstart.md
docs/quickstart_v2.md
docs/support_matrix.md
docs/tutorials/getting_started.md
examples/__init__.py
examples/advanced_trading_example.py
examples/advanced_training.py
examples/benchmark_example.py
examples/cartpole_basic.py
examples/cartpole_with_llm.py
examples/collaboration_example.py
examples/compare_algorithms.py
examples/complete_production_workflow.py
examples/complete_workflow.py
examples/distributed_training_example.py
examples/dqn_lunarlander.py
examples/huggingface_integration.py
examples/hyperparameter_tuning_example.py
examples/llm_reward_frozen_mode.py
examples/multiagent_example.py
examples/offline_rl_example.py
examples/production_ppo_cartpole.py
examples/quickstart_minimal.py
examples/robotics_example.py
examples/stock_trading_example.py
examples/trading_example.py
examples/visualization_example.py
examples/config_examples/cartpole_llm.yaml
examples/config_examples/cartpole_ppo.yaml
examples/config_examples/lunarlander_dqn.yaml
examples/config_examples/trading_openai.yaml
hugo_rl_llm.egg-info/PKG-INFO
hugo_rl_llm.egg-info/SOURCES.txt
hugo_rl_llm.egg-info/dependency_links.txt
hugo_rl_llm.egg-info/entry_points.txt
hugo_rl_llm.egg-info/requires.txt
hugo_rl_llm.egg-info/top_level.txt
rl_llm_toolkit/__init__.py
rl_llm_toolkit/agents/__init__.py
rl_llm_toolkit/agents/base.py
rl_llm_toolkit/agents/cql.py
rl_llm_toolkit/agents/dqn.py
rl_llm_toolkit/agents/iql.py
rl_llm_toolkit/agents/networks.py
rl_llm_toolkit/agents/ppo.py
rl_llm_toolkit/api/__init__.py
rl_llm_toolkit/api/v1.py
rl_llm_toolkit/benchmarks/__init__.py
rl_llm_toolkit/benchmarks/metrics.py
rl_llm_toolkit/benchmarks/suite.py
rl_llm_toolkit/cli/__init__.py
rl_llm_toolkit/cli/commands.py
rl_llm_toolkit/cli/main.py
rl_llm_toolkit/collaboration/__init__.py
rl_llm_toolkit/collaboration/session.py
rl_llm_toolkit/collaboration/shared_buffer.py
rl_llm_toolkit/core/__init__.py
rl_llm_toolkit/core/checkpoint.py
rl_llm_toolkit/core/config.py
rl_llm_toolkit/core/environment.py
rl_llm_toolkit/core/exceptions.py
rl_llm_toolkit/core/reproducibility.py
rl_llm_toolkit/distributed/__init__.py
rl_llm_toolkit/distributed/parallel_rollout.py
rl_llm_toolkit/distributed/worker_pool.py
rl_llm_toolkit/environments/__init__.py
rl_llm_toolkit/environments/robotics.py
rl_llm_toolkit/environments/stock_trading.py
rl_llm_toolkit/environments/trading.py
rl_llm_toolkit/evaluation/__init__.py
rl_llm_toolkit/evaluation/evaluator.py
rl_llm_toolkit/evaluation/report_generator.py
rl_llm_toolkit/integrations/__init__.py
rl_llm_toolkit/integrations/huggingface.py
rl_llm_toolkit/integrations/leaderboard.py
rl_llm_toolkit/llm/__init__.py
rl_llm_toolkit/llm/base.py
rl_llm_toolkit/llm/ollama.py
rl_llm_toolkit/llm/openai.py
rl_llm_toolkit/multiagent/__init__.py
rl_llm_toolkit/multiagent/environment.py
rl_llm_toolkit/multiagent/maddpg.py
rl_llm_toolkit/plugins/__init__.py
rl_llm_toolkit/plugins/base.py
rl_llm_toolkit/plugins/discovery.py
rl_llm_toolkit/profiling/__init__.py
rl_llm_toolkit/profiling/cost_tracker.py
rl_llm_toolkit/profiling/profiler.py
rl_llm_toolkit/rewards/__init__.py
rl_llm_toolkit/rewards/frozen_reward.py
rl_llm_toolkit/rewards/llm_shaper.py
rl_llm_toolkit/rewards/prompts.py
rl_llm_toolkit/security/__init__.py
rl_llm_toolkit/security/circuit_breaker.py
rl_llm_toolkit/security/sanitizer.py
rl_llm_toolkit/tracking/__init__.py
rl_llm_toolkit/tracking/backends.py
rl_llm_toolkit/tracking/tracker.py
rl_llm_toolkit/utils/__init__.py
rl_llm_toolkit/utils/logger.py
rl_llm_toolkit/utils/performance_optimizer.py
rl_llm_toolkit/utils/visualization.py
rl_llm_toolkit/vision/__init__.py
rl_llm_toolkit/vision/video_reasoner.py
rl_llm_toolkit/vision/visual_reward_shaper.py
tests/__init__.py
tests/conftest.py
tests/test_agents.py
tests/test_benchmarks.py
tests/test_checkpoint.py
tests/test_cli.py
tests/test_collaboration.py
tests/test_config.py
tests/test_distributed.py
tests/test_environment.py
tests/test_evaluation.py
tests/test_integration_e2e.py
tests/test_integrations.py
tests/test_llm.py
tests/test_multiagent.py
tests/test_networks.py
tests/test_offline_rl.py
tests/test_plugins.py
tests/test_profiling.py
tests/test_reproducibility.py
tests/test_reward_shaper.py
tests/test_robotics_envs.py
tests/test_security.py
tests/test_tracking.py
tests/test_trading_env.py
tests/chaos/__init__.py
tests/chaos/injectors/__init__.py
tests/chaos/injectors/corruption.py
tests/chaos/injectors/llm_backend.py
tests/chaos/injectors/network.py
tests/chaos/injectors/resource.py
tests/chaos/scenarios/test_data_corruption.py
tests/chaos/scenarios/test_llm_chaos.py
tests/chaos/scenarios/test_long_running.py
tests/chaos/scenarios/test_resource_chaos.py
tests/integration/__init__.py
tests/integration/test_end_to_end.py
tests/integration/test_llm_integration.py
tests/unit/__init__.py
tests/unit/test_agents_ppo.py
tests/unit/test_cli_commands.py
tests/unit/test_core_checkpoint.py
tests/unit/test_core_environment.py
tests/unit/test_core_reproducibility.py
tests/unit/test_llm_backends.py
tests/unit/test_plugins.py
tests/unit/test_profiling.py
tests/unit/test_security.py
tests/unit/test_tracking.py