ref: 6ff6f63950fa65e7d3ca0981f572bb31ac328796
dir: /oai.h/
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);
int addprompt(ORequest*, char *role, char *content, ...);