Free developer access
AllGiantCaribou8 months ago
Possible to get free developer access so I can test terra?
Vanessaadmin8 months ago
Hi there,
You can sign up for a 30 day money back trial - if your project direction changes, you'll get your money back within that period. No questions asked. :)
UltimateMammal3 months ago
I’m building an vibe coded mvp for a client, if they sign we may not even start the project for a month, requiring devs to put in a live credit card and request a refund etc during scoping and development is not tenable. We just want to test Terra and get a mvp working to demo for the client prior to actually developing the app. Please consider adding a dev sandbox to your platform like other similar providers for apis.
CheerfulCaribou1 week ago
import google.generativeai as genai
১. আপনার জেমিনাই এপিআই কি দিন
API_KEY = "YOUR_GEMINI_API_KEY_HERE" genai.configure(api_key=API_KEY)
২. এআই মডেল সেটআপ
model = genai.GenerativeModel('gemini-1.5-flash')
def start_my_app(): print("=== মোবাইল এআই চ্যাটবট ===") print("(অ্যাপ বন্ধ করতে 'exit' লিখুন)\n")
chat = model.start_chat(history=[])
while True:
user_message = input("আপনি: ")
if user_message.lower() == 'exit':
print("\nঅ্যাপ বন্ধ করা হচ্ছে... ধন্যবাদ!")
break
if user_message.strip() == "":
continue
try:
response = chat.send_message(user_message)
print(f"\nএআই: {response.text}\n")
print("-" * 30)
except Exception as e:
print(f"\nসমস্যা হয়েছে: {e}\n")
৩. অ্যাপ চালু করা
if name == "main": start_my_app()