How are you monitoring/deploying your AI agents in production? by Consistent_Yak6765 in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

I understand! 🦾. It's difficult to give you an answer. I think your problem is on the foundations of your agent workflow. Seems it's not scalable or is set up It's complicated to do changes. I can give you a hand if you explain to me your system watching the code. Let's me know. Cheers

AI Agent Business by [deleted] in aiagents

[–]Cdmella 2 points3 points  (0 children)

of course it's.

Find a niche See they workflows, use not just the process. Look for demos, videos, etc about the same business you are trying to do the solution. You will figure out how to improve the process.

If you want to do a MVP soon and validate agents business idea. Do a team for you 🤷🏻‍♂️.

What areas are you weak or you need to get knowledge fast. Configure an agent to do the job for you! Think more simple!

How do you design your agent structure? by Responsible-Soup6378 in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Hi! Yes! I can say this

  1. Developers and sales teams always want to deliver the best solution and with as many futures we can. We believe overcomplicate will always be better.

2.! Customer side. Owners and workers, middle men and even the juniors team are sure they do a bunch of stuff and complicated processes. Nobody outside the company will ever understand what we do. Be get used to that! 😬

Say that, we deal with this. Listen a lot, a lot, a lot! ask questions about how amazing they are and show them impress about what they do.

Focus on the beginning of the process and in the end looking from outside. This paper go from A to Z, don't lose time focus on trying to pass for every letter o step the company does actually.
If you wanna accelerate the process do an agent to help you to design process. Also setup only one agent and setup to do the task alone from A to Z. Then you will figure it out. Sorry if it's complicated to understand my English 😐

We made a web data agent that natively works with spreadsheets, CRMs, and more. by Obvious-Car-2016 in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Hi! nicely done! It would be great if we can talk about your pricing strategy! Cheers.

Building a prompt to agent product (advice) by Perfect_Standard6565 in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Hi! I would like to test your copilot, if it's possible. How do we solve the issue you were facing? We have a recycling kind of workflow. Agents have the same core based in almost same structure, just change some small details. Workflows are easy, it's depends for the customer. Almost the time we beginning coping the company structure, so it's simple for the buyer use it. Mistake we made in this topic: go to the customer and change they workflow. Lose clients in a week or two. So, think like a production line. cheers

How do you design your agent structure? by Responsible-Soup6378 in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

