Flux-Logo-Design / README.md
insideman's picture
Update README.md
6a3ed63 verified
|
raw
history blame
592 Bytes
# Flux Logo Design Model
This is a logo design model based on Flux with image enhancement capabilities.
## Model Details
- Model Type: Flux
- Task: Text-to-Image
- Use Case: Logo Generation
## Usage
```python
import requests
API_URL = "https://api-inference.huggingface.co/models/insideman/Flux-Logo-Design"
headers = {"Authorization": "Bearer YOUR_API_KEY"}
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.content
# Example usage
image_bytes = query({
"inputs": "logo, Minimalist, A bunch of grapes and a wine glass",
})