Skip to content

Commit 7cc46b4

Browse files
v1.1
1 parent e5e4e23 commit 7cc46b4

File tree

12 files changed

+16
-5
lines changed

12 files changed

+16
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
__pycache__/
22
venv/
33
test.py
4+
.keys

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![banner of Simple AI UI](./static/logo/banner.png)
2+
13
# Simple AI UI
24

35
Simple AI UI is a minimalist and lightweight web GUI that allows you to host your own AI on your local network or the internet.

config.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SIMPLE_AI_UI_SERVER_HOST=localhost
33
SIMPLE_AI_UI_SERVER_PORT=5000
44

55
# Users
6-
SIMPLE_AI_UI_AUTH_USERS=junaid:junaid
6+
SIMPLE_AI_UI_AUTH_USERS=joe:1234
77
SIMPLE_AI_UI_AUTH_NO_OF_USERS_PER_DAY=1000
88

99
# API Requests

static/logo/banner.png

753 KB
Loading

static/logo/favicon.ico

11.4 KB
Binary file not shown.

static/logo/icon.png

103 KB
Loading

static/logo/icond.png

183 KB
Loading

static/logo/logo.png

1.2 MB
Loading

templates/404.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>SIMPLE AI UI</title>
88
<link rel="stylesheet" href="/static/style.css" />
9+
<link rel="shortcut icon" href="/static/logo/favicon.ico" type="image/x-icon">
910
</head>
1011

1112
<body>
1213
<div class="app-container">
1314
<header>
15+
<img src="/static/logo/icon.png" alt="Icon of Simple AI UI" width="100px">
1416
<h1>SIMPLE AI UI</h1>
1517
<button id="theme-toggle" aria-label="Toggle dark mode" onclick="darkThemeToggle()">🌙</button>
1618
</header>
1719

1820
<h1>PAGE NOT FOUND!</h1>
1921
<p>The Page your looking for is does not exist!</p>
2022
<p>Go to <a href="/">HOME</a> page.</p>
21-
<script src="/static/theme-toggle.js"></script>
23+
<script src="/static/theme-toggle.js"></script>
2224
</body>
2325

2426
</html>

templates/error.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>SIMPLE AI UI</title>
8-
<link rel="stylesheet" href="/static/style.css" />
8+
<link rel="shortcut icon" href="/static/logo/favicon.ico" type="image/x-icon">
9+
link rel="stylesheet" href="/static/style.css" />
910
</head>
1011

1112
<body>
1213
<div class="app-container">
1314
<header>
15+
<img src="/static/logo/icon.png" alt="Icon of Simple AI UI" width="100px">
1416
<h1>SIMPLE AI UI</h1>
1517
<button id="theme-toggle" aria-label="Toggle dark mode" onclick="darkThemeToggle()">🌙</button>
1618
</header>

0 commit comments

Comments
 (0)