FAST Jo
FAST Jo
LLangfuse
Created by patrick2 on 1/11/2024 in #get-support
LCEL Batch
Well LCEL with the invoke method works though... 😀 chain.invoke(question, config={"callbacks": [langfuse_handler]})
6 replies
LLangfuse
Created by FAST Jo on 1/11/2024 in #self-host-discussion
Self host without docker
No I haven't tried anything in this regard yet. I was very happy with the docker deployment but I'm in discussion with our hardware guys about how to deploy it on the machine we have in mind. It will be basicly a gentoo server with some other software running on it. With the quick how to I can see how it might work without docker. Thanks a lot!
4 replies
LLangfuse
Created by FAST Jo on 11/14/2023 in #get-support
Hey Guys,
sure thing!
6 replies
LLangfuse
Created by FAST Jo on 11/14/2023 in #get-support
Hey Guys,
Also I'm not sure if this is the correct channel for questions/suggestions like these. If thats true, please redirect me to the right place 🙂
6 replies
LLangfuse
Created by FAST Jo on 11/14/2023 in #get-support
Hey Guys,
No description
6 replies
LLangfuse
Created by FAST Jo on 11/8/2023 in #self-host-discussion
Postgres Migration Problem
Hey I found a solution! The problem was, that the database could'nt be seen by the container. I needed to replace the 'localhost' with docker.host.internal in my database connection string.
docker run --name langfuse \
-e DATABASE_URL=postgresql://USER:PW@host.docker.internal:5432 \
-e NEXTAUTH_URL=http://localhost:3000 \
-e NEXTAUTH_SECRET=mysecret \
-e SALT=mysalt \
-p 3000:3000 \
-a STDOUT \
ghcr.io/langfuse/langfuse:latest
docker run --name langfuse \
-e DATABASE_URL=postgresql://USER:PW@host.docker.internal:5432 \
-e NEXTAUTH_URL=http://localhost:3000 \
-e NEXTAUTH_SECRET=mysecret \
-e SALT=mysalt \
-p 3000:3000 \
-a STDOUT \
ghcr.io/langfuse/langfuse:latest
15 replies
LLangfuse
Created by FAST Jo on 11/8/2023 in #self-host-discussion
Postgres Migration Problem
Pps. Now I tried to build the container myself as described in https://langfuse.com/docs/deployment/local Set Up works buitiful but then the Log In Page appears. Not very suprisingly, my langfuse credentials don't work (since I'm running it local), I guess the password would be the one I set in the docker_compose as NEXTAUTH_SECRET= XXXX But which user does the password belong to
15 replies
LLangfuse
Created by FAST Jo on 11/8/2023 in #self-host-discussion
Postgres Migration Problem
and the database url is verified by running it with psql "postgresql://postgres:xxxx@localhost:5432" -> postgres=#
15 replies
LLangfuse
Created by FAST Jo on 11/8/2023 in #self-host-discussion
Postgres Migration Problem
Ps. I'm running this docker command: docker run --name langfuse \ -e DATABASE_URL=postgresql://postgres:XXXX@localhost:5432 \ -e NEXTAUTH_URL=http://localhost:3000 \ -e NEXTAUTH_SECRET=XXXX= \ -e SALT=mysalt \ -p 3000:3000 \ -a STDOUT
15 replies