Skip to content

Commit 87e7f0b

Browse files
Fix requirements format and remove attributes
The changes in smart_with_tools.py include the removal of two lines that define the id and name attributes of the Pipe class. Additionally, a comma was added to the requirements line to correct the formatting.
1 parent 01ca128 commit 87e7f0b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

functions/smart_with_tools.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
author_url: https://github.com/MartianInGreen/OpenWebUI-Tools
55
description: SMART is a sequential multi-agent reasoning technique. Now with tools.
66
required_open_webui_version: 0.5.0
7-
requirements: langchain-openai==0.2.14, langgraph==0.2.60 aiohttp
7+
requirements: langchain-openai==0.2.14, langgraph==0.2.60, aiohttp
88
version: 1.1
99
licence: MIT
1010
"""
@@ -700,8 +700,6 @@ class Valves(BaseModel):
700700
def __init__(self):
701701
try:
702702
self.type = "manifold"
703-
self.id = "smart-core"
704-
self.name = "Smart Core"
705703
self.valves = self.Valves(
706704
**{k: os.getenv(k, v.default) for k, v in self.Valves.model_fields.items()}
707705
)

0 commit comments

Comments
 (0)