Code It now
https://www.youtube.com/playlist?list=PL6gx4Cwl9DGDv5eyBLEd9l3ZZzVoroxIZ
for prompt engineering🙏🏻🙏🏻
👍2
Forwarded from Beka (Beka)
I'm happy to announce Better Auth has raised a $5M seed led by PeakXV Partners (formerly Sequoia Capital India & SEA), with participation from Y Combinator, Chapter One, P1 Ventures, and a group of incredible investors and angels
Thanks everyone for your support and for being a part of this journey!
https://www.better-auth.com/blog/seed-round
Thanks everyone for your support and for being a part of this journey!
https://www.better-auth.com/blog/seed-round
Better-Auth
Announcing our $5M seed round | Better Auth
We raised $5M seed led by Peak XV Partners
🚀 New Tool Drop from Google!
Gemini CLI is here, an open-source command-line tool that lets developers interact directly with Gemini AI right from their terminal.
🛠 With Gemini CLI, you can:
• Analyze and generate code
• Manage files
• Run commands
• Automate content creation
• Even integrate it into your own noscripts!
@code_it_now
Gemini CLI is here, an open-source command-line tool that lets developers interact directly with Gemini AI right from their terminal.
🛠 With Gemini CLI, you can:
• Analyze and generate code
• Manage files
• Run commands
• Automate content creation
• Even integrate it into your own noscripts!
@code_it_now
Code It now
🚀 New Tool Drop from Google! Gemini CLI is here, an open-source command-line tool that lets developers interact directly with Gemini AI right from their terminal. 🛠 With Gemini CLI, you can: • Analyze and generate code • Manage files • Run commands • Automate…
GitHub
GitHub - google-gemini/gemini-cli: An open-source AI agent that brings the power of Gemini directly into your terminal.
An open-source AI agent that brings the power of Gemini directly into your terminal. - google-gemini/gemini-cli
Code It now
which one is best?? for integration
bcha egna wede srachn enmeles google gemini is underrated🫡
💯2😁1
from google import genai
# Initialize client
client = genai.Client(api_key="😁😁use ur own") # Remember to secure your API key
# Get user input
user_text = input("Ask here (English text to translate): ")
# Create the prompt with instructions
prompt = f"""
You are a professional translator specializing in English to Amharic translation.
Translate the following to Amharic: "{user_text}"
Respond with only the Amharic translation, nothing else.
"""
try:
# Simplified API call
response = client.models.generate_content(
model="gemini-2.5-flash", # Using the more widely available model
contents=[{
"role": "user",
"parts": [{"text": prompt}]
}],
)
# Print the translation
print("Amharic Translation:", response.text)
except Exception as e:
print(f"An error occurred: {e}")
# Initialize client
client = genai.Client(api_key="😁😁use ur own") # Remember to secure your API key
# Get user input
user_text = input("Ask here (English text to translate): ")
# Create the prompt with instructions
prompt = f"""
You are a professional translator specializing in English to Amharic translation.
Translate the following to Amharic: "{user_text}"
Respond with only the Amharic translation, nothing else.
"""
try:
# Simplified API call
response = client.models.generate_content(
model="gemini-2.5-flash", # Using the more widely available model
contents=[{
"role": "user",
"parts": [{"text": prompt}]
}],
)
# Print the translation
print("Amharic Translation:", response.text)
except Exception as e:
print(f"An error occurred: {e}")