No project description provided
Project description
Flow Prompt
Introduction
Flow Prompt is a dynamic, all-in-one library designed for managing and optimizing prompts for large language models (LLMs) in production and R&D settings. It facilitates budget-aware operations, dynamic data integration, latency and cost metrics visibility, and efficient load distribution across multiple AI models.
Features
- Dynamic Prompt Development: Avoid budget exceptions with dynamic data.
- Multi-Model Support: Seamlessly integrate with various LLMs like OpenAI, Anthropic, and more.
- Real-Time Insights: Monitor interactions, request/response metrics in production.
- Prompt Testing and Evolution: Quickly test and iterate on prompts using historical data.
Installation
Install Flow Prompt using pip:
pip install flow-prompt
Authentication
OpenAI Keys
# setting as os.env
os.setenv('OPENAI_API_KEY', 'your_key_here')
# or creating flow_prompt obj
FlowPrompt(openai_api_key="your_key", openai_org="your_org")
Azure Keys
Add Azure keys to accommodate multiple realms:
# setting as os.env
os.setenv('AZURE_KEYS', '{"name_realm":{"url": "https://baseurl.azure.com/","key": "secret"}}')
# or creating flow_prompt obj
FlowPrompt(azure_keys={"realm_name":{"url": "https://baseurl.azure.com/", "key": "your_secret"}})
FlowPrompt Keys
Obtain an API token from Flow Prompt and add it:
# As an environment variable:
os.setenv('FLOW_PROMPT_API_TOKEN', 'your_token_here')
# Via code:
FlowPrompt(api_token='your_api_token')
Usage Examples:
from flow_prompt import FlowPrompt, PipePrompt
# Initialize and configure FlowPrompt
flow = FlowPrompt(api_key='your_api_key', org='your_org')
# Create a prompt
prompt = PipePrompt('greet_user')
prompt.add("Hello {name}", role="system")
# Call AI model with FlowPrompt
context = {"name": "John Doe"}
response = flow.call(prompt.id, context)
print(response.content)
For more examples, visit Flow Prompt Usage Documentation.
Best Security Practices
For production environments, it is recommended to store secrets securely and not directly in your codebase. Consider using a secret management service or encrypted environment variables.
Contributing
We welcome contributions! Please see our Contribution Guidelines for more information on how to get involved.
License
This project is licensed under the Apache2.0 License - see the LICENSE file for details.
Contact
For support or contributions, please contact us via GitHub Issues.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for flow_prompt-0.1.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b38bead27096fe8914827785906596bf6a78e17b20b4866acf344862bd12ee39 |
|
MD5 | 65fac2c0c4e62865eb435280c4d81345 |
|
BLAKE2b-256 | eb42218116857e382119ce952bcd3ed09e90ac118bd620753518d3551837052c |