Everything safe.

This commit is contained in:
retoor 2025-01-04 08:35:39 +01:00
parent de80b013c0
commit 016e335a23
6 changed files with 56 additions and 75 deletions

1
chat.h
View File

@ -16,7 +16,6 @@ void chat_free(){
_prompt = NULL;
}
char * chat_json(char * role, char * message){
chat_free();
message_add(role,message);

3
http.h
View File

@ -100,14 +100,12 @@ char *http_post(const char *hostname, char *url, char *data)
int buffer_size = 4096;
char *buffer = (char *)malloc(buffer_size);
if (SSL_connect(ssl) <= 0)
{
ERR_print_errors_fp(stderr);
}
else
{
//printf("Connected with %s encryption\n", SSL_get_cipher(ssl));
size_t len = strlen(data);
char *request = (char *)malloc(len + 4096);
request[0] = 0;
@ -173,7 +171,6 @@ char *http_get(const char *hostname, char *url)
}
else
{
//printf("Connected with %s encryption\n", SSL_get_cipher(ssl));
char request[buffer_size];
request[0] = 0;

58
main.c
View File

@ -5,29 +5,29 @@
#include <locale.h>
#include <stdio.h>
char * get_prompt_from_args(int c, char **argv){
char * get_prompt_from_args(int c, char **argv) {
char * prompt = malloc(1024*1024 + 1);
prompt[0] = 0;
for(int i = 1; i < c; i++){
for(int i = 1; i < c; i++) {
if(argv[i][0] == '-')
break;
strncat(prompt, argv[i], 1024*1024);
if(i < c - 1){
if(i < c - 1) {
strncat(prompt, " ", 1024*1024);
}else{
} else {
strncat(prompt, ".", 1024*1024);
}
}
if(!*prompt){
if(!*prompt) {
free(prompt);
return NULL;
}
return prompt;
}
bool try_prompt(int argc,char*argv[]){
bool try_prompt(int argc,char*argv[]) {
char * prompt = get_prompt_from_args(argc, argv);
if(prompt != NULL){
if(prompt != NULL) {
char * response = openai_chat("user",prompt);
parse_markdown_to_ansi(response);
printf("\n");
@ -40,59 +40,54 @@ bool try_prompt(int argc,char*argv[]){
void help();
void render(char *);
void serve(){
void serve() {
render("Starting server. *Put executables in a dir named cgi-bin and they will behave as webpages.*");
int res = system("python3 -m http.server --cgi");
// Thanks tsoding!
(void)res;
}
void render(char * content){
void render(char * content) {
parse_markdown_to_ansi(content);
printf("\n\n");
}
void repl(){
void repl() {
line_init();
setbuf(stdout, NULL);
char *line;
char *previous_line = NULL;
while((line = line_read("> "))){
if(!line || !*line){
while((line = line_read("> "))) {
if(!line || !*line) {
line = previous_line;
}
if(!line || !*line)
continue;
previous_line = line;
if(line[0] == '!'){
if(line[0] == '!') {
plugin_run(line + 1);
continue;
}
if(!strncmp(line,"exit", 4)){
if(!strncmp(line,"exit", 4)) {
exit(0);
}
if(!strncmp(line,"help",4)){
if(!strncmp(line,"help",4)) {
help();
continue;
}
if(!strncmp(line,"serve",5)){
if(!strncmp(line,"serve",5)) {
serve();
}
if(!strncmp(line,"spar ",5)){
if(!strncmp(line,"spar ",5)) {
char * response = line+5;
while(true){
while(true) {
render(response);
sleep(2);
//line = line_read("> ");
//if(!*line)
response = openai_chat("user",response);
}
}
if(!strncmp(line,"ls",2) || !strncmp(line,"list",4)){
if(!strncmp(line,"ls",2) || !strncmp(line,"list",4)) {
int offset = 2;
if(!strncmp(line,"list",4)){
if(!strncmp(line,"list",4)) {
offset = 4;
}
char * command = (char *)malloc(strlen(line) + 42);
@ -112,8 +107,7 @@ void repl(){
}
}
void help(){
void help() {
char help_text[1024*1024] = {0};
char * template = "# Help\n"
"Written by retoor@molodetz.nl.\n\n"
@ -137,9 +131,9 @@ void help(){
render(help_text);
}
void openai_include(char * path){
void openai_include(char * path) {
FILE * file = fopen(path,"r");
if(file == NULL){
if(file == NULL) {
return;
}
fseek(file, 0, SEEK_END);
@ -148,7 +142,7 @@ void openai_include(char * path){
char * buffer = (char *)malloc(size);
size_t read = fread(buffer,1,size,file);
if(read == 0){
if(read == 0) {
return;
}
@ -159,7 +153,7 @@ void openai_include(char * path){
free(buffer);
}
void init(){
void init() {
line_init();
const char *locale = setlocale(LC_ALL, NULL);
char payload[4096] = {0};
@ -175,7 +169,7 @@ void init(){
printf("%s", "\rLoaded! Type help for feautures.\n");
}
int main(int argc, char *argv[]){
int main(int argc, char *argv[]) {
init();
if(try_prompt(argc,argv))
return 0;

View File

@ -27,7 +27,6 @@ bool openai_system(char * content){
return is_done;
}
char *openai_chat(char * role, char * content){
const char *hostname = "api.openai.com";
char *url = "/v1/chat/completions";
@ -50,7 +49,6 @@ char *openai_chat(char * role, char * content){
return NULL;
}
// Get the first element of the "choices" array
struct json_object *first_choice = json_object_array_get_idx(choices_array, 0);
if (!first_choice) {
fprintf(stderr, "Failed to get the first element of 'choices'.\n");
@ -58,7 +56,6 @@ char *openai_chat(char * role, char * content){
return NULL;
}
// Extract the "message" object
struct json_object *message_object;
if (!json_object_object_get_ex(first_choice, "message", &message_object)) {
fprintf(stderr, "Failed to get 'message' object.\n");
@ -66,18 +63,13 @@ char *openai_chat(char * role, char * content){
return NULL;
}
// Print the "message" object
// printf("Message object:\n%s\n", json_object_to_json_string_ext(message_object, JSON_C_TO_STRING_PRETTY));
message_add("assistant",(char *)json_object_get_string(json_object_object_get(message_object, "content")));
// Clean up
free(data);
free(result);
result = strdup((char *)json_object_get_string(json_object_object_get(message_object, "content")));
json_object_put(parsed_json);
//printf("Parsed JSON:\n%s\n", json_object_to_json_string_ext(parsed_json, JSON_C_TO_STRING_PRETTY));
return result;
}

View File

@ -10,7 +10,6 @@ bool plugin_construct(){
Py_Initialize();
// Check if Python initialized successfully
if (!Py_IsInitialized()) {
fprintf(stderr, "Failed to initialize Python interpreter\n");
return plugin_initialized;