-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Tim edited this page Oct 14, 2024
·
4 revisions
A prompt engineering solution to manage Gen AI prompts easily.
- Self-hosted option with full control over data
- Dockerized for easy deployment
- RESTful API for easy integration
- With SDK for Python and Node.js.
- API Key management through centralized UI
- Prompt Management through centralized UI
- Variants
- Versioning (database level)
- Start the service locally
docker-compose up --build
- Access the at
http://localhost:3000
- Default login credentials (this could be set in docker compose file, please do not use default credentials in production)
- email:
admin@localhost.lan
- password:
AwesomePromptsManagement
- email:
- Create a prompt at
http://localhost:3000/prompt
- Create an API key at
http://localhost:3000/key
- Get your prompts with ease through RESTful API
curl "http://localhost:3000/api/bff/api/sdk/prompt/{prompt-key}" \
-H 'Authorization: Bearer {api-key}' \
-H 'Content-Type: application/json; charset=utf-8'
- Or Get prompts through SDK
We have deployed a Demo Instance
- Please note the data may not be persisted and will be deleted scheduledly.
Please feel free to open an issue or PR for any feature requests or bug reports.