Free Tools
Powerful Tools, Unlimited Possibilities
QR Code generator

- Create QR Code
- Download It
- Pixel Limitation up to 1000
- Generate one at a Time.
E-commerece Calculator

- Calculate Total Profit
- No GST Calculator
- Slow Calculations
Image to Text Converter

- Image to Text
- Basic Features
- Copy Paste Options
from groq import Groq
client = Groq(api_key=os.environ.get('GROQ_API_KEY'))
MODEL = "llama-3.3-70b-versatile"
th = Toolhouse(api_key="th-bonVX0pS1XQl7SCV8-xoqkOWAd7xUohEuIVgcgKyR00")
messages = [{
"role": "user",
"content": "go ahead and search for a Artificial intelligence on google,get the URL of the top 5 ranking page and then scrap the content from each URL you get from google.analyze the content from these pages and create even a better looking content for my website.make sure to add ai generated images to the post ",
}]
response = client.chat.completions.create(
model=MODEL,
messages=messages,
tools=th.get_tools(),
)
tool_run = th.run_tools(response)
messages.extend(tool_run)
response = client.chat.completions.create(
model=MODEL,
messages=messages,
tools=th.get_tools(),
)
print(response.choices[0].message.content)