init. project
This commit is contained in:
11
rag-web-ui/backend/app/tools/base.py
Normal file
11
rag-web-ui/backend/app/tools/base.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from dataclasses import dataclass
|
||||
from typing import Any, Dict
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class ToolDefinition:
|
||||
name: str
|
||||
version: str
|
||||
description: str
|
||||
input_schema: Dict[str, Any]
|
||||
output_schema: Dict[str, Any]
|
||||
Reference in New Issue
Block a user