We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ba20f5 commit 99b9423Copy full SHA for 99b9423
1 file changed
src/openai_api_polling/__init__.py
@@ -0,0 +1,13 @@
1
+from importlib.metadata import version
2
+
3
4
+__version__ = version("openai-api-polling")
5
+__author__ = ["Song Tan <sepinetam@gmail.com>"]
6
7
8
+def main() -> None:
9
+ print("Hello from openai-api-polling!")
10
11
12
+if __name__ == "__main__":
13
+ main()
0 commit comments