AI model nodes
Calling AI models and exploring them is what Kollaprompt is all about. We're constantly extending our support for AI providers and new models.
This page is under development. Please check back later for more information.
OpenAI GPT-models
This node allows you to query the OpenAI GPT-3 API. You can use this node to generate text, translate text, summarize text, and more.
Required fields
- Name
Prompt
- Type
- Text
- Description
Write a text prompt that the models will use to create a completion. You can also read OpenAI GPT best practises
Optional settings
- Name
Engine
- Type
- Select one
- Description
Select a GPT-model you want to use. Text-davinci-003 is the default.
Use ChatGPT node for gpt-3.5-turbo models.
- Name
Stop words
- Type
- One or multiple
- Description
Optional setting that tells the API when to stop generating more tokens. For example
\n
,Human:
will stop the generation when the API generates a newline character or the string "Human:".
- Name
Max tokens
- Type
- 0 - 4097
- Description
How many tokens the model will generate at most. The API will return as soon as it generates this many tokens, or when it hits the
Stop words
setting.
- Name
Temperature
- Type
- 0.0 - 1.0
- Description
Lower values for temperature result in more consistent outputs, while higher values generate more diverse and creative results. Experiment with temperature value to strike a balance between coherence and creativity for your specific use-case.