Plugin Views
This module contains views to implement the React.
Plugin list view in the Smarter Dashboard.
- class smarter.apps.plugin.views.listview.api.PluginListApiCloneView(**kwargs)[source]
Bases:
SmarterAuthenticatedNeverCachedWebViewClone a plugin for the authenticated user.
- property formatted_class_name: str
Returns a formatted string of the class name for logging purposes.
- post(request, *args, **kwargs)[source]
Handle POST requests to clone an existing PluginMeta.
Validates input parameters, checks for the existence of the PluginMeta to be cloned, and creates a new PluginMeta with the specified name. Invalidates the cache for the user’s LLMClients after cloning.
- Parameters:
request (
HttpRequest) – The HTTP request object containing the parameters for cloning.args – Additional positional arguments (not used).
kwargs –
Additional keyword arguments, including:
llm_client_id (str): The ID of the PluginMeta to be cloned.
new_name (str): The new name for the cloned PluginMeta.
- Returns:
A JsonResponse containing the serialized data of the newly cloned PluginMeta if successful, or an error message if the cloning fails.
- Return type:
- class smarter.apps.plugin.views.listview.api.PluginListApiDeleteView(**kwargs)[source]
Bases:
SmarterAuthenticatedNeverCachedWebViewDelete a plugin for the authenticated user.
- property formatted_class_name: str
Returns a formatted string of the class name for logging purposes.
- post(request, *args, **kwargs)[source]
Handle POST requests to delete an existing PluginMeta.
Validates input parameters, checks for the existence of the PluginMeta to be deleted, and deletes the PluginMeta if it exists. Invalidates the cache for the user’s LLMClients after deletion.
- Parameters:
request (
HttpRequest) – The HTTP request object containing the parameters for deletion.args – Additional positional arguments (not used).
kwargs –
Additional keyword arguments, including:
llm_client_id (str): The ID of the PluginMeta to be deleted.
- Returns:
A JsonResponse indicating the success or failure of the deletion.
- Return type:
- class smarter.apps.plugin.views.listview.api.PluginListApiRenameView(**kwargs)[source]
Bases:
SmarterAuthenticatedNeverCachedWebViewRename a plugin for the authenticated user.
- property formatted_class_name: str
Returns a formatted string of the class name for logging purposes.
- post(request, *args, **kwargs)[source]
Handle POST requests to rename an existing PluginMeta.
Validates input parameters, checks for the existence of the PluginMeta to be renamed, and renames the PluginMeta if it exists. Invalidates the cache for the user’s LLMClients after renaming.
- Parameters:
request (
HttpRequest) – The HTTP request object containing the parameters for renaming.args – Additional positional arguments (not used).
kwargs –
Additional keyword arguments, including:
llm_client_id (str): The ID of the PluginMeta to be renamed.
new_name (str): The new name for the PluginMeta.
- Returns:
A JsonResponse indicating the success or failure of the renaming.
- Return type:
- class smarter.apps.plugin.views.listview.api.PluginListApiView(**kwargs)[source]
Bases:
SmarterAuthenticatedNeverCachedWebViewRender the plugin list view for the Smarter Workbench web console.
This view displays all plugins available to the authenticated user as cards, providing a quick overview and access to plugin details.
- Parameters:
- Returns:
Rendered HTML page with a card for each plugin, or a 404 error page if the user is not authenticated.
- Return type:
HttpResponse
- property formatted_class_name: str
Returns a formatted string of the class name for logging purposes.