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
89399f1a
Unverified
Commit
89399f1a
authored
Oct 18, 2023
by
Timothy Jaeryang Baek
Committed by
GitHub
Oct 18, 2023
Browse files
Merge pull request #3 from ollama-webui/main
endpoint error fix
parents
c5e36c8d
ecb4d1b8
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 @
89399f1a
import
{
browser
,
dev
}
from
'
$app/environment
'
;
export
const
ENDPOINT
=
process
.
env
.
OLLAMA_ENDPOINT
!=
undefined
?
process
.
env
.
OLLAMA_ENDPOINT
:
browser
?
`http://
${
location
.
hostname
}
:11434`
:
dev
?
'
http://127.0.0.1:11434
'
:
'
http://host.docker.internal:11434
'
;
export
const
ENDPOINT
=
browser
?
`http://
${
location
.
hostname
}
:11434`
:
dev
?
'
http://127.0.0.1:11434
'
:
'
http://host.docker.internal:11434
'
;
src/routes/+page.server.ts
View file @
89399f1a
...
...
@@ -2,13 +2,18 @@ import { ENDPOINT } from '$lib/contants';
import
type
{
PageServerLoad
}
from
'
./$types
'
;
export
const
load
:
PageServerLoad
=
async
({
url
})
=>
{
const
models
=
await
fetch
(
`
${
ENDPOINT
}
/api/tags`
,
{
method
:
'
GET
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
const
OLLAMA_ENDPOINT
=
process
.
env
.
OLLAMA_ENDPOINT
;
console
.
log
(
OLLAMA_ENDPOINT
);
const
models
=
await
fetch
(
`
${
OLLAMA_ENDPOINT
!=
undefined
?
OLLAMA_ENDPOINT
:
ENDPOINT
}
/api/tags`
,
{
method
:
'
GET
'
,
headers
:
{
Accept
:
'
application/json
'
,
'
Content-Type
'
:
'
application/json
'
}
}
}
)
)
.
then
(
async
(
res
)
=>
{
if
(
!
res
.
ok
)
throw
await
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