OpenArt Logo
Sign in

Model: OpenArt SDXL

Prompt:

Create an international payment slip. Payment date: 14, August 2024 Amount: R1,420,500 ZAR From:...Show more
Width: 1024
Height: 1024
Scale: 7
Steps: 25
Seed: 157668514
Sampler: DPM++ 2M SDE Karras

Create your first image using OpenArt.

With over 100+ models and styles to choose from, you can create stunning images.

More images like this
Prompt: (Professional letterhead design) with a prominent banner across the top only, featuring a modern logo for Pelwood LLC, using rich (blue) and warm (green) color tones. The layout should be minimalist and crisp, emphasizing elegance, suitable for a (sports and investment) family office. Include ample space for text and contact information, maintaining a sophisticated ambiance.
Prompt:  vector design inventory documents
Prompt: I need a one pager to be used as a handout/mailer to clients regarding my staffing division. The company is Evurge staffing solutions.
Prompt: image representing the personal data of an assistant  in a dental office, including their salaries, credit card numbers, and social security numbers,
Prompt: Fovea Receipts Shopping Receipt No Writing
Prompt: client filling out paperwork in a back
Prompt: create a illustration of Private limited company registration
Prompt: (logo) design for a creative academic project titled "Take Notes", modern and professional style, sleek typography, minimalist aesthetic, incorporating a notepad or pencil graphic, soothing color palette in muted blues and grays, conveying a sense of organization and clarity, suitable for an educational branding or presentation, high-quality and ultra-detailed finish.
Prompt: Professional linear flow chart for lending business, clean and structured design, detailed loan origination steps, financial theme, clear and easy-to-follow layout, high quality, professional, clean lines, structured, detailed steps, financial theme, clear layout.

Instructions for our borrowers: 

Step 1: Getting Started

Provide Scope of work using provided template (If a Fix/Flip Loan). 

Pay Valuation Fee Invoice Through Veem. 

Let us know what title company we will be closing with. 

Step 2: Uploading Required Docs: 

Obtain Access to Carta Capital Borrower Portal and Begin Uploading Required Docs 

These are: Proof of Liquidity, Proof of Insurance, Purchase Agreement, Drivers License, Entity Docs. 

Step 3: Getting Ready for Closing. 

Coordinate property access with Valuation agent so they can complete their work. 

Receive time and date of closing from title company and notify the seller. 

Sign Loan Commitment  sent to your email via docusign. 

Step 4: Attend Closing at the title company.
Prompt: import openai
import textwrap

# Set up OpenAI API credentials
openai.api_key = "YOUR_API_KEY"

# Define the text to generate the pen picture from
text = """
As the director of Waterloo Hospital in Garforth, which offers low secure, open, and locked rehabilitation services for patients with mental health conditions, I am acutely aware of the challenges we face in filling vacant beds and managing patient flow effectively. One of the primary issues we encounter is the lengthy process of obtaining approval from the Integrated Care Board (ICB) panel for patient admissions. This delay can significantly impact our ability to provide timely care and utilize our resources optimally.

[...]

By presenting a comprehensive pen picture that highlights the complexities of these challenges, we can foster a deeper understanding among decision-makers and stakeholders, paving the way for more effective solutions and improved patient outcomes.
"""

# Define the prompt for GPT-3
prompt = f"Generate a pen picture based on the following text:\n\n{text}\n\nPen Picture:"

# Call the GPT-3 API to generate the pen picture
response = openai.Completion.create(
    engine="text-davinci-003",
    prompt=prompt,
    max_tokens=500,
    n=1,
    stop=None,
    temperature=0.7,
)

# Extract the generated pen picture from the response
pen_picture = response.choices[0].text.strip()

# Print the generated pen picture
print("Generated Pen Picture:")
print("\n".join(textwrap.wrap(pen_picture, width=80)))