// Written by retoor@molodetz.nl // This source code declares a constant character pointer variable with a value representing an API key. // MIT License #include const char * resolve_api_key(){ char * api_key; #ifndef FREE_VERSION api_key = getenv("R_KEY"); if(api_key) { return api_key; } api_key = getenv("OPENAI_API_KEY"); if(api_key) { return api_key; } fprintf(stderr, "\nThere is no API key configured in environment.\n"); exit(1); #endif api_key = "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"; return api_key; }