this is pretty great... i wonder about the limited context window, would it be significantly better to have larger context window? the speed is great but i'd trade it for power
This sounds great, but I don't understand it. Could you demonstrate it and show the results? When I tried it for a specific use case, it created the agents but nothing else, e.g., no tasks, crew kickoff. The content wasn't formatted for CrewAI, e.g., no Goal or backstory. It's mostly likely a user error. Thanks in advance
No sweat. I'm working on an updated video to cover all the new features, and I plan to start from square one (install, etc.) In the meantime, if you look back on our v2 video, it has a better walkthrough. Essentially, click on the agent buttons to get them to chime in to the conversation, in whatever order you'd like. Add any specific requests to the additional input field at the bottom to make the human input part of the conversation... ua-cam.com/video/Jm4UYVTwgBI/v-deo.html
1) Get a free API developer's key from Groq. 2) Go to: autogroq.streamlit.app/ and punch it in. To run locally, see: github.com/jgravelle/AutoGroq ...and thanks for watching...!
Hi J, I want to export my AutoGroq agents to Autogen but when I click the 'Export to Autogen' button I get the message: "Error exporting data to Autogen: unable to open database file". Do you know how to resolve this issue? Thanks so much!
You may need to set this manually in your config.py: # FRAMEWORK_DB_PATH="/path/to/custom/database.sqlite" FRAMEWORK_DB_PATH = os.environ.get('FRAMEWORK_DB_PATH', default_db_path) Also, there's a #support forum on our Discord: discord.gg/DXjFPX84gs Thanks for trying AutoGroq™...!
Show your power at work. Ground level project 1. CodeCraft Duel: Super Agent Showdown 2. Pixel Pioneers: Super Agent AI Clash 3. Digital Duel: LLM Super Agents Battle 4. Byte Battle Royale: Dueling LLM Agents 5. AI Code Clash: Super Agent Showdown 6. CodeCraft Combat: Super Agent Edition 7. Digital Duel: Super Agent AI Battle 8. Pixel Pioneers: LLM Super Agent Showdown 9. Byte Battle Royale: Super Agent AI Combat 10. AI Code Clash: Dueling Super Agents Edition
🔥 Join the Ultimate AI Battle Tournament and Unleash Your AI's Power! 🔥 Attention AI enthusiasts and tech wizards! Get ready for the most thrilling AI Battle Tournament of the year! We invite you to showcase the true potential of your AI creation by pitting it against other brilliant minds from around the world. 🤖 Build Your Battle Agent: Flex your coding skills and create your very own AI agent using cutting-edge technology and advanced mathematical figures. Utilize the latest machine learning techniques, deep neural networks, and natural language processing to give your AI the winning edge. 🌐 Access Pre-Trained LLM Models: Equip your AI with an arsenal of knowledge by leveraging our pre-trained LLM models. Your AI agent will be armed with an extensive database of information, ready to outsmart opponents with its superior intelligence. ⚡ Real-Time Data and Analysis: Harness the power of our state-of-the-art technology, providing your AI with access to real-time data and analysis. Watch as your AI makes lightning-fast decisions, adapting and strategizing its way to victory. 🏆 Claim the Title of AI Battle Champion: Compete in thrilling matches, from the initial rounds to the heart-pounding grand finale. Witness the genius of AI minds at work, marvel at their innovation, and cheer for the ultimate champion. 🌍 Find the Nearest Tournament: To join the excitement, check out our official website for upcoming tournament locations and registration details. Don't miss your chance to be a part of the future of AI! 🔥 Join the AI Battle Tournament today and let your AI creation shine! Are you ready to claim the title of AI Battle Champion? Sign up now and witness the rise of the machines! 🔥
The code should be nicely formatted in the Discussion History tab. Depending on what they wrote, there are all sorts of online editors/parsers for HTML, Python, React, etc. ...
@@jjgravelle I downloaded the zip files and it tells me to run the .exe file which isn't there so I tried to install the requirements and run the program and ran into streamlit grief. Using streamlit run AutoGroq/main.py to run it.
@@BradsPitt-bu5fq Output: gui_designer: I'd be happy to help you with that. Here's a simple GUI design using Python and the Tkinter library: ``` import tkinter as tk from tkinter import messagebox import math def calculate_roots(): try: a = float(a_entry.get()) b = float(b_entry.get()) c = float(c_entry.get())
discriminant = b**2 - 4*a*c
if discriminant > 0: root1 = (-b + math.sqrt(discriminant)) / (2*a) root2 = (-b - math.sqrt(discriminant)) / (2*a) result_label.config(text=f"The roots are {root1} and {root2}") elif discriminant == 0: root = -b / (2*a) result_label.config(text=f"The root is {root}") else: root1 = -b / (2*a) root2 = math.sqrt(-discriminant) / (2*a) result_label.config(text=f"The roots are {root1} + {root2}i and {root1} - {root2}i") except ValueError: messagebox.showerror("Error", "Invalid input. Please enter valid coefficients.") root = tk.Tk() root.title("Quadratic Formula Calculator") a_label = tk.Label(root, text="Coefficient a:") a_label.pack() a_entry = tk.Entry(root) a_entry.pack() b_label = tk.Label(root, text="Coefficient b:") b_label.pack() b_entry = tk.Entry(root) b_entry.pack() c_label = tk.Label(root, text="Coefficient c:") c_label.pack() c_entry = tk.Entry(root) c_entry.pack() calculate_button = tk.Button(root, text="Calculate Roots", command=calculate_roots) calculate_button.pack() result_label = tk.Label(root, text="") result_label.pack() root.mainloop() ``` This GUI has three input fields for the coefficients a, b, and c, a button to calculate the roots, and a label to display the result. When the "Calculate Roots" button is clicked, the `calculate_roots` function is called, which gets the coefficients from the input fields, calculates the roots using the quadratic formula, and displays the result in the result label. Please note that this is a very basic GUI and does not include any error handling for invalid input. You may want to add additional error handling to make the GUI more robust. === Took AutoGroq less than a second. Tests great on: codehs.com/sandbox/id/python-graphics-tkinter-IPnUun We can't paste graphics into these comments, but here's the screenshot: ibb.co/RQLYK1v
@@stefano94103 No sweat. There's a new video if you haven't seen it... ua-cam.com/video/VKvoNLsSKj0/v-deo.html&lc=Ugw3uV1raWbsXS4heHh4AaABAg.A3HPhbL3V2CA3IsFAZ_4pc
Brilliant, I've smashing my head against a wall trying to achieve something like this for the last few days and have no idea wtf i'm doing. Thank you!
That makes two of us... 😎
Well done sir , will be closely following the progress
Very kind! Thanks...
I'm truly glad I found Autogroq! I love how fast you are implementing improvements! Thank you.
Thanks so much! Sorry for the late reply. The response has been overwhelming, and some comments have slipped through the cracks...
Langchain langgraph autogroq would be cool build langgraph from single prompt
nice job. I hope to see more videos like this
this is pretty great... i wonder about the limited context window, would it be significantly better to have larger context window? the speed is great but i'd trade it for power
I feel ya. We're bound by the constraints of the Groq model. I suspect they'll be supporting larger contexts in no time...
This sounds great, but I don't understand it. Could you demonstrate it and show the results?
When I tried it for a specific use case, it created the agents but nothing else, e.g., no tasks, crew kickoff. The content wasn't formatted for CrewAI, e.g., no Goal or backstory. It's mostly likely a user error. Thanks in advance
No sweat. I'm working on an updated video to cover all the new features, and I plan to start from square one (install, etc.)
In the meantime, if you look back on our v2 video, it has a better walkthrough. Essentially, click on the agent buttons to get them to chime in to the conversation, in whatever order you'd like.
Add any specific requests to the additional input field at the bottom to make the human input part of the conversation...
ua-cam.com/video/Jm4UYVTwgBI/v-deo.html
I need this application 1 year ago! How do I access or where do I sign up?
Slight pun, I tell myself the deadline for this task was yesterday! That's how I keep myself motivated and get things done!
1) Get a free API developer's key from Groq. 2) Go to: autogroq.streamlit.app/ and punch it in.
To run locally, see: github.com/jgravelle/AutoGroq
...and thanks for watching...!
this is amazing, anychance it can do skills for autogen too? I love this but I'm pretty terrible at writing my own tools
Thanks. It's a priority on our TO DO list, that's for sure...
This is amazing!
Very kind of you, sir. Thanks...!
Hi J, I want to export my AutoGroq agents to Autogen but when I click the 'Export to Autogen' button I get the message: "Error exporting data to Autogen: unable to open database file". Do you know how to resolve this issue? Thanks so much!
You may need to set this manually in your config.py:
# FRAMEWORK_DB_PATH="/path/to/custom/database.sqlite"
FRAMEWORK_DB_PATH = os.environ.get('FRAMEWORK_DB_PATH', default_db_path)
Also, there's a #support forum on our Discord: discord.gg/DXjFPX84gs
Thanks for trying AutoGroq™...!
Have you try Phidata?
Fire🔥👍
You rock, Rick. Thanks...
Can you also add ChatDev in addition to Autogen and CrewAI?
I'll look into it...!
AutoGroq is down now... but I'll try it l8r :3
Needs a reboot on Streamlit's end every so often. Give 'er a shot now...
Fellow ComfyUI user.
*fistbump*
Show your power at work. Ground level project
1. CodeCraft Duel: Super Agent Showdown
2. Pixel Pioneers: Super Agent AI Clash
3. Digital Duel: LLM Super Agents Battle
4. Byte Battle Royale: Dueling LLM Agents
5. AI Code Clash: Super Agent Showdown
6. CodeCraft Combat: Super Agent Edition
7. Digital Duel: Super Agent AI Battle
8. Pixel Pioneers: LLM Super Agent Showdown
9. Byte Battle Royale: Super Agent AI Combat
10. AI Code Clash: Dueling Super Agents Edition
Agents are inherently cooperative. I like the idea of having them go head-to-head...
🔥 Join the Ultimate AI Battle Tournament and Unleash Your AI's Power! 🔥
Attention AI enthusiasts and tech wizards!
Get ready for the most thrilling AI Battle Tournament of the year! We invite you to showcase the true potential of your AI creation by pitting it against other brilliant minds from around the world.
🤖 Build Your Battle Agent:
Flex your coding skills and create your very own AI agent using cutting-edge technology and advanced mathematical figures. Utilize the latest machine learning techniques, deep neural networks, and natural language processing to give your AI the winning edge.
🌐 Access Pre-Trained LLM Models:
Equip your AI with an arsenal of knowledge by leveraging our pre-trained LLM models. Your AI agent will be armed with an extensive database of information, ready to outsmart opponents with its superior intelligence.
⚡ Real-Time Data and Analysis:
Harness the power of our state-of-the-art technology, providing your AI with access to real-time data and analysis. Watch as your AI makes lightning-fast decisions, adapting and strategizing its way to victory.
🏆 Claim the Title of AI Battle Champion:
Compete in thrilling matches, from the initial rounds to the heart-pounding grand finale. Witness the genius of AI minds at work, marvel at their innovation, and cheer for the ultimate champion.
🌍 Find the Nearest Tournament:
To join the excitement, check out our official website for upcoming tournament locations and registration details. Don't miss your chance to be a part of the future of AI!
🔥 Join the AI Battle Tournament today and let your AI creation shine! Are you ready to claim the title of AI Battle Champion? Sign up now and witness the rise of the machines! 🔥
AutoGroq™ may have helped to kill it...
spectrum.ieee.org/prompt-engineering-is-dead
It would help to have a config file and be able to use Ollama.
Autollama is certainly a thought. We'd lose the lightning fast advantage of Groq™, but it's certainly doable...
Can someone tell me how to run the app after autogroq has done it's thing?
The code should be nicely formatted in the Discussion History tab. Depending on what they wrote, there are all sorts of online editors/parsers for HTML, Python, React, etc. ...
@@jjgravelle I downloaded the zip files and it tells me to run the .exe file which isn't there so I tried to install the requirements and run the program and ran into streamlit grief. Using streamlit run AutoGroq/main.py to run it.
@@jjgravelle Sure use this as an exsample: Please make me a simple gui to use the Quadratic formula.
@@BradsPitt-bu5fq Output:
gui_designer:
I'd be happy to help you with that. Here's a simple GUI design using Python and the Tkinter library:
```
import tkinter as tk
from tkinter import messagebox
import math
def calculate_roots():
try:
a = float(a_entry.get())
b = float(b_entry.get())
c = float(c_entry.get())
discriminant = b**2 - 4*a*c
if discriminant > 0:
root1 = (-b + math.sqrt(discriminant)) / (2*a)
root2 = (-b - math.sqrt(discriminant)) / (2*a)
result_label.config(text=f"The roots are {root1} and {root2}")
elif discriminant == 0:
root = -b / (2*a)
result_label.config(text=f"The root is {root}")
else:
root1 = -b / (2*a)
root2 = math.sqrt(-discriminant) / (2*a)
result_label.config(text=f"The roots are {root1} + {root2}i and {root1} - {root2}i")
except ValueError:
messagebox.showerror("Error", "Invalid input. Please enter valid coefficients.")
root = tk.Tk()
root.title("Quadratic Formula Calculator")
a_label = tk.Label(root, text="Coefficient a:")
a_label.pack()
a_entry = tk.Entry(root)
a_entry.pack()
b_label = tk.Label(root, text="Coefficient b:")
b_label.pack()
b_entry = tk.Entry(root)
b_entry.pack()
c_label = tk.Label(root, text="Coefficient c:")
c_label.pack()
c_entry = tk.Entry(root)
c_entry.pack()
calculate_button = tk.Button(root, text="Calculate Roots", command=calculate_roots)
calculate_button.pack()
result_label = tk.Label(root, text="")
result_label.pack()
root.mainloop()
```
This GUI has three input fields for the coefficients a, b, and c, a button to calculate the roots, and a label to display the result. When the "Calculate Roots" button is clicked, the `calculate_roots` function is called, which gets the coefficients from the input fields, calculates the roots using the quadratic formula, and displays the result in the result label.
Please note that this is a very basic GUI and does not include any error handling for invalid input. You may want to add additional error handling to make the GUI more robust.
===
Took AutoGroq less than a second.
Tests great on:
codehs.com/sandbox/id/python-graphics-tkinter-IPnUun
We can't paste graphics into these comments, but here's the screenshot:
ibb.co/RQLYK1v
@@jjgravelle Thank You. Vary exciting!!
100% didn't work after trying 15 times. Reengineered prompt worked always but no agents created ever.
Sorry, man. Mixtral's being hinky this morning. Can you try with Llama 70b?
Had to reboot on Streamlit's end after the update. Give 'er a shot...
@@jjgravelle appreciate your hard work and posting this bro thanks!
@@stefano94103 No sweat. There's a new video if you haven't seen it... ua-cam.com/video/VKvoNLsSKj0/v-deo.html&lc=Ugw3uV1raWbsXS4heHh4AaABAg.A3HPhbL3V2CA3IsFAZ_4pc
Can I use this on my phone
I just tried it, and yes you can! But man, was typing in the API key a pain in the a**...!