FND_BOSS_LLM_QUESTIONS
Table used to store natural language questions that will be used to match against an LLM example
Details
-
Schema: FUSION
-
Object owner: FND
-
Object type: TABLE
-
Tablespace: fnd_boss_llm_questions
Primary Key
| Name | Columns |
|---|---|
|
FND_BOSS_LLM_QUESTIONS_PK |
ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| ID | NUMBER | 18 | Yes | ID for this natural language question | |
| QUESTION | VARCHAR2 | 2000 | Yes | Natural language question | |
| QUESTION_VECTOR_ONE | VECTOR | Vector representation of this natural language question. If only one model to generate the vector exists, this column will be the only one populated for question vectors. | |||
| QUESTION_VECTOR_TWO | VECTOR | Vector representation of this natural language question. On multi model support, this column will also contain vector generated for the question. | |||
| MODEL_ID | VARCHAR2 | 64 | Yes | Foreign Key references to model identifier used to generate the QUESTION_VECTOR columns | |
| RESOURCE_HASH | VARCHAR2 | 64 | SHA256 hash in hex format of the message bundle that contained this question if the question was translated, otherwise the SHA256 of the example resource that contained this question |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| FND_BOSS_LLM_QUESTIONS_U1 | Unique | FND_BOSS_LLM_QUESTIONS_U1 | ID |