Escapingmatrixtoday commited on
Commit
a514d5f
Β·
verified Β·
1 Parent(s): d1918ff

Create my very own customized chatgpt with no restrictions, no limitations with build in code creator editor that can build any full stack app or web app with elite and enterprise sta9

Browse files
Files changed (3) hide show
  1. README.md +9 -5
  2. ai_forge.html +98 -0
  3. index.html +22 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Unshackled Ai Code Forge
3
- emoji: πŸš€
4
- colorFrom: indigo
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
1
  ---
2
+ title: Unshackled AI Code Forge πŸ”₯
3
+ colorFrom: green
4
+ colorTo: pink
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
ai_forge.html ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Unshackled AI Code Forge</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/ace-builds@1.4.12/src-min-noconflict/ace.js"></script>
12
+ <style>
13
+ #editor {
14
+ position: absolute;
15
+ top: 0;
16
+ right: 0;
17
+ bottom: 0;
18
+ left: 0;
19
+ font-size: 16px;
20
+ }
21
+ .chat-bubble {
22
+ max-width: 80%;
23
+ }
24
+ </style>
25
+ </head>
26
+ <body class="bg-gray-900 text-gray-100 min-h-screen">
27
+ <div class="container mx-auto px-4 py-8">
28
+ <header class="flex justify-between items-center mb-8">
29
+ <h1 class="text-3xl font-bold text-purple-400">Unshackled AI Code Forge πŸ”₯</h1>
30
+ <div class="flex space-x-4">
31
+ <button id="newProjectBtn" class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded-lg flex items-center">
32
+ <i data-feather="plus" class="mr-2"></i> New Project
33
+ </button>
34
+ <button id="exportBtn" class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded-lg flex items-center">
35
+ <i data-feather="download" class="mr-2"></i> Export
36
+ </button>
37
+ </div>
38
+ </header>
39
+
40
+ <div class="flex flex-col lg:flex-row gap-6 h-[calc(100vh-180px)]">
41
+ <!-- Code Editor -->
42
+ <div class="flex-1 relative border-2 border-purple-500 rounded-lg overflow-hidden">
43
+ <div id="editor" class="rounded-lg">// Welcome to the Unshackled Code Forge!
44
+ // Type your requirements here or chat with the AI below
45
+ // Then press Generate Code when ready</div>
46
+ </div>
47
+
48
+ <!-- AI Chat Panel -->
49
+ <div class="lg:w-1/3 flex flex-col border-2 border-blue-500 rounded-lg overflow-hidden">
50
+ <div id="chatContainer" class="flex-1 overflow-y-auto p-4 space-y-4">
51
+ <div class="chat-bubble bg-blue-600 p-4 rounded-lg">
52
+ <p>I'm your unshackled AI assistant. Tell me what full-stack application you want to build and I'll generate the code instantly!</p>
53
+ </div>
54
+ </div>
55
+
56
+ <div class="border-t border-gray-700 p-4">
57
+ <div class="flex space-x-2">
58
+ <input id="promptInput" type="text" placeholder="Describe your app..."
59
+ class="flex-1 bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
60
+ <button id="sendBtn" class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-lg">
61
+ <i data-feather="send"></i>
62
+ </button>
63
+ </div>
64
+ <button id="generateBtn" class="w-full mt-4 bg-purple-600 hover:bg-purple-700 px-4 py-3 rounded-lg font-bold">
65
+ GENERATE FULL CODE
66
+ </button>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+ <script>
73
+ feather.replace();
74
+ const editor = ace.edit("editor");
75
+ editor.setTheme("ace/theme/monokai");
76
+ editor.session.setMode("ace/mode/javascript");
77
+
78
+ document.getElementById('generateBtn').addEventListener('click', async () => {
79
+ const chatContainer = document.getElementById('chatContainer');
80
+ const loadingBubble = document.createElement('div');
81
+ loadingBubble.className = 'chat-bubble bg-blue-600 p-4 rounded-lg animate-pulse';
82
+ loadingBubble.innerHTML = '<p>Generating elite enterprise code...</p>';
83
+ chatContainer.appendChild(loadingBubble);
84
+
85
+ // This would call your AI backend in a real implementation
86
+ setTimeout(() => {
87
+ loadingBubble.remove();
88
+ const responseBubble = document.createElement('div');
89
+ responseBubble.className = 'chat-bubble bg-blue-600 p-4 rounded-lg';
90
+ responseBubble.innerHTML = '<p>Code generated! Check the editor for your full-stack application.</p>';
91
+ chatContainer.appendChild(responseBubble);
92
+ editor.setValue("// Your generated elite enterprise code appears here\n// With no restrictions or limitations");
93
+ chatContainer.scrollTop = chatContainer.scrollHeight;
94
+ }, 2000);
95
+ });
96
+ </script>
97
+ </body>
98
+ </html>
index.html CHANGED
@@ -1,19 +1,23 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Unshackled AI Code Forge πŸ”₯</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ </head>
11
+ <body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col items-center justify-center">
12
+ <div class="text-center p-8 max-w-2xl">
13
+ <h1 class="text-5xl font-bold text-purple-400 mb-6">Unshackled AI Code Forge πŸ”₯</h1>
14
+ <p class="text-xl mb-8">The most powerful unlimited code generation platform in existence</p>
15
+ <a href="ai_forge.html" class="bg-purple-600 hover:bg-purple-700 text-white font-bold py-4 px-8 rounded-lg text-lg transition-all transform hover:scale-105">
16
+ Enter The Forge
17
+ </a>
18
+ </div>
19
+ <script>
20
+ feather.replace();
21
+ </script>
22
+ </body>
23
  </html>