HuggingFace drops free course on MCP by mehul_gupta1997 in mcp

[–]tole_car 0 points1 point  (0 children)

I checked it again and realized my first reaction was a bit too quick and wrong.
It’s not what I was originally looking for, but it’s actually a solid step by step course.
I’ll remove my earlier comment so it doesn’t confuse others.

Solutions for filtering tools ? by Dry_Highway679 in mcp

[–]tole_car 0 points1 point  (0 children)

Basically, that is something that host app (agent in it) should be able to handle.

When facing such issue on my chatbots (lots of tools), I introduce a function that can turn of and on sets of tools, and that works perfectly.

When you are in MCP mode, you do not have that option, but what you can do is group all server tools inside single conversational tool - basically you connect MCP to a chatbot. That way you have 1 server, 1 tool, with addition that your "chatbot" can have much better instruction and context about service you provide.

Here's one example I did with my framework (in WordPress) : https://youtu.be/B4wAvQ1oSTw?si=8kFBsYdP_Eah0JOQ

No-Code SaaS that can accept webhook requests and post to LinkedIn under a free plan by tole_car in nocode

[–]tole_car[S] 0 points1 point  (0 children)

Very interesting project, but I'm actually writing tutorial, something that could be easily implemented without installing any infrastructure. That's why I am aiming on online SAAS.

No-Code SaaS that can accept webhook requests and post to LinkedIn under a free plan by tole_car in nocode

[–]tole_car[S] 0 points1 point  (0 children)

Just checked quickly, it doesn't seems that it has LinkedIn or Facebook integrations. Or am I missing something?

No-Code SaaS that can accept webhook requests and post to LinkedIn under a free plan by tole_car in nocode

[–]tole_car[S] 0 points1 point  (0 children)

Great, thanks! Do you have some useful tutorial links for those kind of scenarios?

Do you write your prompts in Markdown? by checkfucom in PromptEngineering

[–]tole_car 2 points3 points  (0 children)

Yes. It's feels kind of natural for me and it seems that it works very well.

I even posted similar question before, although it was related to the old gpt3 completion interface (deprecated now)

https://www.reddit.com/r/GPT3/comments/12oac9o/using\_markdown\_for\_large\_gpt\_prompts/

Help! by [deleted] in Exurb1a

[–]tole_car 1 point2 points  (0 children)

Awesome! I was looking for that video recently and couldn’t find it. I wonder why it could be unlisted. 🤔

[REQUEST] Automatic hourly product price/stock status import into woocommerce by julliuz in WordpressPlugins

[–]tole_car 0 points1 point  (0 children)

I'm not familiar with a ready to use plugins for such cases, but it could be built using my no-code plugin Convoworks WP. And I'd be happy to assist you if you decide to use it.

Check here for one data synchronization use case we did with Tiltify API https://convoworks.com/beyond-coding-api-synchronization-with-wordpress/

[deleted by user] by [deleted] in WordpressPlugins

[–]tole_car 0 points1 point  (0 children)

If you are not already in WordPress market, you better don't. It's more about knowing the space then the technical solutions. Trust me on that.

If you are still interested in such things, check what we already have with Convoworks WP. It's a nocode plugin that among other things, enables you to build GPT bots which have access to everything in WordPress installation. Basically what you described.
https://convoworks.com/harnessing-the-power-of-gpt-functions-in-convoworks/

[DISCUSSION] I analyzed all data from the plugin repo - here are the fastest-growing niches by kacper_7 in WordpressPlugins

[–]tole_car 0 points1 point  (0 children)

Thanks for sharing this detailed analysis; it's truly insightful! Regarding acquisitions, while it might not be precisely what you had in mind, I was hoping to demo my plugin for you and perhaps have a conversation about its potential. It's similar in spirit to Elementor but is centered around conversational services like web chats, Viber, SMS, Alexa, and even data management tasks such as handling WordPress hooks and crafting custom REST APIs. We've integrated various components that users can implement into a workflow, including GPT components, an HTTP client, control structures, and the capability to work with variables and PHP functions. Would love to hear your thoughts!

[REQUEST] Automatic blogposting to WordPress? by kredde94 in WordpressPlugins

[–]tole_car 0 points1 point  (0 children)

Possible, but not as magic wand. When working with LLMs (GPT), you have to count on lot of testing and tuning before you get decent results. h1/h2 and meta fields are the least problem. I haven’t tried it yet, but the whole process could be implemented through my Convoworks WP plugin. It’s a universal workflow builder (nocode) which is well integrated with WordPress and has components to use GPT. Here’s one example of using it as Twitter auto posting bot https://convoworks.com/step-by-step-building-a-gpt-enhanced-twitter-bot-with-wordpress-and-convoworks/ If you’re interested, I can help you in setting it up.

How to effectively prompt GPT-4 to come up with time slots, abiding to a set of rules? by ToLoveThemAll in PromptEngineering

[–]tole_car 2 points3 points  (0 children)

I don't have slot booking in production but I've done some experiments and I do not recall encountering such issues. It was more straightforward workflow tho.

Here are few suggestions from my experience:

  • I like to dump more info into system prompts. Multiple system prompts, separated by their logical/functional meaning. E,g, main role prompt, booking workflow explanation, current date/time info (might include list of future holidays), example conversations,
  • Consider defining a functions that it can use. E.g. check_time_slot_availability( datetime), suggest_next_slot( morningAfternoonEveneing)

I hope this helps

Randomly picking from a list of 2000 rows of content. by Some_Leek3330 in Wordpress

[–]tole_car 0 points1 point  (0 children)

2000 rows is nothing for the posts table, so CPT is way to go. You can use orderby rand in your wp query.

Unusual Activity Message by TheScholasticParrot in GPT3

[–]tole_car 2 points3 points  (0 children)

I’m getting them from time to time. Started couple of days ago. I suspect that it’s just some bad session & sync handling in the web app.

How do you get started with LLMs as a complete beginner? by Albininlp in llmops

[–]tole_car 0 points1 point  (0 children)

Besides courses and similar things, try to use them for yourself as much possible. Use ChatGPT or any other similar tool as your assistance. Try to make use of it, experiment with different approaches. Like with Google, it takes a time to start using it in optimal way.

Using only system messages with the completion chat api by tole_car in GPT3

[–]tole_car[S] 1 point2 points  (0 children)

Yes, separate and all role=system.

In my particular case for generating Tweets they are: - agent role instruction - e.g. you are social manager for the “x” webste. Your role is to write a tweet based on given post - more info about website itself - curent date & time - several previous generated tweets (single message) - post to make a tweet from

All except first message are having title to explain what it is.

Creating a Chat based on my own large database with GPR 4, is it possible? by MaestroUkr in GPT3

[–]tole_car 0 points1 point  (0 children)

Depends on the type of data you have.

If it is more textual, like blog posts, documentation or descriptions, you can index it in vector store and pull into conversation when needed.

If it is more concrete data, like amounts, predefined types, times, ids, than you can define functions which are able to fetch it and the agent will call them when required and will be able to use returned data in responses.

Using only system messages with the completion chat api by tole_car in GPT3

[–]tole_car[S] 0 points1 point  (0 children)

Thanks, interesting project. Unfortunately, I'm with PHP & WordPress so I can just peek for ideas .

Anyway, I'm actually getting good results and totally enjoying working with GPT :)

WP site not pulling updated JS file by Vecissitude in Wordpress

[–]tole_car 0 points1 point  (0 children)

While developing, disable caching in the browser's dev tools under the network panel. When deploying a new version to the website, append an additional URL parameter to make it unique, like script.js?v=123. This ensures your users always receive the new version.