shithub: oai

ref: 68bce3543b2b1e9461b06cc9622e12e0d6a47ac1
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);