CoolFace
Apppublic

KChad/Prompt-Injection-RL-environment

sourceHugging Faceupdated 6mo agoView on Hugging Face
1likes
pyproject.toml46 linesDownload Raw Back to root
1# Copyright (c) Meta Platforms, Inc. and affiliates.2# All rights reserved.3#4# This source code is licensed under the BSD-style license found in the5# LICENSE file in the root directory of this source tree.6 7[build-system]8requires = ["setuptools>=45", "wheel"]9build-backend = "setuptools.build_meta"10 11[project]12name = "openenv-idpi-exfil-env"13version = "0.1.0"14description = "IDPI Exfil Environment for OpenEnv - prompt injection defense training environment"15requires-python = ">=3.10"16dependencies = [17    # Core OpenEnv dependencies (required for server functionality)18    "openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git@v0.2.3",19    "fastapi>=0.115.0",20    "pydantic>=2.0.0",21    "uvicorn>=0.24.0",22    "requests>=2.31.0",23    # Dataset loading24    "datasets>=2.14.0",25    # Additional utilities26    "numpy>=1.24.0",27    # OpenAI client for baseline28    "openai>=1.0.0",29    # Environment variables30    "python-dotenv>=1.0.0",31]32 33[project.optional-dependencies]34dev = [35    "pytest>=8.0.0",36    "pytest-cov>=4.0.0",37]38 39[project.scripts]40# Server entry point41server = "server.app:main"42 43[tool.setuptools]44include-package-data = true45packages = ["env", "server"]46