Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
ecb4d1b8
"...text-generation-inference.git" did not exist on "74d3ce106e470cc9260736c6574a43874d9f60f6"
Commit
ecb4d1b8
authored
Oct 18, 2023
by
Timothy J. Baek
Browse files
endpoint error fix
parent
c5e36c8d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
14 deletions
+16
-14
src/lib/contants.ts
src/lib/contants.ts
+5
-8
src/routes/+page.server.ts
src/routes/+page.server.ts
+11
-6
No files found.
src/lib/contants.ts
View file @
ecb4d1b8
import
{
browser
,
dev
}
from
'
$app/environment
'
;
import
{
browser
,
dev
}
from
'
$app/environment
'
;
export
const
ENDPOINT
=
export
const
ENDPOINT
=
browser
process
.
env
.
OLLAMA_ENDPOINT
!=
undefined
?
`http://
${
location
.
hostname
}
:11434`
?
process
.
env
.
OLLAMA_ENDPOINT
:
dev
:
browser
?
'
http://127.0.0.1:11434
'
?
`http://
${
location
.
hostname
}
:11434`
:
'
http://host.docker.internal:11434
'
;
:
dev
?
'
http://127.0.0.1:11434
'
:
'
http://host.docker.internal:11434
'
;
src/routes/+page.server.ts
View file @
ecb4d1b8
...
@@ -2,13 +2,18 @@ import { ENDPOINT } from '$lib/contants';
...
@@ -2,13 +2,18 @@ import { ENDPOINT } from '$lib/contants';
import
type
{
PageServerLoad
}
from
'
./$types
'
;
import
type
{
PageServerLoad
}
from
'
./$types
'
;
export
const
load
:
PageServerLoad
=
async
({
url
})
=>
{
export
const
load
:
PageServerLoad
=
async
({
url
})
=>
{
const
models
=
await
fetch
(
`
${
ENDPOINT
}
/api/tags`
,
{
const
OLLAMA_ENDPOINT
=
process
.
env
.
OLLAMA_ENDPOINT
;
method
:
'
GET
'
,
console
.
log
(
OLLAMA_ENDPOINT
);
headers
:
{
const
models
=
await
fetch
(
Accept
:
'
application/json
'
,
`
${
OLLAMA_ENDPOINT
!=
undefined
?
OLLAMA_ENDPOINT
:
ENDPOINT
}
/api/tags`
,
'
Content-Type
'
:
'
application/json
'
{
method
:
'
GET
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
}
}
}
}
)
)
.
then
(
async
(
res
)
=>
{
.
then
(
async
(
res
)
=>
{
if
(
!
res
.
ok
)
throw
await
res
.
json
();
if
(
!
res
.
ok
)
throw
await
res
.
json
();
return
res
.
json
();
return
res
.
json
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment