just BINANCE crypto
features requires the following to run:
- Python 3.12+
insall packages:
pip3 install requests
pip3 install openai
pip3 install streamlit
pip3 install python-dotenv
pip3 install huggingface_hub --upgrade
pip3 install -q -U google-generativeai
create .env
file (copy .env.example
file) and add OpenAi API key in .env
file
in dir open Terminal and run command:
streamlit run checker.py
Open AI Code GPT
:
from openai_client import OpenAIClient
prompt = "Hello"
openai_client = OpenAIClient()
response = openai_client.get_response(prompt)
Huggingface AI Code Qwen2.5-72B
: 🤩FREE
🆓
from Huggingface import HuggingfaceAIClient
prompt = "Hello"
huggingface_client = HuggingfaceAIClient()
translateResponse = huggingface_client.get_response(prompt)
Gemini AI Code gemini-1.5-flash
: 🤩FREE
🆓
from Gemini import GeminiAIClient
prompt = "Hello"
gemini_client = GeminiAIClient()
response = gemini_client.get_response(prompt)
MIT © AmirHossein Hashemi