mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-01 07:00:15 +01:00
16 lines
500 B
Python
16 lines
500 B
Python
|
"""
|
||
|
This module contains common functions across multiple other modules.
|
||
|
"""
|
||
|
|
||
|
import extensions.superboogav2.parameters as parameters
|
||
|
|
||
|
# Create the context using the prefix + data_separator + postfix from parameters.
|
||
|
def create_context_text(results):
|
||
|
context = parameters.get_prefix() + parameters.get_data_separator().join(results) + parameters.get_postfix()
|
||
|
|
||
|
return context
|
||
|
|
||
|
|
||
|
# Create metadata with the specified source
|
||
|
def create_metadata_source(source: str):
|
||
|
return {'source': source}
|