ecologits icon indicating copy to clipboard operation
ecologits copied to clipboard

🌱 EcoLogits tracks the energy consumption and environmental footprint of using generative AI models through APIs.

Results 5 ecologits issues
Sort by recently updated
recently updated
newest added

For now, we only use the world mix to compute GWP, ADPE and PE: ```Python IF_ELECTRICITY_MIX_GWP = 5.90478e-1 # kgCO2eq / kWh (World) IF_ELECTRICITY_MIX_ADPE = 7.37708e-8 # kgSbeq / kWh...

## Description We've recently added support for Hugging Face Inference Endpoints through the `huggingface_hub` python package. We now need to reference models that are available on Hugging Face (model name,...

## Description Add [perplexity.ai](https://perplexity.ai) LLM provider. ## Solution Perplexity uses the same API as OpenAI, meaning the OpenAI python client is compatible with their service, and it only requires changing...

## Description Add [Google generative AI models](https://ai.google.dev/), e.g. Gemini. ## Solution Google has it's own Python package for its generative AI models. Python package: [google-generativeai ](https://pypi.org/project/google-generativeai/) Documentation: - [Python quickstart](https://ai.google.dev/tutorials/python_quickstart)...

## Description Add [Amazon Bedrock](https://aws.amazon.com/bedrock/) provider. ## Solution Amazon Bedrock uses its on API and Python package. Python package: [boto3](https://boto3.amazonaws.com/v1/documentation/api/latest/index.html) Amazon Bedrock: - [User Guide](https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-bedrock.html) - [API Reference](https://docs.aws.amazon.com/bedrock/latest/APIReference/welcome.html) - [List...