mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-20 21:04:45 +08:00
11 lines
248 B
Python
11 lines
248 B
Python
|
|
from pydantic import BaseModel, Field
|
||
|
|
|
||
|
|
|
||
|
|
class SandboxConfig(BaseModel):
|
||
|
|
"""Config section for a sandbox"""
|
||
|
|
|
||
|
|
use: str = Field(
|
||
|
|
...,
|
||
|
|
description="Class path of the sandbox provider(e.g. src.sandbox.local:LocalSandbox)",
|
||
|
|
)
|