Skip to content

mlco2/ecologits

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

801 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

EcoLogits

๐ŸŒฑ EcoLogits tracks the energy consumption and environmental impacts of using generative AI models through APIs.

PyPI version PyPI downloads Python version Open In Colab DOI Discord

Read the full documentation on ecologits.ai.

EcoLogits is part of the CodeCarbon non-profit, chat with us on Discord.

โš™๏ธ Installation

pip install ecologits

For integration with a specific provider, use pip install ecologits[openai]. We are currently supporting the following providers: anthropic, cohere, google-genai, huggingface-hub, mistralai and openai. See the full list of providers.

๐Ÿš€ Usage

from ecologits import EcoLogits
from openai import OpenAI

# Initialize EcoLogits
EcoLogits.init(providers=["openai"])

client = OpenAI(api_key="<OPENAI_API_KEY>")

response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[
        {"role": "user", "content": "Tell me a funny joke!"}
    ]
)

# Get estimated environmental impacts of the inference
print(f"Energy consumption: {response.impacts.energy.value.mean} kWh")
print(f"GHG emissions: {response.impacts.gwp.value.mean} kgCO2eq")

See package documentation on EcoLogits

๐Ÿ’š Sponsors

Resilio Terra Cognita Sopht Avanade Theodo Ministรจre de la Culture

๐Ÿ’ช Contributing

To get started with setting up a development environment and making a contribution to EcoLogits, see Contributing to EcoLogits.

โš–๏ธ License

This project is licensed under the terms of the Mozilla Public License Version 2.0 (MPL-2.0).

About

๐ŸŒฑ EcoLogits tracks the energy consumption and environmental footprint of using generative AI models through APIs.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors