diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2fc83b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +# ── Hugo ── +.hugo_build.lock +hugo_stats.json + +# ── macOS ── +.DS_Store +.AppleDouble +.LSOverride +._* +.Spotlight-V100 +.Trashes +Icon? + +# ── Editor / IDE ── +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# ── Docker ── +docker-compose.override.yml + +# ── Misc ── +.env +*.log diff --git a/Dockerfile b/Dockerfile index b0f3a54..0700b03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,15 @@ +# ── Build ── +FROM hugomods/hugo:latest AS builder + +WORKDIR /src +COPY ./hugo/eliaskohout.de . +RUN hugo --minify + +# ── Serve ── FROM alpine:latest WORKDIR /www -COPY www /www +COPY --from=builder /src/public /www RUN apk add --no-cache busybox-extras EXPOSE 80 CMD ["httpd", "-f", "-p", "80", "-h", "/www"] diff --git a/hugo/eliaskohout.de/archetypes/default.md b/hugo/eliaskohout.de/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/hugo/eliaskohout.de/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/hugo/eliaskohout.de/assets/css/style.css b/hugo/eliaskohout.de/assets/css/style.css new file mode 100644 index 0000000..c987e58 --- /dev/null +++ b/hugo/eliaskohout.de/assets/css/style.css @@ -0,0 +1,220 @@ +html, body { + margin: 0; + padding: 0; + height: 100%; + background: #000; + font-family: 'Geist Mono', sans-serif; + color: #fff; +} + +/* ── Background ── */ +.background { + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 0; +} + +svg { + width: 100%; + height: 100%; + filter: blur(1px) brightness(1.2); +} + +.flow-path { + fill: none; + stroke: white; + stroke-width: 1; + stroke-opacity: 0.20; + stroke-dasharray: 1500; + stroke-dashoffset: 0; + animation: flow 12s ease-in-out infinite alternate; +} + +.glow { + stroke-opacity: 0.12; + animation-duration: 18s; +} + +.flow-path:nth-child(3n) { animation-delay: 2s; } +.flow-path:nth-child(4n) { animation-delay: 4s; } + +@keyframes flow { + 0% { stroke-dashoffset: 0; } + 100% { stroke-dashoffset: 3000; } +} + +/* ── Landing Page ── */ +.centered { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + text-align: center; + z-index: 1; +} + +.centered h1 { + font-size: 3.5rem; + margin-bottom: 1.5rem; + letter-spacing: 4px; +} + +.centered nav a { + display: block; + margin: 0.3rem 0; + color: #ccc; + text-decoration: none; + font-size: 1.1rem; +} + +.centered nav a:hover { + color: #ff3c3c; +} + +.nav-label { + display: block; + font-size: 0.7rem; + color: #555; + text-transform: uppercase; + letter-spacing: 2px; + margin-top: 1.2rem; + margin-bottom: 0.3rem; +} + +/* Add an arrow after external links */ +.centered nav a[href^="http"]::after { + content: " ↗"; + font-size: 0.8em; + opacity: 0.5; +} + +/* No arrow for internal links */ +.centered nav a[href^="/"]::after { + content: none; +} + +/* ── Page Content (Projects) ── */ +.page-content { + position: relative; + z-index: 1; + max-width: 800px; + margin: 4rem auto; + padding: 0 2rem; +} + +.page-content h1 { + font-size: 2.5rem; + letter-spacing: 3px; + margin-bottom: 2rem; +} + +/* ── Project Grid ── */ +.project-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); + gap: 1.5rem; +} + +.project-card { + display: block; + border: 1px solid rgba(255, 255, 255, 0.1); + border-radius: 8px; + padding: 1.5rem; + text-decoration: none; + color: #fff; + transition: border-color 0.3s, transform 0.2s; + + background: rgba(255, 255, 255, 0.05); + -webkit-backdrop-filter: blur(12px); + backdrop-filter: blur(12px); +} + +.project-card:hover { + border-color: #ff3c3c; + transform: translateY(-2px); + background: rgba(255, 255, 255, 0.08); +} + +.project-card img { + width: 100%; + border-radius: 4px; + margin-bottom: 1rem; +} + +.project-card h2 { + font-size: 1.3rem; + margin: 0 0 0.5rem 0; +} + +.project-card p { + color: #aaa; + font-size: 0.9rem; + margin: 0.3rem 0; +} + +/* ── Tags ── */ +.tags { + display: flex; + gap: 0.5rem; + flex-wrap: wrap; + margin: 0.5rem 0; +} + +.tag { + background: rgba(255, 255, 255, 0.08); + padding: 0.2rem 0.6rem; + border-radius: 4px; + font-size: 0.8rem; + color: #ccc; +} + +/* ── Project Detail ── */ +.project-links { + margin: 1rem 0 2rem; +} + +.project-links a { + color: #ff3c3c; + text-decoration: none; + margin-right: 1rem; +} + +.project-links a:hover { + text-decoration: underline; +} + +.project-body { + line-height: 1.8; + color: #ddd; +} + +.project-body h2 { + color: #fff; + margin-top: 2rem; + font-size: 1.4rem; +} + +/* ── Back Link ── */ +.back-link { + margin-top: 3rem; +} + +.back-link a { + color: #888; + text-decoration: none; + font-size: 0.9rem; +} + +.back-link a:hover { + color: #ff3c3c; +} + +/* ── Responsive ── */ +@media (max-width: 600px) { + .centered h1 { font-size: 2rem; } + .page-content { margin: 2rem auto; } + .project-grid { grid-template-columns: 1fr; } +} diff --git a/hugo/eliaskohout.de/content/projects/_index.md b/hugo/eliaskohout.de/content/projects/_index.md new file mode 100644 index 0000000..a80a9df --- /dev/null +++ b/hugo/eliaskohout.de/content/projects/_index.md @@ -0,0 +1,3 @@ +--- +title: "Projects" +--- diff --git a/hugo/eliaskohout.de/content/projects/llm-confidence-chat.md b/hugo/eliaskohout.de/content/projects/llm-confidence-chat.md new file mode 100644 index 0000000..db3aaaf --- /dev/null +++ b/hugo/eliaskohout.de/content/projects/llm-confidence-chat.md @@ -0,0 +1,29 @@ +--- +title: "LLM Confidence Chat Interface" +draft: true +date: 2024-06-01 +tags: ["Python", "ML", "Full-Stack"] +summary: "A chat interface making LLM confidence scores accessible to non-technical users." +code: "https://github.com/yourusername/project" +demo: "https://demo.example.com" +--- + +## Problem + +Non-technical users have no way to assess how confident an LLM is in its responses. + +## Approach + +Built an interactive chat interface integrating lm-polygraph for +uncertainty estimation with an intuitive visualization layer. + +## Tech Stack + +- Python, FastAPI +- lm-polygraph +- React + +## Challenges & Learnings + +Translating probabilistic outputs into user-friendly visual indicators +while keeping the interface responsive. diff --git a/hugo/eliaskohout.de/hugo.toml b/hugo/eliaskohout.de/hugo.toml new file mode 100644 index 0000000..829e0d0 --- /dev/null +++ b/hugo/eliaskohout.de/hugo.toml @@ -0,0 +1,18 @@ +baseURL = 'https://eliaskohout.de/' +languageCode = 'de' +title = 'Elias Kohout' + +[params] + description = "Computer Science Student" + +[[params.links]] + name = "[c]rowsnest" + url = "https://c.eliaskohout.de" + +[[params.links]] + name = "[g]itea" + url = "https://g.eliaskohout.de" + +[[params.links]] + name = "[r]ezepte" + url = "https://r.eliaskohout.de" diff --git a/hugo/eliaskohout.de/layouts/_default/baseof.html b/hugo/eliaskohout.de/layouts/_default/baseof.html new file mode 100644 index 0000000..f0fcc98 --- /dev/null +++ b/hugo/eliaskohout.de/layouts/_default/baseof.html @@ -0,0 +1,9 @@ + + + + {{- partial "head.html" . -}} + + + {{ block "main" . }}{{ end }} + + diff --git a/hugo/eliaskohout.de/layouts/_default/list.html b/hugo/eliaskohout.de/layouts/_default/list.html new file mode 100644 index 0000000..cb68a2a --- /dev/null +++ b/hugo/eliaskohout.de/layouts/_default/list.html @@ -0,0 +1,28 @@ +{{ define "main" }} + {{- partial "background.html" . -}} + +
+

