diff --git "a/ai-hub/list_models.py\345\256\214\346\210\220" "b/ai-hub/list_models.py\345\256\214\346\210\220" deleted file mode 100644 index c9af7f9..0000000 --- "a/ai-hub/list_models.py\345\256\214\346\210\220" +++ /dev/null @@ -1,15 +0,0 @@ -import google.generativeai as genai - -def list_models(): - api_key = "AIzaSyBn5HYiZ8yKmNL0ambyz4Aspr5lKw1sKuI" - genai.configure(api_key=api_key) - print("--- Listing Available Models ---") - try: - models = genai.list_models() - for m in models: - print(f"- {m.name} (Methods: {m.supported_generation_methods})") - except Exception as e: - print(f"❌ FAIL: {e}") - -if __name__ == "__main__": - list_models()