Skip to content

Commit 8f0292c

Browse files
authored
Merge branch 'kercre123:main' into llm-empty-response-fix
2 parents 1928b09 + c72ac94 commit 8f0292c

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

chipper/webroot/js/initial.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ function sendSetupInfo() {
6363
});
6464
}, 500);
6565
} else if (response.includes("vosk")) {
66-
initWeatherAPIKey();
66+
console.log(response)
67+
setConn();
6768
} else if (response.includes("error")) {
6869
updateSetupStatus(response);
6970
document.getElementById("config-options").style.display = "block";

chipper/webroot/sdkapp/settings.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ <h2 style="margin-bottom:0px;">Set Time Zone</h2>
342342
<option value="America/Argentina/Buenos_Aires">America/Argentina/Buenos_Aires</option>
343343
<option value="America/Santiago">America/Santiago</option>
344344
<option value="America/Sao_Paulo">America/Sao_Paulo</option>
345+
<option value="America/Halifax">America/Halifax</option>
345346
<option value="America/St_Johns">America/St_Johns</option>
346347
<option value="GMT">GMT</option>
347348
<option value="Europe/Lisbon">Europe/Lisbon</option>

vector-cloud/build/vic-cloud

-1.61 KB
Binary file not shown.

vector-cloud/cloud/main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import (
1818
"github.com/digital-dream-labs/vector-cloud/internal/ipc"
1919
"github.com/digital-dream-labs/vector-cloud/internal/jdocs"
2020
"github.com/digital-dream-labs/vector-cloud/internal/log"
21-
"github.com/digital-dream-labs/vector-cloud/internal/logcollector"
2221
"github.com/digital-dream-labs/vector-cloud/internal/robot"
2322
"github.com/digital-dream-labs/vector-cloud/internal/token"
2423
"github.com/digital-dream-labs/vector-cloud/internal/voice"
@@ -145,7 +144,7 @@ func main() {
145144
ms := flag.Bool("ms", false, "force microsoft handling on the server end")
146145
lex := flag.Bool("lex", false, "force amazon handling on the server end")
147146

148-
awsRegion := flag.String("region", "us-west-2", "AWS Region")
147+
//awsRegion := flag.String("region", "us-west-2", "AWS Region")
149148

150149
flag.Parse()
151150

@@ -207,11 +206,12 @@ func main() {
207206
options = append(options, cloudproc.WithTokenOptions(tokenOpts...))
208207
options = append(options, cloudproc.WithJdocs(jdocs.WithServer()))
209208

210-
logcollectorOpts := []logcollector.Option{logcollector.WithServer()}
211-
logcollectorOpts = append(logcollectorOpts, logcollector.WithHTTPClient(getHTTPClient()))
212-
logcollectorOpts = append(logcollectorOpts, logcollector.WithS3UrlPrefix(config.Env.LogFiles))
213-
logcollectorOpts = append(logcollectorOpts, logcollector.WithAwsRegion(*awsRegion))
214-
options = append(options, cloudproc.WithLogCollectorOptions(logcollectorOpts...))
209+
// disable the STUPID log collector. holy shit
210+
// logcollectorOpts := []logcollector.Option{logcollector.WithServer()}
211+
// logcollectorOpts = append(logcollectorOpts, logcollector.WithHTTPClient(getHTTPClient()))
212+
// logcollectorOpts = append(logcollectorOpts, logcollector.WithS3UrlPrefix(config.Env.LogFiles))
213+
// logcollectorOpts = append(logcollectorOpts, logcollector.WithAwsRegion(*awsRegion))
214+
//options = append(options, cloudproc.WithLogCollectorOptions(logcollectorOpts...))
215215

216216
cloudproc.Run(context.Background(), options...)
217217

0 commit comments

Comments
 (0)