{{ .Title }}

+ +
+ {{ range .Pages.ByDate.Reverse }} + + {{ with .Params.image }} + {{ $.Title }} + {{ end }} +

{{ .Title }}

+

+ {{ range .Params.tags }} + {{ . }} + {{ end }} +

+

{{ .Params.summary }}

+
+ {{ end }} +
+ + +
+{{ end }} diff --git a/hugo/eliaskohout.de/layouts/_default/single.html b/hugo/eliaskohout.de/layouts/_default/single.html new file mode 100644 index 0000000..e37b3a7 --- /dev/null +++ b/hugo/eliaskohout.de/layouts/_default/single.html @@ -0,0 +1,26 @@ +{{ define "main" }} + {{- partial "background.html" . -}} + +
+

{{ .Title }}

+ +

+ {{ range .Params.tags }} + {{ . }} + {{ end }} +

+ + + +
+ {{ .Content }} +
+ + +
+{{ end }} diff --git a/hugo/eliaskohout.de/layouts/index.html b/hugo/eliaskohout.de/layouts/index.html new file mode 100644 index 0000000..24ad617 --- /dev/null +++ b/hugo/eliaskohout.de/layouts/index.html @@ -0,0 +1,16 @@ +{{ define "main" }} + {{- partial "background.html" . -}} + +
+

