Skip to content

Commit fc1c4be

Browse files
author
Your Name
committed
first commit
0 parents  commit fc1c4be

136 files changed

Lines changed: 14714 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# codeexv2

public/Hist.png

2.24 MB
Loading

public/Multi-Chat.png

2.41 MB
Loading

public/an.png

1.38 MB
Loading

public/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/icons/icon-192x192.png"/>
6+
<TileColor>#020817</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

public/com.png

1.88 MB
Loading

public/eng.png

1.14 MB
Loading

public/icons/icon-192x192.png

36.1 KB
Loading

public/manifest.json

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
{
2+
"name": "CODEEX AI - Intelligent Assistant",
3+
"short_name": "CODEEX AI",
4+
"description": "An intelligent AI assistant powered by Heoster. Chat with multiple AI models, solve math problems, search the web, and more. Optimized for mobile devices.",
5+
"icons": [
6+
{
7+
"src": "/icons/icon-72x72.png",
8+
"sizes": "72x72",
9+
"type": "image/png",
10+
"purpose": "any"
11+
},
12+
{
13+
"src": "/icons/icon-96x96.png",
14+
"sizes": "96x96",
15+
"type": "image/png",
16+
"purpose": "any"
17+
},
18+
{
19+
"src": "/icons/icon-128x128.png",
20+
"sizes": "128x128",
21+
"type": "image/png",
22+
"purpose": "any"
23+
},
24+
{
25+
"src": "/icons/icon-144x144.png",
26+
"sizes": "144x144",
27+
"type": "image/png",
28+
"purpose": "any"
29+
},
30+
{
31+
"src": "/icons/icon-152x152.png",
32+
"sizes": "152x152",
33+
"type": "image/png",
34+
"purpose": "any"
35+
},
36+
{
37+
"src": "/icons/icon-192x192.png",
38+
"sizes": "192x192",
39+
"type": "image/png",
40+
"purpose": "any"
41+
},
42+
{
43+
"src": "/icons/icon-384x384.png",
44+
"sizes": "384x384",
45+
"type": "image/png",
46+
"purpose": "any"
47+
},
48+
{
49+
"src": "/icons/icon-512x512.png",
50+
"sizes": "512x512",
51+
"type": "image/png",
52+
"purpose": "any"
53+
},
54+
{
55+
"src": "/icons/icon-192x192.png",
56+
"sizes": "192x192",
57+
"type": "image/png",
58+
"purpose": "maskable"
59+
},
60+
{
61+
"src": "/icons/icon-512x512.png",
62+
"sizes": "512x512",
63+
"type": "image/png",
64+
"purpose": "maskable"
65+
}
66+
],
67+
"theme_color": "#020817",
68+
"background_color": "#020817",
69+
"start_url": "/chat",
70+
"scope": "/",
71+
"id": "codeex-ai",
72+
"display": "standalone",
73+
"display_override": ["standalone", "minimal-ui"],
74+
"orientation": "portrait-primary",
75+
"categories": ["productivity", "utilities", "education", "developer tools"],
76+
"lang": "en",
77+
"dir": "ltr",
78+
"prefer_related_applications": false,
79+
"screenshots": [
80+
{
81+
"src": "/screenshots/chat-mobile.png",
82+
"sizes": "390x844",
83+
"type": "image/png",
84+
"form_factor": "narrow",
85+
"label": "Chat interface on mobile"
86+
},
87+
{
88+
"src": "/screenshots/chat-desktop.png",
89+
"sizes": "1920x1080",
90+
"type": "image/png",
91+
"form_factor": "wide",
92+
"label": "Chat interface on desktop"
93+
}
94+
],
95+
"shortcuts": [
96+
{
97+
"name": "New Chat",
98+
"short_name": "Chat",
99+
"description": "Start a new AI conversation",
100+
"url": "/chat",
101+
"icons": [
102+
{
103+
"src": "/icons/icon-192x192.png",
104+
"sizes": "192x192",
105+
"type": "image/png"
106+
}
107+
]
108+
},
109+
{
110+
"name": "Visual Math Solver",
111+
"short_name": "Math",
112+
"description": "Solve math problems from images",
113+
"url": "/visual-math",
114+
"icons": [
115+
{
116+
"src": "/icons/icon-192x192.png",
117+
"sizes": "192x192",
118+
"type": "image/png"
119+
}
120+
]
121+
},
122+
{
123+
"name": "PDF Analyzer",
124+
"short_name": "PDF",
125+
"description": "Analyze and ask questions about PDFs",
126+
"url": "/pdf-analyzer",
127+
"icons": [
128+
{
129+
"src": "/icons/icon-192x192.png",
130+
"sizes": "192x192",
131+
"type": "image/png"
132+
}
133+
]
134+
}
135+
],
136+
"related_applications": [],
137+
"handle_links": "preferred",
138+
"launch_handler": {
139+
"client_mode": "navigate-existing"
140+
}
141+
}

0 commit comments

Comments
 (0)