Class Character
Character natural language descriptions.
Namespace: NPCEngine.Components
Assembly: cs.temp.dll.dll
Syntax
public class Character : ScriptableObject
Fields
Name
Declaration
public string Name
Field Value
Type | Description |
---|---|
String |
numSampled
Sampling parameter for the character's text generation. Number of sentences generated and selected from.
Declaration
public int numSampled
Field Value
Type | Description |
---|---|
Int32 |
Persona
Character's persona natural language description.
Declaration
public string Persona
Field Value
Type | Description |
---|---|
String |
temperature
Sampling parameter for the character's text generation. Higher temperature means more variation in the generated text.
Declaration
public float temperature
Field Value
Type | Description |
---|---|
Single |
topK
Sampling parameter for the character's text generation. TopK is the number of top tokens to be sampled from.
Declaration
public int topK
Field Value
Type | Description |
---|---|
Int32 |