Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anpigon
/
langchain-qa-bot
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ed4d993
langchain-qa-bot
/
docs
/
langchain
/
libs
/
community
/
tests
/
examples
/
hello_world.py
anpigon
add langchain docs
ed4d993
11 months ago
raw
Copy download link
history
blame
Safe
160 Bytes
#!/usr/bin/env python3
import
sys
def
main
() ->
int
:
print
(
"Hello World!"
)
# noqa: T201
return
0
if
__name__ ==
"__main__"
:
sys.exit(main())