mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-21 05:14:45 +08:00
feat: add config modules
This commit is contained in:
10
backend/src/config/sandbox_config.py
Normal file
10
backend/src/config/sandbox_config.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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)",
|
||||
)
|
||||
Reference in New Issue
Block a user