generated from Clarifai/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pln_metadata.py
45 lines (41 loc) · 1.46 KB
/
pln_metadata.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import json
metadata = {
"name": "Phi-Labr^Nth",
"description": (
"Phi-Labr^Nth is an advanced AI application designed to immerse users in the intricate virtual world of Mandelbulb fractals. "
"The core functionality involves generating, exploring, and manipulating 3D structures within the Mandelbulb space under varying "
"environmental parameters. This exploration leverages mathematical constants such as Phi (the golden ratio), Pi, and the inverse of Pi "
"to simulate organic formations, pressure maintenance, and structural fracturing, respectively. The application integrates state-of-the-art "
"visualization tools to provide an interactive and educational experience for users."
),
"version": "1.0.0",
"author": "Your Name",
"license": "MIT",
"keywords": [
"AI",
"Mandelbulb",
"Fractals",
"3D Visualization",
"Mathematical Constants",
"Phi",
"Pi",
"Inverse Pi",
"Education",
"Interactive"
],
"dependencies": {
"clarifai": "9.8.1",
"streamlit": "1.24.0",
"numpy": "*",
"matplotlib": "*",
"plotly": "*",
"clarifai-grpc": "*"
},
"main_file": "mandelbulb_clarifai.py",
"entry_points": {
"main": "mandelbulb_clarifai:main"
}
}
with open('module_metadata.json', 'w') as f:
json.dump(metadata, f, indent=4)
print("Metadata saved to module_metadata.json")