| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | from enum import Enum | 
					
						
							| 
									
										
										
										
											2024-02-09 15:21:33 +08:00
										 |  |  | from typing import Optional | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | from pydantic import BaseModel | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | from core.tools.entities.common_entities import I18nObject | 
					
						
							|  |  |  | from core.tools.entities.tool_entities import ToolProviderCredentials | 
					
						
							| 
									
										
										
										
											2024-01-31 11:58:07 +08:00
										 |  |  | from core.tools.tool.tool import ToolParameter | 
					
						
							| 
									
										
										
										
											2024-02-01 18:11:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class UserToolProvider(BaseModel): | 
					
						
							|  |  |  |     class ProviderType(Enum): | 
					
						
							|  |  |  |         BUILTIN = "builtin" | 
					
						
							|  |  |  |         APP = "app" | 
					
						
							|  |  |  |         API = "api" | 
					
						
							| 
									
										
										
										
											2024-03-08 15:22:55 +08:00
										 |  |  |         MODEL = "model" | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     id: str | 
					
						
							|  |  |  |     author: str | 
					
						
							|  |  |  |     name: str # identifier | 
					
						
							|  |  |  |     description: I18nObject | 
					
						
							|  |  |  |     icon: str | 
					
						
							|  |  |  |     label: I18nObject # label | 
					
						
							|  |  |  |     type: ProviderType | 
					
						
							|  |  |  |     team_credentials: dict = None | 
					
						
							|  |  |  |     is_team_authorization: bool = False | 
					
						
							|  |  |  |     allow_delete: bool = True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def to_dict(self) -> dict: | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': self.id, | 
					
						
							|  |  |  |             'author': self.author, | 
					
						
							|  |  |  |             'name': self.name, | 
					
						
							|  |  |  |             'description': self.description.to_dict(), | 
					
						
							|  |  |  |             'icon': self.icon, | 
					
						
							|  |  |  |             'label': self.label.to_dict(), | 
					
						
							|  |  |  |             'type': self.type.value, | 
					
						
							|  |  |  |             'team_credentials': self.team_credentials, | 
					
						
							|  |  |  |             'is_team_authorization': self.is_team_authorization, | 
					
						
							|  |  |  |             'allow_delete': self.allow_delete | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class UserToolProviderCredentials(BaseModel): | 
					
						
							| 
									
										
										
										
											2024-02-09 15:21:33 +08:00
										 |  |  |     credentials: dict[str, ToolProviderCredentials] | 
					
						
							| 
									
										
										
										
											2024-01-23 19:58:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class UserTool(BaseModel): | 
					
						
							|  |  |  |     author: str | 
					
						
							|  |  |  |     name: str # identifier | 
					
						
							|  |  |  |     label: I18nObject # label | 
					
						
							|  |  |  |     description: I18nObject | 
					
						
							| 
									
										
										
										
											2024-02-09 15:21:33 +08:00
										 |  |  |     parameters: Optional[list[ToolParameter]] |