summaryrefslogtreecommitdiff
path: root/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'hello.py')
-rw-r--r--hello.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/hello.py b/hello.py
deleted file mode 100644
index 36b8e05..0000000
--- a/hello.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import sys
-import os
-import requests
-
-from google import genai
-
-
-def main():
- key = os.getenv("API_KEY")
- client = genai.Client(api_key=key)
- # input = sys.argv[1]
-
- curl = requests.get("https://www.folderz.nl/")
- curl.raise_for_status()
-
- # print(curl.text)
-
- response = client.models.generate_content(model="gemini-2.0-flash", contents=input)
-
- print(response.text)
-
-
-if __name__ == "__main__":
- main()