microsoft / lida

Automatic Generation of Visualizations and Infographics using Large Language Models
https://microsoft.github.io/lida/
MIT License
2.71k stars 290 forks source link

:thinking: "You exceeded your current quota" while far from exceeding it #100

Closed adriens closed 7 months ago

adriens commented 7 months ago

:grey_question: About

I'm trying to play around with lida.

I put a pandas as input:

from lida import Manager

lida = Manager()
summary = lida.summarize(df) # generate data summary

and I get a good answer:

{'name': '',
 'file_name': '',
 'dataset_description': '',
 'fields': [{'column': 'region',
   'properties': {'dtype': 'category',
    'samples': ['Asia', 'Africa', 'Europe'],
    'num_unique_values': 5,
    'semantic_type': '',
    'description': ''}},
  {'column': 'country',
   'properties': {'dtype': 'string',
    'samples': ['SVN', 'TUR', 'COD'],
    'num_unique_values': 31,
    'semantic_type': '',
    'description': ''}},
  {'column': 'gender',
   'properties': {'dtype': 'category',
    'samples': ['Female', 'Male'],
    'num_unique_values': 2,
    'semantic_type': '',
    'description': ''}},
  {'column': 'frequency',
   'properties': {'dtype': 'number',
    'std': 88,
    'min': 1,
    'max': 528,
    'samples': [3, 4],
    'num_unique_values': 12,
    'semantic_type': '',
    'description': ''}}],
 'field_names': ['region', 'country', 'gender', 'frequency']}

... then I try to set goals:

goals = lida.goals(summary, n=2, persona="Neo4J community manager") # generate goals

but then I get the following exception:

while I'm far from the limits:

image

Any idea on what's going wrong ?

Thank you in advance for your help, the project looks really exciting and I really want to make something fun with it :smile_cat:

adriens commented 7 months ago

Looks like I have a real billing issue :sweat: