-
Thanks a lot for your documentation on open-webui and getting trace in langfuse through pipeline Nevertheless I would like to have advice from your team on how we could make a binding with your 'prompt management systems The possible idea will be to define prompt, version and life cycle in langfuse and to allow to use those prompt directly in open webui. See Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Langfuse provides REST API endpoints that can be used to retrieve prompts by their name or version. You can use the following endpoints:
These endpoints can help you integrate Langfuse's prompt management system with OpenWebUI by allowing you to define and manage prompts, versions, and their lifecycle in Langfuse, and then use them directly in OpenWebUI. For more detailed integration, you can refer to the example code for using Langfuse prompts in external applications like OpenWebUI, available in the Langfuse pipeline at this GitHub URL: langfuse_filter_pipeline.py [2]. |
Beta Was this translation helpful? Give feedback.
Langfuse provides REST API endpoints that can be used to retrieve prompts by their name or version. You can use the following endpoints:
GET /api/public/v2/prompts
to fetch all prompts.GET /api/public/v2/prompts/{promptName}
to fetch a specific prompt by name [1].These endpoints can help you integrate Langfuse's prompt management system with OpenWebUI by allowing you to define and manage prompts, versions, and their lifecycle in Langfuse, and then use them directly in OpenWebUI.
For more detailed integration, you can refer to the example code for using Langfuse prompts in external applications like OpenWebUI, available in the Langfuse pipeline at this GitHub URL: langfuse_filter_pipe…