Try Bacalhau
- GROMACS is a package for high-performance molecular dynamics and output analysis.
- Kipoi: Model zoo for genomics
In [ ]:
curl -sL https://get.bacalhau.org/install.sh | bash
In [ ]:
bacalhau version
Compile Bacalhau CLI into WebAssembly Binaries¶
In [ ]:
import os
from EdgeGPT import Chatbot as Bing, ConversationStyle
bing = Bing(cookiePath = os.path.expanduser('~/.config/EdgeGPT/cookies.json'))
In [ ]:
res = (await bing.ask(
prompt = '''
Simulate the process of compiling Bacalhau CLI into WebAssembly Binaries. And summarize your actions and results.
''',
conversation_style = ConversationStyle.balanced,
))['item']['messages'][1]
print(res['text'])
print('\n---\n')
print(res['adaptiveCards'][0]['body'][0]['text'])
In [ ]:
res = (await bing.ask(
prompt = '''
Teach me how to compile Bacalhau CLI into WebAssembly Binaries. And summarize your actions and results.
''',
conversation_style = ConversationStyle.balanced,
))['item']['messages'][1]
print(res['text'])
print('\n---\n')
print(res['adaptiveCards'][0]['body'][0]['text'])
In [ ]:
res = (await bing.ask(
prompt = '''
介绍 Bacalhau CLI。如何将 Bacalhau CLI 编译成 WebAssembly 二进制文件?总结你的步骤和结果。
''',
conversation_style = ConversationStyle.balanced,
))['item']['messages'][1]
print(res['text'])
print('\n---\n')
print(res['adaptiveCards'][0]['body'][0]['text'])