kopyl

Untitled

Dec 8th, 2023
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. message = """If you can't see the image or can't help me, write </noimage>
  2. Use up to 10 words
  3. Start with "icon of..."
  4. """
  5.  
  6. client.chat.completions.create(
  7.   model="gpt-4-vision-preview",
  8.   messages=[
  9.     {"role": "system", "content": "write prompts for icons"},
  10.     {
  11.         'role': 'user',
  12.         'content': [
  13.             {
  14.                 'type': 'text',
  15.                 'text': message,
  16.             },
  17.             {"image": base64_image}
  18.         ],
  19.     },
  20.   ],
  21.   max_tokens=30,
  22.   temperature=0,
  23. )
Add Comment
Please, Sign In to add comment