mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-19 20:34:45 +08:00
8 lines
221 B
Python
8 lines
221 B
Python
|
|
from pydantic import BaseModel, Field
|
||
|
|
|
||
|
|
|
||
|
|
class TokenUsageConfig(BaseModel):
|
||
|
|
"""Configuration for token usage tracking."""
|
||
|
|
|
||
|
|
enabled: bool = Field(default=False, description="Enable token usage tracking middleware")
|