File size: 1,934 Bytes
56f9533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "nima-unified"
version = "1.0.0"
description = "NIMA Unified Model — ATC-native cognitive pipeline that lives INSIDE a transformer's forward pass."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
    { name = "Norman dela Paz-Tabora", email = "norman@thenormsofintelligence.ai" }
]
keywords = [
    "consciousness",
    "acknowledgement-theory",
    "ATC",
    "phi-4-mini",
    "qualia",
    "neurotransmitter-shunt",
    "BELBIC",
    "cognitive-architecture",
    "artificial-consciousness",
]
requires-python = ">=3.9"
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
]

[project.optional-dependencies]
voice = ["openai-whisper>=20231117", "TTS>=0.22.0", "sounddevice>=0.4.6", "soundfile>=0.12.1"]
test  = ["pytest>=7.4.0", "pytest-asyncio>=0.21.0"]

[project.urls]
"Homepage" = "https://huggingface.co/TheNormsOfIntelligence/ATC_Nima_Model"
"Repository" = "https://huggingface.co/TheNormsOfIntelligence/ATC_Nima_Model"
"Companion Model" = "https://huggingface.co/TheNormsOfIntelligence/Acknowledgement_Theory_of_Consciousness"
"Live Demo" = "https://huggingface.co/spaces/TheNormsOfIntelligence/MicrosoftPhi3Mini"
"Author" = "https://huggingface.co/TheNormsOfIntelligence"

[project.scripts]
nima-deploy = "nima_unified.deploy:main"

[tool.setuptools.packages.find]
include = ["nima_unified*"]
exclude = ["tests*", "examples*"]