{{ .Site.Title }}

+ +
+{{ end }} diff --git a/hugo/eliaskohout.de/layouts/partials/background.html b/hugo/eliaskohout.de/layouts/partials/background.html new file mode 100644 index 0000000..c9d7485 --- /dev/null +++ b/hugo/eliaskohout.de/layouts/partials/background.html @@ -0,0 +1,22 @@ +
+ + + + + + + + + + + + + + + + + + + + +
diff --git a/hugo/eliaskohout.de/layouts/partials/head.html b/hugo/eliaskohout.de/layouts/partials/head.html new file mode 100644 index 0000000..254df35 --- /dev/null +++ b/hugo/eliaskohout.de/layouts/partials/head.html @@ -0,0 +1,10 @@ + + +{{ .Site.Title }} + + + + + +{{ $style := resources.Get "css/style.css" | minify }} + diff --git a/hugo/eliaskohout.de/public/categories/index.html b/hugo/eliaskohout.de/public/categories/index.html new file mode 100644 index 0000000..61b76d6 --- /dev/null +++ b/hugo/eliaskohout.de/public/categories/index.html @@ -0,0 +1,50 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

Categories

+ +
+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/categories/index.xml b/hugo/eliaskohout.de/public/categories/index.xml new file mode 100644 index 0000000..dde26c0 --- /dev/null +++ b/hugo/eliaskohout.de/public/categories/index.xml @@ -0,0 +1,11 @@ + + + + Categories on Elias Kohout + http://localhost:1313/categories/ + Recent content in Categories on Elias Kohout + Hugo + de + + + diff --git a/hugo/eliaskohout.de/public/css/style.min.css b/hugo/eliaskohout.de/public/css/style.min.css new file mode 100644 index 0000000..b523c72 --- /dev/null +++ b/hugo/eliaskohout.de/public/css/style.min.css @@ -0,0 +1 @@ +html,body{margin:0;padding:0;height:100%;background:#000;font-family:geist mono,sans-serif;color:#fff}.background{position:fixed;width:100%;height:100%;top:0;left:0;z-index:0}svg{width:100%;height:100%;filter:blur(1px)brightness(1.2)}.flow-path{fill:none;stroke:#fff;stroke-width:1;stroke-opacity:.2;stroke-dasharray:1500;stroke-dashoffset:0;animation:flow 12s ease-in-out infinite alternate}.glow{stroke-opacity:.12;animation-duration:18s}.flow-path:nth-child(3n){animation-delay:2s}.flow-path:nth-child(4n){animation-delay:4s}@keyframes flow{0%{stroke-dashoffset:0}100%{stroke-dashoffset:3e3}}.centered{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1}.centered h1{font-size:3.5rem;margin-bottom:1.5rem;letter-spacing:4px}.centered nav a{display:block;margin:.3rem 0;color:#ccc;text-decoration:none;font-size:1.1rem}.centered nav a:hover{color:#ff3c3c}.nav-label{display:block;font-size:.7rem;color:#555;text-transform:uppercase;letter-spacing:2px;margin-top:1.2rem;margin-bottom:.3rem}.centered nav a[href^=http]::after{content:" ↗";font-size:.8em;opacity:.5}.centered nav a[href^="/"]::after{content:none}.page-content{position:relative;z-index:1;max-width:800px;margin:4rem auto;padding:0 2rem}.page-content h1{font-size:2.5rem;letter-spacing:3px;margin-bottom:2rem}.project-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.5rem}.project-card{display:block;border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:1.5rem;text-decoration:none;color:#fff;transition:border-color .3s,transform .2s;background:rgba(255,255,255,5%);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.project-card:hover{border-color:#ff3c3c;transform:translateY(-2px);background:rgba(255,255,255,8%)}.project-card img{width:100%;border-radius:4px;margin-bottom:1rem}.project-card h2{font-size:1.3rem;margin:0 0 .5rem}.project-card p{color:#aaa;font-size:.9rem;margin:.3rem 0}.tags{display:flex;gap:.5rem;flex-wrap:wrap;margin:.5rem 0}.tag{background:rgba(255,255,255,8%);padding:.2rem .6rem;border-radius:4px;font-size:.8rem;color:#ccc}.project-links{margin:1rem 0 2rem}.project-links a{color:#ff3c3c;text-decoration:none;margin-right:1rem}.project-links a:hover{text-decoration:underline}.project-body{line-height:1.8;color:#ddd}.project-body h2{color:#fff;margin-top:2rem;font-size:1.4rem}.back-link{margin-top:3rem}.back-link a{color:#888;text-decoration:none;font-size:.9rem}.back-link a:hover{color:#ff3c3c}@media(max-width:600px){.centered h1{font-size:2rem}.page-content{margin:2rem auto}.project-grid{grid-template-columns:1fr}} \ No newline at end of file diff --git a/hugo/eliaskohout.de/public/index.html b/hugo/eliaskohout.de/public/index.html new file mode 100644 index 0000000..b812625 --- /dev/null +++ b/hugo/eliaskohout.de/public/index.html @@ -0,0 +1,56 @@ + + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

