Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/pkg/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (c *Controller) Start() error {
time.Sleep(10 * time.Second)
err := c.loop(c.Ctx)
if err != nil {
log.Error().Msgf("Lilypad error in controller loop: %s", err.Error())
log.Error().Msgf("Helix error in controller loop: %s", err.Error())
debug.PrintStack()
}
}
Expand Down
2 changes: 1 addition & 1 deletion api/pkg/server/keycloak.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

const CLIENT_ID = "api"
const REALM = "lilypad"
const REALM = "helix"

type keycloak struct {
gocloak *gocloak.GoCloak // keycloak client
Expand Down
2 changes: 1 addition & 1 deletion api/pkg/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type ServerOptions struct {
// and we need to add a route to view files based on their path
// we are assuming all file storage is open right now
// so we just deep link to the object path and don't apply auth
// (this is so lilypad nodes can see files)
// (this is so helix nodes can see files)
// later, we might add a token to the URLs
LocalFilestorePath string
}
Expand Down
Binary file added frontend/assets/img/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/assets/img/helix-text-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/assets/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/assets/img/mistral.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/assets/img/sdxl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/assets/img/servers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/assets/img/typing.mp4
Binary file not shown.
5 changes: 3 additions & 2 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="DaggerGPT"
content="Helix"
/>
<link rel="icon" href="/img/logo.png">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link href="https://fonts.cdnfonts.com/css/open-sauce-one" rel="stylesheet">
<script src="https://kit.fontawesome.com/6f1ee88ecc.js" crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/file-icon-vectors@1.0.0/dist/file-icon-vivid.min.css" />
<title>DaggerGPT</title>
<title>Helix</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/contexts/account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
ISession,
} from '../types'

const REALM = 'lilypad'
const REALM = 'helix'
const KEYCLOAK_URL = '/auth/'
const CLIENT_ID = 'frontend'

Expand Down
2 changes: 0 additions & 2 deletions frontend/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import React from "react"
import ReactDOM from "react-dom"
import App from "./App"
import CssBaseline from "@mui/material/CssBaseline"

let render = () => {
ReactDOM.render(
<>
<CssBaseline />
<App />
</>,
document.getElementById("root")
Expand Down
Loading