Thu, 09 Jul 26
- Three new models released: Sol, Terra, and Luna
- Sol: most powerful, built for hard agentic workflows
- Terra: faster, for everyday workflows
- Luna: fastest and most affordable, for high-volume work
Thu, 09 Jul 26
[Single imperative sentence. e.g. "Add pagination to the GET /users endpoint."]
[One or two sentences on why. e.g. "To prevent timeouts when the users table is large."]
I find this prompt useful when I need to quickly come up with some basic FAQs to include as part of my document. I use this format with Google Gemini inside Google Docs quite frequently:
Format:
[Product or company context].
[Document context].| { | |
| "name": "Thor", | |
| "universe": "Marvel", | |
| } |
| Profile: | |
| title: Profile | |
| required: | |
| - middle_name | |
| - rider-id | |
| type: object | |
| properties: | |
| first_name: | |
| type: string | |
| description: First name of the Uber user. |
| Profile: | |
| title: Profile | |
| required: | |
| - middle_name | |
| - rider-id | |
| type: object | |
| properties: | |
| first_name: | |
| type: string | |
| description: First name of the Uber user. |
| paths: | |
| "/products": | |
| get: | |
| parameters: | |
| - name: latitude | |
| in: query | |
| description: Latitude component of location. | |
| required: true | |
| style: form | |
| - name: longitude |
title, description and keywords for every page. See how to set this in the frontmatter.Between the title, description, your pages' links and the pages' content, you have 80% of your SEO covered.
| // WITHOUT COLLECT PARAMS | |
| export class PaymentsApi extends BaseApi { | |
| async listPayments( | |
| beginTime?: string, | |
| endTime?: string, | |
| sortOrder?: string, | |
| cursor?: string, | |
| locationId?: string, | |
| total?: number, | |
| last4?: string, |
| declare module 'react-fuzzy-picker' { | |
| import * as React from 'react'; | |
| export interface FuzzyPickerProps<T> { | |
| label?: string; | |
| displayCount?: number; | |
| cycleAtEndsOfList?: boolean; | |
| onChangeHighlightedItem?: (choice: T) => void; | |
| isOpen: boolean; | |
| onClose: () => void; |