Class: LlamaCpp::LlamaChatMessage
- Inherits:
-
Object
- Object
- LlamaCpp::LlamaChatMessage
- Defined in:
- ext/llama_cpp/llama_cpp.c,
ext/llama_cpp/llama_cpp.c
Overview
“struct llama_chat_message” wrapper class
Instance Method Summary collapse
Instance Method Details
#content ⇒ String
1041 1042 1043 1044 |
# File 'ext/llama_cpp/llama_cpp.c', line 1041
static VALUE llama_chat_message_get_content(VALUE self) {
llama_chat_message* data = get_llama_chat_message(self);
return rb_utf8_str_new_cstr(data->content);
}
|
#role ⇒ String
1036 1037 1038 1039 |
# File 'ext/llama_cpp/llama_cpp.c', line 1036
static VALUE llama_chat_message_get_role(VALUE self) {
llama_chat_message* data = get_llama_chat_message(self);
return rb_utf8_str_new_cstr(data->role);
}
|