Class: LlamaCpp::LlamaChatMessage
- Inherits:
-
Object
- Object
- LlamaCpp::LlamaChatMessage
- Defined in:
- ext/llama_cpp/llama_cpp.c,
ext/llama_cpp/llama_cpp.c more...
Overview
“struct llama_chat_message” wrapper class
Instance Method Summary collapse
Instance Method Details
#content ⇒ String
1040 1041 1042 1043 |
# File 'ext/llama_cpp/llama_cpp.c', line 1040
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
1035 1036 1037 1038 |
# File 'ext/llama_cpp/llama_cpp.c', line 1035
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);
}
|