AI
GPT, Claude, and more
Product text and answers from your favorite LLM's and beyond.
AI
Summit includes an Ai
event that supports a variety of models interchangeably.
Both the GPT and Claude (Anthropic) events send prompts and return responses in the form of JSON.
Beneath the hood, both the prompt content and other configuration options are composed using an Object.
The JSON object these AI events return will include a raw
attribute as well as the result of parsing this raw (markdown) content into blocks: text
, code
, links
, and images
. For example, if the response includes a JSON block, you will be able to find that JSON under the code
block and refer to it using a path like so:
{{ my_ai_event.content[0].blocks.code[0].source }}
If the code is JSON, the object itself will be indexable, for example:
{{ my_ai_event.content[0].blocks.code[0].source.invoice.total }}
Supported models
No API keys or tokens required.
Summit does not require you to sign up for or submit tokens for these services in order to use them from the Summit editor. Instead, usage costs will be automatically added to your credits.
Text Generation
Model | Description |
---|---|
claude-3-5-sonnet | Anthropic's answer to GPT and quite good, we might add. |
gpt-4o | Faster and cheaper than GPT-4 Turbo with stronger vision capabilities. |
gpt-4 | Broad general knowledge and domain expertise. |
gpt-4-turbo | 128K context with an April 2023 knowledge cutoff and basic support for vision. |
gpt-3.5-turbo-0125 | Fast and inexpensive model for simple tasks. |
Image Generation
Model | Description |
---|---|
stable-diffusion | A very popular, general-purpose image generator, often used for landscapes. |
playground | Generate fantastical, beautiful images. |
flux-realism | Generate photo-realistic images. |
flux-schnell | Faster, less expensive, and more artistic (less realistic) than flux-realism . |
PDF's
Model | Description |
---|---|
pdf | Use PDF.ai's fine-tuned model for handling and parsing large PDF file |
Search
A Search
generates a response by calling Tavily's Search API and serving up the results as a JSON object.
This search is designed for use prior to an Ai
call, as the content can be used to augment the understanding of the AI / LLM with current news, information, or otherwise special knowledge.
The response will include a best attempt at "the answer", along with up to 5 sources of information with URL's and content snippets.
You can send keyword arguments (options) to the Search
event by passing it an Object.
Note that the include_domains
option will restrict searching to those domains only.
Search + Text
Consider placing a Text event immediately after a
Search
event in order to compose the output of the search into a nice block of text for injecting into a prompt.
News & Maps
When in the Canvas View, you may also search Google News and Google Maps by passing in a second argument to your search event:
=Search("best pizza in Austin, TX", "maps")
This will return a list of up to 20 pizza places in Austin, Texas using Google Maps.
=Search("best new pizza places in Austin, TX", "news")
This will return up to 20 news articles from Google News that mention developments in the pizzeria space in central Texas.
Updated about 2 months ago
Now that you know how and when to use a Generator, let's learn about Containers -- events that manage the flow of value within your model.