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
568ce38f
Commit
568ce38f
authored
Oct 08, 2023
by
Timothy J. Baek
Browse files
endpoint address updated
parent
c4413a7a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
package.json
package.json
+2
-2
src/lib/contants.ts
src/lib/contants.ts
+3
-3
src/routes/+page.server.ts
src/routes/+page.server.ts
+1
-1
No files found.
package.json
View file @
568ce38f
...
...
@@ -3,7 +3,7 @@
"version"
:
"0.0.1"
,
"private"
:
true
,
"scripts"
:
{
"dev"
:
"vite dev"
,
"dev"
:
"vite dev
--host
"
,
"build"
:
"vite build"
,
"preview"
:
"vite preview"
,
"check"
:
"svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
,
...
...
src/lib/contants.ts
View file @
568ce38f
import
{
browser
,
dev
}
from
'
$app/environment
'
;
export
const
ENDPOINT
=
dev
?
'
http://
127.0.0.1
:11434
'
:
browser
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 @
568ce38f
import
{
ENDPOINT
}
from
'
$lib/contants
'
;
import
type
{
PageServerLoad
}
from
'
./$types
'
;
export
const
load
:
PageServerLoad
=
async
({
url
,
fetch
})
=>
{
export
const
load
:
PageServerLoad
=
async
({
url
})
=>
{
const
models
=
await
fetch
(
`
${
ENDPOINT
}
/api/tags`
,
{
method
:
'
GET
'
,
headers
:
{
...
...
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