10 lines
124 B
Python
10 lines
124 B
Python
from langchain import ChatOpenAI
|
|
|
|
|
|
def main():
|
|
print("Hello from smart-chain!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|