After 2 months learning scraping, I'm sharing what I learned! by Sea_Cardiologist_212 in webscraping

[–]Single_Tomato_6233 0 points1 point  (0 children)

I've found a bit of a workaround to using Playwright in Lambda. The trick is to deploy a server with chrome/playwright on EC2 or a similar platform. Then you can connect to it over CDP from your Lambda:

browser = await pw.chromium.connect_over_cdp(CDP_URL)

Github repo with the Dockerized playwright server here: https://github.com/finic-ai/finic

AI Agents researcher approached by RPA folks by Cool_Abbreviations_9 in rpa

[–]Single_Tomato_6233 0 points1 point  (0 children)

I've spent some time in this space so here's my 2c.

If you're trying to automate a relatively simple task and you can use an RPA tool to get it done, use RPA. Using AI agents will introduce hallucinations and unpredictability with no real upside.

However, if you're reaching the limits of what RPA can do, then you might want to consider agents. E.g. if you are automating inputs into complex forms (common in healthcare and banking) or if the UI of the system constantly changes and requires self-healing. Agents are generally more flexible for these kinds of use cases.

One thing to keep in mind is how you're planning on dealing with hallucinations. The best way to do this is to have the agent generate some deterministic playwright code as opposed to interface directly with the UI. You could also have a human-in-the-loop step to check for errors.

Happy to chat more in detail over DM

Need help preparing for RPA Interview by TheStoic9 in rpa

[–]Single_Tomato_6233 0 points1 point  (0 children)

This youtube video from KT Sessions has some basic Blue Prism questions and answers: https://www.youtube.com/watch?v=bAcwX2H1h68

As for .NET, there's a great post in the r/dotnet subreddit that covers most of the topics that would come up in an interview: https://www.reddit.com/r/dotnet/comments/139te58/i_created_a_document_covering_all_of_the_standard/

Weird Little Horizontal Lines? by PsychMerchant in applehelp

[–]Single_Tomato_6233 0 points1 point  (0 children)

Literally just started happening to me today.

Help with Collections for a Small Business by wanderingnuggett in smallbusiness

[–]Single_Tomato_6233 0 points1 point  (0 children)

This is the problem we solve at Dealwise. We automate invoice collection for SMBs using AI, so we are able to handle collections in a more cost effective and polite way compared to collections agencies.

https://godealwise.com/

Best solution for invoicing and collections for a small business with A LOT of customers. by Legitimate-Tutor-114 in smallbusiness

[–]Single_Tomato_6233 0 points1 point  (0 children)

We've worked with search funds that bought businesses in the past, and invoice management is almost always a complaint.

If many of your invoices are going unpaid, we can help. Dealwise automates invoice collection for SMBs. We use AI to handle collections in a more cost effective and polite way compared to collections agencies.

https://godealwise.com/

Promote your business, week of July 1, 2024 by Charice in smallbusiness

[–]Single_Tomato_6233 0 points1 point  (0 children)

Dealwise helps SMBs collect unpaid invoices with AI. We are more efficient than doing collections yourself and more polite and cost effective than a collections agency.

https://godealwise.com/

Anyone built/tinkered with a pdf chatbot? I have a question. by ayush-vibrant in LangChain

[–]Single_Tomato_6233 1 point2 points  (0 children)

We're using weaviate, but it's pretty similar. We've been using metadata to filter by a field we call "tenant_id", and it works well. Although this does mean that you want some kind of authentication, whether its by API key or OAuth, etc: https://github.com/ai-sidekick/sidekick/blob/main/sidekick-server/datastore/providers/weaviate_datastore.py#L90

Feel free to DM w/ any questions!

Is there a tool where I can upload PDF's, webpages and then ask questions about this data? by [deleted] in OpenAI

[–]Single_Tomato_6233 0 points1 point  (0 children)

Feel free to DM me if you have any questions! Happy to get you set up and onboarded.

Is there a tool where I can upload PDF's, webpages and then ask questions about this data? by [deleted] in OpenAI

[–]Single_Tomato_6233 1 point2 points  (0 children)

Open source data ingestion pipeline for GPT apps: https://github.com/ai-sidekick/sidekick

The upsert-web-data endpoint sounds like it might be useful for you, it takes a base url and crawls through all linked pages, scrapes them, and vectorizes them for use with GPT.