shithub: oai

ref: 8722f3bed54f9d2a2899f604261a0ac5c74d13eb
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);