The files in these examples are read only. To execute the files you will need to copy + paste the code, or download the files and upload them into your workspace.
Example of using Text-Summarization in Jupyter
- textSummarizationExample.ipynb - A Jupyter notebook with examples of using Text-Summarization
- Import required library
import domojupyter.ai as ai
- Call
ai.summarize()
- input - Required
- Text you are trying to summarize with the Text-Summarization service
- chunking_configuration - Optional
ChunkingConfiguration(max_chunk_size, chunk_overlap, list_of_separators, separator_type, disallow_intermediate_chunks)
max_chunk_size
: Numberchunk_overlap
: Numberlist_of_separators
: List of Stringsseparator_type
: Stringdisallow_intermediate_chunks
: Boolean
- output_style - Optional
- output_word_length - Optional
SizeBoundary(min,max)
- model - Optional
- Id of a specific model if using something other than default Domo model
- prompt_template - Optional
- Additional prompt template to use in request to Text-Summarization
- parameters - Optional
- Any variables to be used with prompt_template
- Requires prompt_template to use