Elias Kohout

+ +
+ + + diff --git a/hugo/eliaskohout.de/public/index.xml b/hugo/eliaskohout.de/public/index.xml new file mode 100644 index 0000000..774552a --- /dev/null +++ b/hugo/eliaskohout.de/public/index.xml @@ -0,0 +1,19 @@ + + + + Elias Kohout + http://localhost:1313/ + Recent content on Elias Kohout + Hugo + de + Sat, 01 Jun 2024 00:00:00 +0000 + + + LLM Confidence Chat Interface + http://localhost:1313/projects/llm-confidence-chat/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/projects/llm-confidence-chat/ + A chat interface making LLM confidence scores accessible to non-technical users. + + + diff --git a/hugo/eliaskohout.de/public/projects/index.html b/hugo/eliaskohout.de/public/projects/index.html new file mode 100644 index 0000000..b0d99eb --- /dev/null +++ b/hugo/eliaskohout.de/public/projects/index.html @@ -0,0 +1,65 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

Projects

+ +
+ + + +

LLM Confidence Chat Interface

+

+ + Python + + ML + + Full-Stack + +

+

A chat interface making LLM confidence scores accessible to non-technical users.

+
+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/projects/index.xml b/hugo/eliaskohout.de/public/projects/index.xml new file mode 100644 index 0000000..05d17b6 --- /dev/null +++ b/hugo/eliaskohout.de/public/projects/index.xml @@ -0,0 +1,19 @@ + + + + Projects on Elias Kohout + http://localhost:1313/projects/ + Recent content in Projects on Elias Kohout + Hugo + de + Sat, 01 Jun 2024 00:00:00 +0000 + + + LLM Confidence Chat Interface + http://localhost:1313/projects/llm-confidence-chat/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/projects/llm-confidence-chat/ + A chat interface making LLM confidence scores accessible to non-technical users. + + + diff --git a/hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html b/hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html new file mode 100644 index 0000000..a498928 --- /dev/null +++ b/hugo/eliaskohout.de/public/projects/llm-confidence-chat/index.html @@ -0,0 +1,79 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

LLM Confidence Chat Interface

+ +

+ + Python + + ML + + Full-Stack + +

+ + + +
+

Problem

+

Non-technical users have no way to assess how confident an LLM is in its responses.

+

Approach

+

Built an interactive chat interface integrating lm-polygraph for +uncertainty estimation with an intuitive visualization layer.

+

Tech Stack

+ +

Challenges & Learnings

+

Translating probabilistic outputs into user-friendly visual indicators +while keeping the interface responsive.

+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/sitemap.xml b/hugo/eliaskohout.de/public/sitemap.xml new file mode 100644 index 0000000..b7ac5df --- /dev/null +++ b/hugo/eliaskohout.de/public/sitemap.xml @@ -0,0 +1,28 @@ + + + + http://localhost:1313/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/tags/full-stack/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/projects/llm-confidence-chat/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/tags/ml/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/projects/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/tags/python/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/tags/ + 2024-06-01T00:00:00+00:00 + + http://localhost:1313/categories/ + + diff --git a/hugo/eliaskohout.de/public/tags/full-stack/index.html b/hugo/eliaskohout.de/public/tags/full-stack/index.html new file mode 100644 index 0000000..25d9589 --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/full-stack/index.html @@ -0,0 +1,67 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

