Spaces:
Sleeping
Sleeping
| import os | |
| import configparser | |
| def getconfig(configfile_path: str): | |
| """ | |
| Read the config file | |
| Params | |
| ---------------- | |
| configfile_path: file path of .cfg file | |
| """ | |
| config = configparser.ConfigParser() | |
| try: | |
| config.read_file(open(configfile_path)) | |
| return config | |
| except: | |
| logging.warning("config file not found") | |
| # --------------------------------------------------------------------- | |
| # Provider-agnostic authentication and configuration | |
| # --------------------------------------------------------------------- | |
| def get_auth(provider: str) -> dict: | |
| """Get authentication configuration for different providers""" | |
| auth_configs = { | |
| "openai": {"api_key": os.getenv("OPENAI_API_KEY")}, | |
| "huggingface": {"api_key": os.getenv("HF_TOKEN")}, | |
| "anthropic": {"api_key": os.getenv("ANTHROPIC_API_KEY")}, | |
| "cohere": {"api_key": os.getenv("COHERE_API_KEY")}, | |
| } | |
| if provider not in auth_configs: | |
| raise ValueError(f"Unsupported provider: {provider}") | |
| auth_config = auth_configs[provider] | |
| api_key = auth_config.get("api_key") | |
| if not api_key: | |
| raise RuntimeError(f"Missing API key for provider '{provider}'. Please set the appropriate environment variable.") | |
| return auth_config | |
| meetings_list = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', | |
| '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', | |
| '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', | |
| '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', | |
| '46', '47', '48', '49', '50', '51', '52', '53', '54', '55', '56', | |
| '57', '58', '59', '60', '61', '62', '63', '64', '65', '66', '67', | |
| '68', '69', '70', '71', '72', '73', '74', '75', '76', '77', '78', | |
| '79', '80', '81', '82', '83', '84', '85', '86', '87', '88', '89', | |
| '90', '91', '92', '93', '94'] | |
| countries_list= ['Afghanistan', 'Africa', 'Albania', 'Algeria', 'American Samoa', 'Angola', 'Anguilla', | |
| 'Antigua and Barbuda', 'Argentina', 'Armenia', 'Asia Pacific', 'Australia', 'Azerbaijan', 'Bahamas', | |
| 'Bahrain', 'Bangladesh', 'Barbados', 'Belgium', 'Belize', 'Benin', 'Bhutan', 'Bolivia (Plurinational State of)', | |
| 'Bosnia and Herzegovina', 'Botswana', 'Brazil', 'British Indian Ocean Territory', 'Brunei Darussalam', | |
| 'Burkina Faso', 'Burundi', 'Cabo Verde', 'Cambodia', 'Cameroon', 'Canada', 'Central African Republic', | |
| 'Chad', 'Chile', 'China', 'Colombia', 'Comoros', 'Congo', 'Cook Islands', 'Costa Rica', 'Croatia', 'Cuba', | |
| 'Cyprus', 'Czechia', "C├┤te d'Ivoire", "Democratic People's Republic of Korea", 'Democratic Republic of the Congo', | |
| 'Djibouti', 'Dominica', 'Dominican Republic', 'Ecuador', 'Egypt', 'El Salvador', 'Equatorial Guinea', 'Eritrea', | |
| 'Eswatini', 'Ethiopia', 'Europe', 'Fiji', 'Finland', 'France', 'French Southern and Antarctic Lands', 'Gabon', | |
| 'Gambia', 'Georgia', 'Germany', 'Ghana', 'Global', 'Grenada', 'Guatemala', 'Guinea', 'Guinea-Bissau', 'Guyana', | |
| 'Haiti', 'Honduras', 'India', 'Indonesia', 'Iran (Islamic Republic of)', 'Iraq', 'Israel', 'Jamaica', 'Japan', | |
| 'Jordan', 'Kazakhstan', 'Kenya', 'Kiribati', 'Kuwait', 'Kyrgyzstan', "Lao People's Democratic Republic", | |
| 'Latin America and Caribbean', 'Lebanon', 'Lesotho', 'Liberia', 'Libya', 'Madagascar', 'Malawi', 'Malaysia', | |
| 'Maldives', 'Mali', 'Malta', 'Marshall Islands', 'Mauritania', 'Mauritius', 'Mexico', 'Micronesia (Federated States of)', | |
| 'Mongolia', 'Montenegro', 'Morocco', 'Mozambique', 'Myanmar', 'Namibia', 'Nauru', 'Nepal', 'Netherlands', 'Nicaragua', | |
| 'Niger', 'Nigeria', 'Niue', 'North Macedonia', 'Oman', 'Pakistan', 'Palau', 'Panama', 'Papua New Guinea', 'Paraguay', | |
| 'Peru', 'Philippines', 'Portugal', 'Qatar', 'Republic of Korea', 'Republic of Moldova', 'Romania', 'Russian Federation', | |
| 'Rwanda', 'Saint Kitts and Nevis', 'Saint Lucia', 'Saint Vincent and the Grenadines', 'Samoa', 'Sao Tome and Principe', | |
| 'Saudi Arabia', 'Senegal', 'Serbia', 'Seychelles', 'Sierra Leone', 'Slovenia', 'Solomon Islands', 'Somalia', 'South Africa', | |
| 'South Sudan', 'Spain', 'Sri Lanka', 'Sudan', 'Suriname', 'Sweden', 'Switzerland', 'Syrian Arab Republic', 'Thailand', | |
| 'Timor-Leste', 'Togo', 'Tonga', 'Trinidad and Tobago', 'Tunisia', 'Turkmenistan', 'Tuvalu', 'T├╝rkiye', 'Uganda', 'Ukraine', | |
| 'United Arab Emirates', 'United Kingdom', 'United Republic of Tanzania', 'United States of America', 'Uruguay', 'Uzbekistan', | |
| 'Vanuatu', 'Venezuela (Bolivarian Republic of)', 'Viet Nam', 'Yemen', 'Zambia', 'Zimbabwe'] | |
| projects_list = [ "Other ODS phaseout", | |
| "Other ODS production phaseout", | |
| "CFC production phaseout ", | |
| "CFC phaseout", | |
| "HCFC phaseout stage 1", | |
| "HCFC phaseout stage 2", | |
| "HCFC phaseout stage 3", | |
| "HCFC production phaseout stage 2", | |
| ] |