shithub: oai

ref: 3b49941153a3ca965ba574d9e64f0325383316fd
dir: /oai.h/

View raw version
typedef struct OResult OResult;
typedef struct ORequest ORequest;
typedef struct OPrompt OPrompt;

struct OPrompt {
	char *role;
	char *content;
	OPrompt *next;
};

struct ORequest {
	char *model;
	OPrompt *prompts;
};

struct OResult {
	char *role;
	char *message;
};

int initoai(char *baseurl, char *apikey);
OResult makerequest(ORequest);