Full-Stack

+ +
+ + + + Full-Stack + +

LLM Confidence Chat Interface

+

+ + Python + + ML + + Full-Stack + +

+

A chat interface making LLM confidence scores accessible to non-technical users.

+
+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/tags/full-stack/index.xml b/hugo/eliaskohout.de/public/tags/full-stack/index.xml new file mode 100644 index 0000000..bce8e69 --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/full-stack/index.xml @@ -0,0 +1,19 @@ + + + + Full-Stack on Elias Kohout + http://localhost:1313/tags/full-stack/ + Recent content in Full-Stack on Elias Kohout + Hugo + de + Sat, 01 Jun 2024 00:00:00 +0000 + + + LLM Confidence Chat Interface + http://localhost:1313/projects/llm-confidence-chat/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/projects/llm-confidence-chat/ + A chat interface making LLM confidence scores accessible to non-technical users. + + + diff --git a/hugo/eliaskohout.de/public/tags/index.html b/hugo/eliaskohout.de/public/tags/index.html new file mode 100644 index 0000000..d8d9556 --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/index.html @@ -0,0 +1,77 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

Tags

+ +
+ + + +

Python

+

+ +

+

+
+ + + +

ML

+

+ +

+

+
+ + + +

Full-Stack

+

+ +

+

+
+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/tags/index.xml b/hugo/eliaskohout.de/public/tags/index.xml new file mode 100644 index 0000000..19f9bfe --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/index.xml @@ -0,0 +1,33 @@ + + + + Tags on Elias Kohout + http://localhost:1313/tags/ + Recent content in Tags on Elias Kohout + Hugo + de + Sat, 01 Jun 2024 00:00:00 +0000 + + + Full-Stack + http://localhost:1313/tags/full-stack/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/tags/full-stack/ + + + + ML + http://localhost:1313/tags/ml/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/tags/ml/ + + + + Python + http://localhost:1313/tags/python/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/tags/python/ + + + + diff --git a/hugo/eliaskohout.de/public/tags/ml/index.html b/hugo/eliaskohout.de/public/tags/ml/index.html new file mode 100644 index 0000000..e44b1c9 --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/ml/index.html @@ -0,0 +1,67 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

ML

+ +
+ + + + ML + +

LLM Confidence Chat Interface

+

+ + Python + + ML + + Full-Stack + +

+

A chat interface making LLM confidence scores accessible to non-technical users.

+
+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/tags/ml/index.xml b/hugo/eliaskohout.de/public/tags/ml/index.xml new file mode 100644 index 0000000..bf07c75 --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/ml/index.xml @@ -0,0 +1,19 @@ + + + + ML on Elias Kohout + http://localhost:1313/tags/ml/ + Recent content in ML on Elias Kohout + Hugo + de + Sat, 01 Jun 2024 00:00:00 +0000 + + + LLM Confidence Chat Interface + http://localhost:1313/projects/llm-confidence-chat/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/projects/llm-confidence-chat/ + A chat interface making LLM confidence scores accessible to non-technical users. + + + diff --git a/hugo/eliaskohout.de/public/tags/python/index.html b/hugo/eliaskohout.de/public/tags/python/index.html new file mode 100644 index 0000000..46717c9 --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/python/index.html @@ -0,0 +1,67 @@ + + + + +Elias Kohout + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+
+

Python

+ +
+ + + + Python + +

LLM Confidence Chat Interface

+

+ + Python + + ML + + Full-Stack + +

+

A chat interface making LLM confidence scores accessible to non-technical users.

+
+ +
+ + +
+ + + diff --git a/hugo/eliaskohout.de/public/tags/python/index.xml b/hugo/eliaskohout.de/public/tags/python/index.xml new file mode 100644 index 0000000..ea861de --- /dev/null +++ b/hugo/eliaskohout.de/public/tags/python/index.xml @@ -0,0 +1,19 @@ + + + + Python on Elias Kohout + http://localhost:1313/tags/python/ + Recent content in Python on Elias Kohout + Hugo + de + Sat, 01 Jun 2024 00:00:00 +0000 + + + LLM Confidence Chat Interface + http://localhost:1313/projects/llm-confidence-chat/ + Sat, 01 Jun 2024 00:00:00 +0000 + http://localhost:1313/projects/llm-confidence-chat/ + A chat interface making LLM confidence scores accessible to non-technical users. + + + diff --git a/www/index.html b/www/index.html deleted file mode 100644 index 56251f6..0000000 --- a/www/index.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - Elias Kohout - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - -
- -
-

Elias Kohout

- -
- - - -