@omiron33/omi-neuron-web 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -0
- package/dist/api/index.cjs +943 -0
- package/dist/api/index.cjs.map +1 -0
- package/dist/api/index.d.cts +140 -0
- package/dist/api/index.d.ts +140 -0
- package/dist/api/index.js +934 -0
- package/dist/api/index.js.map +1 -0
- package/dist/chunk-BSOSHBDR.cjs +300 -0
- package/dist/chunk-BSOSHBDR.cjs.map +1 -0
- package/dist/chunk-COO66N7H.cjs +950 -0
- package/dist/chunk-COO66N7H.cjs.map +1 -0
- package/dist/chunk-FXKXMSLY.cjs +270 -0
- package/dist/chunk-FXKXMSLY.cjs.map +1 -0
- package/dist/chunk-PSDVPB7Y.js +289 -0
- package/dist/chunk-PSDVPB7Y.js.map +1 -0
- package/dist/chunk-RQCGONPN.js +937 -0
- package/dist/chunk-RQCGONPN.js.map +1 -0
- package/dist/chunk-RTSFO7BW.cjs +592 -0
- package/dist/chunk-RTSFO7BW.cjs.map +1 -0
- package/dist/chunk-TFLMPBX7.js +262 -0
- package/dist/chunk-TFLMPBX7.js.map +1 -0
- package/dist/chunk-XNR42GCJ.js +547 -0
- package/dist/chunk-XNR42GCJ.js.map +1 -0
- package/dist/cli/index.cjs +571 -0
- package/dist/cli/index.cjs.map +1 -0
- package/dist/cli/index.d.cts +1 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +563 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/database-B0vplyA4.d.cts +41 -0
- package/dist/database-B0vplyA4.d.ts +41 -0
- package/dist/edge-BzsYe2Ed.d.cts +269 -0
- package/dist/edge-BzsYe2Ed.d.ts +269 -0
- package/dist/index.cjs +895 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1484 -0
- package/dist/index.d.ts +1484 -0
- package/dist/index.js +654 -0
- package/dist/index.js.map +1 -0
- package/dist/migration/index.cjs +32 -0
- package/dist/migration/index.cjs.map +1 -0
- package/dist/migration/index.d.cts +51 -0
- package/dist/migration/index.d.ts +51 -0
- package/dist/migration/index.js +3 -0
- package/dist/migration/index.js.map +1 -0
- package/dist/query-helpers-D8po5Mn-.d.cts +777 -0
- package/dist/query-helpers-DvQTA2_Z.d.ts +777 -0
- package/dist/visualization/index.cjs +485 -0
- package/dist/visualization/index.cjs.map +1 -0
- package/dist/visualization/index.d.cts +134 -0
- package/dist/visualization/index.d.ts +134 -0
- package/dist/visualization/index.js +460 -0
- package/dist/visualization/index.js.map +1 -0
- package/docker/docker-compose.template.yml +28 -0
- package/package.json +116 -0
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# omi-neuron-web
|
|
2
|
+
|
|
3
|
+
A drop-in Next.js library for data analysis and 3D visualization with OpenAI-powered insights.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🔮 **AI-powered analysis** - OpenAI integration for embeddings, clustering, and relationship inference
|
|
8
|
+
- 🕸️ **Interactive visualization** - Three.js graph with customizable themes and interactions
|
|
9
|
+
- 🐘 **Zero-config database** - Docker PostgreSQL with pgvector automatically provisioned
|
|
10
|
+
- 📊 **Smart clustering** - K-means and DBSCAN algorithms for grouping similar nodes
|
|
11
|
+
- 🎨 **Fully customizable** - Themes, colors, node types, and domains configurable per project
|
|
12
|
+
- 🔌 **Simple React API** - Provider and hooks for seamless integration
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# Initialize in your Next.js project
|
|
18
|
+
npx omi-neuron init
|
|
19
|
+
|
|
20
|
+
# Start the database
|
|
21
|
+
npx omi-neuron db:up
|
|
22
|
+
|
|
23
|
+
# Run your Next.js app
|
|
24
|
+
npm run dev
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Documentation
|
|
28
|
+
|
|
29
|
+
- [Getting Started](./docs/getting-started.md)
|
|
30
|
+
- [Configuration](./docs/configuration.md)
|
|
31
|
+
- [API Reference](./docs/api-reference.md)
|
|
32
|
+
- [Hooks Reference](./docs/hooks-reference.md)
|
|
33
|
+
- [Component Props](./docs/component-props.md)
|
|
34
|
+
- [CLI Reference](./docs/cli-reference.md)
|
|
35
|
+
- [Architecture](./docs/architecture.md)
|
|
36
|
+
- [Troubleshooting](./docs/troubleshooting.md)
|
|
37
|
+
|
|
38
|
+
### Phase Overview
|
|
39
|
+
|
|
40
|
+
1. **Foundation** - Core types, Docker setup, migrations, CLI
|
|
41
|
+
2. **Analysis Engine** - Embeddings, clustering, relationships, events
|
|
42
|
+
3. **API Layer** - REST endpoints, repositories, query builder
|
|
43
|
+
4. **Visualization** - Three.js component, themes, interactions
|
|
44
|
+
5. **Integration** - Provider, hooks, examples
|
|
45
|
+
6. **Validation** - Tests, documentation, npm publishing
|
|
46
|
+
|
|
47
|
+
## Development Status
|
|
48
|
+
|
|
49
|
+
🟥 **In Planning** - Implementation not yet started
|
|
50
|
+
|
|
51
|
+
See [plans/master-plan-planner.md](./plans/master-plan-planner.md) for current status.
|
|
52
|
+
|
|
53
|
+
## License
|
|
54
|
+
|
|
55
|
+
MIT
|