mirror of https://github.com/leafspark/AutoGGUF
14 lines
406 B
Python
14 lines
406 B
Python
class ExamplePlugin:
|
|
def init(self, autogguf_instance):
|
|
# This gets called after the plugin is loaded
|
|
print("Plugin initialized")
|
|
|
|
def __data__(self):
|
|
return {
|
|
"name": "ExamplePlugin",
|
|
"description": "This is an example plugin.",
|
|
"compatible_versions": ["*"],
|
|
"author": "leafspark",
|
|
"version": "v1.0.0",
|
|
}
|