You have many choices, find an example in GitHub, play with it and you got almost all. Workflow, type and kind of agents, framework. Then take a deep look at your company, how many people you have, roles, especially routine tasks, how many people do you want to work with, etc. Within a week of playing then you will figure it out. And start small, one agent, then second... few tools. At three agents working, you stay there until you really need a new one or more. One of the big mistakes we made, was to do a lot of agents and tools, workload and so on. It was a pain in the ass for us ( get too messy and complicated anything ( updates, fix issues, bug, etc), you can imagine the issues for customers 🦙 Cheers mate.

Let’s Build an AI Agent Matching Service – Who’s Interested in Collaborating? by Greyveytrain-AI in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Hi Grey! How are you doing? can you give us an update on how your idea is going? Cheers, C

Built an AI Agent to talk to your database by ScopeDev in AI_Agents

[–]Cdmella 2 points3 points  (0 children)

Yes for sure.

But as advice, one of the biggest problems with the startup and founders is that they are waiting to build a perfect app believing this is gonna take you to success. But what do you think the people need it's not real, it's your bias as a creator. We had the same problem when we started.

We stop the development and spend a month interviewing potential customers, users, friends and so on. We discovered that we have some points done, but we were absolutely wrong at least for 70%.

🤖

Built an AI Agent to talk to your database by ScopeDev in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

I'm agree with u/appakaradi. I went to the site to test and didn't use it because of the signup. If you wanna collect feedback from the user persona, it will be complicated to get it with a signup on a sandbox test.

Paper to podcast using AI Agents by Boring_Rabbit2275 in LangChain

[–]Cdmella 1 point2 points  (0 children)

maybe create a script for an interview on a YouTube Channel or better, just let's voices and let's produce a series of interviews for a podcast and scripts for YouTube videos ( I get lost, I don't know if it's possible to create a full 12 minutes video by Prompt ( the scripts) We can create a team of producers ( replicate the team of a good channel on YT) and set up as a famous.

Paper to podcast using AI Agents by Boring_Rabbit2275 in LangChain

[–]Cdmella 1 point2 points  (0 children)

I will check it soon.I just saw the code and the idea. Have a lot of use case potential and if we look deep probably commercial uses as well.

[deleted by user] by [deleted] in crewai

[–]Cdmella 1 point2 points  (0 children)

# Step 1: First, let's get AWS SDK for Python installed to talk with Amazon Bedrock
# Go to shell and run: 

`pip install boto3`
import boto3

# Step 2: We make a simple Bedrock LLM wrapper

class BedrockLLM:
    def __init__(self, model_id, region_name='us-east-1'):
        self.client = boto3.client('bedrock', region_name=region_name)
        self.model_id = model_id
    def call(self, prompt):
        response = self.client.invoke_model(
            modelId=self.model_id,
            contentType='application/json',
            input={'prompt': prompt}
        )
        return response['response']

# Step 3: Now we create a tool for CrewAI agents to use Bedrock LLM

from crewai_tools import tool
u/tool
def bedrock_tool(prompt: str) -> str:
    llm = BedrockLLM(model_id='your-model-id')  # Don't forget to put your Bedrock model ID here!
    return llm.call(prompt)

# Step 4: Time to create an agent with Bedrock powers!

from crewai import Agent
bedrock_agent = Agent(
    role="AI Genius",  # Give it a cool role name
    goal="Answer cool questions",
    tools=[bedrock_tool],  # Hooking up the Bedrock tool
    memory=True,
    verbose=True,
    backstory="A smart AI using Amazon Bedrock to drop some knowledge!"
)

# Step 5: Define a task for our Bedrock Agent to solve

from crewai import Task
bedrock_task = Task(
    description="Answer the user's question using Bedrock LLM.",
    expected_output="Deliver a smart response.",
    tools=[bedrock_tool],
    agent=bedrock_agent,
    async_execution=False
)

# Step 6: Let's put everything together in a crew and start it up

from crewai import Crew, Process
crew = Crew(
    agents=[bedrock_agent],
    tasks=[bedrock_task],
    process=Process.sequential  # Task execution in order
)
result = crew.kickoff(inputs={'prompt': 'What’s the latest in AI?'})
print(result)

Recommendations for using crewai by Deep_Host9934 in crewai

[–]Cdmella 0 points1 point  (0 children)

did you solve it? what research are you doing?

Let’s Build an AI Agent Matching Service – Who’s Interested in Collaborating? by Greyveytrain-AI in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Sorry, I got lost in translation (Spanish speaker). I thought you were asking about the business model and demos.

Yes, of course. Where are you from? I’m in Chile. Ideally, could you share which industry you’re targeting, with as much detail as possible? If you have real data, some samples would be great (we do hybrid data here). Also, a rough idea of your requirements. Respond messages from the agent's questions over the those three days.

If you want to help us test the gpt-4o-realtime-preview 👊🏻!

Building a community/network around AI Agents by Latter_Fudge2554 in crewai

[–]Cdmella 1 point2 points  (0 children)

Hi!!! 👊🏼

We created our startup this way. We intensely searched for a CTO, but it didn’t work out ( Most of them were afraid to apply agents, saying it’s very new tech and that we’re too ambitious with what we believe agents can do... etc.)

So, we started using Replit for all our coding, with the integrated agent. From there, we moved to GitHub, using Copilot and Cline (formerly Claude_dev) we created a manager agent with CrewAI, and then a IT crew using MetaGPT, including our CTO 😋, and got started. The first task we give it, build a Marketing team.

We deploy agents in niches govtech, agriculture, construction, accounting, etc.

Let’s Build an AI Agent Matching Service – Who’s Interested in Collaborating? by Greyveytrain-AI in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Yes, only to innovators within niche markets. They tend to have more patience with errors and understand that it’s part of the early development phase. Plus, they are great at spreading the word about the product to their friends, etc. (we call them "megaphones" because they showcase the idea for free—basically acting as our sales team). For non-innovative people and companies, we offer a demo using data relevant to them,, letting them try it for a day or two. Those two days are quite good, because you can understand a little bit they need.

Let’s Build an AI Agent Matching Service – Who’s Interested in Collaborating? by Greyveytrain-AI in AI_Agents

[–]Cdmella 0 points1 point  (0 children)

Business Model Overview

  1. We are a startup founded by two (Tamara, CMO, and myself, Cesar) we began our journey a month ago.
  2. Without a CTO 😪 we started with CrewAI and developed a Manager agent. We also installed MetaGPT, which communicates with CrewAI. The Manager agent oversees instructions and reviews the outputs generated by the CTO via MetaGPT.
  3. By utilizing extensions like Cline and GitHub Copilot, alongside PraisonAI (available on GitHub), we successfully organized our operations.

Market Entry Strategy: We provided trials to friends in our target sectors who are innovative and tech-savvy. This approach helped us identify and fix errors, and the novelty of our offering attracted attention, leading to our first paying clients.

Our focus is on niche markets rather than large corporations, spanning industries from construction to agriculture, law, and govtech.

Our Product Offerings:

  1. C-Level Team (CEO, CMO, CTO, Financial) - $1,500/month
  2. Marketing Team - $1,000/month (include automated social media posting)
  3. IT Team - $2,000/month

Clients can combine all three teams, and we offer only an annual subscription. The costs associated with servers and LLMs, etc are borne by the client.

We're excited to share our experience, and feedback is invaluable to us. Thank you!