Merge branch 'open-webui:main' into webui_secret_key_multinode

This commit is contained in:
Taylor Wilsdon
2025-03-15 10:54:51 -04:00
committed by GitHub
3 changed files with 17 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ Valves are configurable by admins alone and UserValves are configurable by any u
default=0, description="Priority level for the filter operations."
)
test_valve: int = Field(
default=4, description="A valve controlling a numberical value"
default=4, description="A valve controlling a numerical value"
)
pass

View File

@@ -68,7 +68,7 @@ licence: MIT
### Tools Class
Tools have to be defined as methods withing a class called `Tools`, with optional subclasses called `Valves` and `UserValves`, for example:
Tools have to be defined as methods within a class called `Tools`, with optional subclasses called `Valves` and `UserValves`, for example:
```python
class Tools:
@@ -109,7 +109,7 @@ Valves are configurable by admins alone and UserValves are configurable by any u
default=0, description="Priority level for the filter operations."
)
test_valve: int = Field(
default=4, description="A valve controlling a numberical value"
default=4, description="A valve controlling a numerical value"
)
pass