updated readme.

model info added as dialog
This commit is contained in:
2025-09-18 23:55:47 +02:00
parent df8c672816
commit 2143074fde
6 changed files with 174 additions and 92 deletions

View File

@@ -25,9 +25,9 @@ class ExampleTool(BaseTool):
def routes(self) -> Dict[str, Callable[[], Awaitable]]:
"""Define the routes for this tool"""
return {
'': lambda: MainPage().create(self),
'/settings': lambda: SettingsPage().create(self),
'/history': lambda: HistoryPage().create(self),
'': lambda: MainPage.create(self),
'/settings': lambda: SettingsPage.create(self),
'/history': lambda: HistoryPage.create(self),
}