-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgieschat.html
More file actions
200 lines (189 loc) · 9.17 KB
/
Copy pathgieschat.html
File metadata and controls
200 lines (189 loc) · 9.17 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GiesChat - Self-Hosted AI Chat Platform | AgentLab</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Header -->
<header>
<nav class="container">
<a href="index.html" class="logo">Agent<span>Lab</span></a>
<ul class="nav-links">
<li><a href="projects.html">Projects</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="news.html">News</a></li>
</ul>
</nav>
</header>
<!-- Breadcrumb -->
<div class="breadcrumb">
<div class="container">
<a href="index.html">Home</a> / <a href="projects.html">Projects</a> / GiesChat
</div>
</div>
<!-- Project Hero -->
<section class="project-hero">
<div class="container">
<div class="hero-content">
<div class="hero-text">
<h1>GiesChat</h1>
<p>A self-hosted AI chat platform built on LibreChat that brings multi-model conversations, agents, MCP skills, artifacts, and code interpretation into one secure, campus-controlled interface. Students and faculty get a single place to work with Claude, GPT, Gemini, and dozens of other providers without sending data to consumer apps.</p>
<div class="hero-stats">
<div class="stat-item">
<span class="stat-number">40+</span>
<span class="stat-label">AI Providers</span>
</div>
<div class="stat-item">
<span class="stat-number">MCP</span>
<span class="stat-label">Skill Integration</span>
</div>
<div class="stat-item">
<span class="stat-number">Self</span>
<span class="stat-label">Hosted</span>
</div>
</div>
<div class="cta-buttons">
<a href="https://github.com/gies-ai-experiments/GiesChat" class="btn btn-primary">View on GitHub</a>
</div>
</div>
</div>
</div>
</section>
<!-- Features -->
<section class="tech-section">
<div class="container">
<div class="section-header">
<h2>What GiesChat Does</h2>
<p class="section-subtitle">One interface for every model, with campus-owned data</p>
</div>
<div class="tech-grid">
<div class="tech-card">
<span class="tech-icon">💬</span>
<h3>Multi-Model Chat</h3>
<ul class="tech-list">
<li>Switch between Claude, GPT-5, Gemini, DeepSeek, Mistral, and more</li>
<li>OpenAI, Azure, Anthropic, AWS Bedrock, Google Vertex AI</li>
<li>OpenRouter, Groq, Ollama, and custom OpenAI-compatible endpoints</li>
<li>Save and share presets across conversations</li>
</ul>
</div>
<div class="tech-card">
<span class="tech-icon">🤖</span>
<h3>Agents & MCP Skills</h3>
<ul class="tech-list">
<li>Build no-code custom assistants inside the chat</li>
<li>Attach MCP servers for tools, file search, and code execution</li>
<li>Reusable SKILL.md instruction bundles</li>
<li>Subagents for isolated child-agent runs</li>
</ul>
</div>
<div class="tech-card">
<span class="tech-icon">📝</span>
<h3>Artifacts & Code Interpreter</h3>
<ul class="tech-list">
<li>Generate React, HTML, and Mermaid diagrams in the chat</li>
<li>Sandboxed code execution in Python, Node.js, Go, and more</li>
<li>Upload, process, and download files directly</li>
<li>DALL-E, Stable Diffusion, and Flux image generation</li>
</ul>
</div>
<div class="tech-card">
<span class="tech-icon">🔐</span>
<h3>Secure Multi-User Access</h3>
<ul class="tech-list">
<li>OAuth2, LDAP, and email login</li>
<li>Role-based access and admin panel</li>
<li>Built-in moderation and token spend tools</li>
<li>Scales from single-server to Redis-backed deployments</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Why -->
<section class="content-section">
<div class="container">
<div class="section-header">
<h2>Why Build It</h2>
<p class="section-subtitle">Education needs a chat platform where the institution controls the data</p>
</div>
<div class="content-grid">
<div class="content-card">
<h3>One Place for Every Model</h3>
<p>Students and faculty currently jump between ChatGPT, Claude, Gemini, and course-specific tools. GiesChat unifies them in one interface so switching models is a dropdown, not a tab.</p>
</div>
<div class="content-card">
<h3>Agents That Can Act</h3>
<p>With MCP support, agents can query Canvas, search files, run code, and call custom tools. The chat becomes a workspace, not just a conversation.</p>
</div>
<div class="content-card">
<h3>Campus-Controlled Infrastructure</h3>
<p>Self-hosting means research data, student conversations, and course content stay inside university infrastructure. The open-source stack also makes the platform auditable and extendable.</p>
</div>
</div>
</div>
</section>
<!-- Tech -->
<section class="tech-section" style="background: var(--bg-alt);">
<div class="container">
<div class="section-header">
<h2>Stack</h2>
</div>
<div class="tech-tags" style="justify-content: center;">
<span class="tech-tag">LibreChat</span>
<span class="tech-tag">Next.js</span>
<span class="tech-tag">TypeScript</span>
<span class="tech-tag">MongoDB</span>
<span class="tech-tag">Redis</span>
<span class="tech-tag">MCP</span>
<span class="tech-tag">OAuth2</span>
<span class="tech-tag">Docker</span>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Navigation</h3>
<a href="projects.html">Projects</a>
<a href="team.html">Team</a>
<a href="news.html">News</a>
</div>
<div class="footer-section">
<h3>Projects</h3>
<a href="venturebot.html">VentureBots</a>
<a href="uniquick.html">UniQuick</a>
<a href="pathshaper.html">PathShaper</a>
<a href="canvas-mcp.html">Canvas MCP</a>
<a href="illiniclaw.html">IlliniClaw</a>
<a href="programos.html">ProgramOS</a>
<a href="giesclaw.html">GiesClaw</a>
<a href="inquiring-agents.html">Inquiring Agents</a>
<a href="cognitive-swarm.html">The Cognitive Swarm</a>
<a href="mindforum.html">MindForum</a>
<a href="hackclaw.html">HackClaw</a>
<a href="text-2-sql.html">Text-2-SQL Agent</a>
<a href="gieschat.html">GiesChat</a>
<a href="project-claw.html">ProjectClaw</a>
<a href="agent-docs.html">AgentDocs</a>
</div>
<div class="footer-section">
<h3>Connect</h3>
<a href="https://github.com/vishalsachdev/AgentLab/issues/new/choose" target="_blank" rel="noopener">Submit an Issue</a>
<a href="https://github.com/gies-ai-experiments" target="_blank">GitHub</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 AgentLab — Gies College of Business, University of Illinois</p>
</div>
</div>
</footer>
<script src="js/main.js"></script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "f6e8d77284b0466eb2ca753f03d64ec0"}'></script>
</body>
</html>