Skip to content

Commit

Permalink
add tool specific configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
yaseminbridges committed Jun 2, 2024
1 parent 724d6b3 commit 67098fe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/pheval_ai_marrvel/tool_specific_configuration_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from pydantic import BaseModel, Field


class AIMARRVELConfigurations(BaseModel):
"""
Class for defining the AI MARRVEL configurations in tool_specific_configurations field,
within the input_dir config.yaml
Args:
environment (str): Environment to run AI MARRVEL, i.e., docker/apptainer
"""

environment: str = Field(...)

0 comments on commit 67098fe

Please sign in to comment.