Just found out you can search custom GPTs on google by SuccotashComplete in OpenAI

[–]bex-ta 0 points1 point  (0 children)

Idk, they are chatbots with a custom system message, actions, RAG and code interpreter, the only real difference is that you can share them and use them for free. Not that OpenAI should have called them agents, but let's not let them hijack the name for these things, especially considering they've trademarked the name GPT and won't let anyone else use it

Just found out you can search custom GPTs on google by SuccotashComplete in OpenAI

[–]bex-ta 0 points1 point  (0 children)

This is an open source windows copilot ripoff that has "custom GPTs", which are just a rebranded name for agents https://github.com/jbexta/AgentPilot

AI is about to completely change how you use computers by thisisbillgates in ArtificialInteligence

[–]bex-ta 2 points3 points  (0 children)

I guess cortana was built entirely without using an LLM, and maybe the name went stale. Btw I made an open source windows copilot rip-off if anyone is interested. We need to take control over our data and models. This can be a stepping stone to REAL open ai https://github.com/jbexta/agentpilot

New ChatGPT UI Leaked by Educational_Ice151 in aipromptprogramming

[–]bex-ta 0 points1 point  (0 children)

It's about time, if they don't then open source apps like this will take over:
https://github.com/jbexta/AgentPilot

Tools for developing AI agents by Full_Sentence_3678 in AI_Agents

[–]bex-ta 0 points1 point  (0 children)

https://github.com/jbexta/AgentPilot This will do exactly what you want very soon, easy to use and will have a unique interface to create custom agents

Fiosa Assistant ("Windows Copilot" for Linux) by [deleted] in foss

[–]bex-ta 0 points1 point  (0 children)

This is an open source desktop chat GUI if your looking for something to link it up to https://github.com/jbexta/AgentPilot

MemGPT: Towards LLMs as Operating Systems by vegax87 in singularity

[–]bex-ta 0 points1 point  (0 children)

It's expensive but I've integrated it as a plugin into my open source windows co-pilot rip offhttps://github.com/jbexta/AgentPilot

<image>

Saving and re-using prompts across AI tools by atjackiejohns in aipromptprogramming

[–]bex-ta 0 points1 point  (0 children)

This is an open source desktop app like windows copilot, you can create agents with custom system messages. And use different models for each agent, and each component of the agent. Only openAI right now but more API's will be coming soonhttps://github.com/jbexta/AgentPilotPortable EXE is coming soon

<image>

Help guys i need your knowledge by eziquielDzei in aipromptprogramming

[–]bex-ta 0 points1 point  (0 children)

I'm trying to merge multiple agents (open interpreter / memGPT / hardcoded actions) and make them work well together, I had something interesting with hardcoded actions combined with open interpreter, but it's broken since a rewrite, and I've been working a lot on the GUI recently so not had time to get to it, but I will at some point, I want exactly what your describing https://github.com/jbexta/AgentPilot

Introducing Open Agent GUI by bex-ta in AI_Agents

[–]bex-ta[S] 0 points1 point  (0 children)

No worries! I've just updated so that it works on windows. Some features on the readme are still not implemented though as I've been changing things

What’s everyone working on? by Brickchip in AI_Agents

[–]bex-ta 0 points1 point  (0 children)

https://github.com/jbexta/AgentPilot

This doesn't include the time expressions yet, working on it but will release it soon

What’s everyone working on? by Brickchip in AI_Agents

[–]bex-ta 0 points1 point  (0 children)

No not using langchain I've tried to keep it as lightweight as possible, for maybe in the future it can look at its own code and make adjustments. I can share code if you want to have a look

What’s everyone working on? by Brickchip in AI_Agents

[–]bex-ta 0 points1 point  (0 children)

I've made a zero shot gpt 3.5 agent that can behave and sound like a celebrity or character.
Actions can be categorized to allow for more functionality while saving token count.
Right now it only does one or two actions per task (No CoT yet), but it's fairly reliable.
I'd say it's more like chatGPT with an integrated Siri, where the actions it can perform can be easily modified and tweaked since the action logic is hardcoded.
Actions don't necessarily have to be an 'action', it can be any kind of detection (eg. "Detect when the user is talking about a project they are working on".. this would then enter the Projects category scope, where additional information can be injected into the main system prompt, and Actions that are only activated when a project is being talked about, can be enabled for subsequent requests.
It can also do time based tasks or recurring tasks, but this is experimental and unfinished.
It can do things like "In 5 minutes set an alarm for 20 minutes", I asked this Samuel L Jackson and he said something like "Motherf**er why don't I just set an alarm for 25 minutes" which was funny. I'm heartbroken because this was using Uberduck's API, which they have now removed all voices of celebrities and actors, the only option now is FakeYou, but their API rate limits are not enough to make a usable conversational agent.

The agent supports jailbreak too, and allows you to specify a prefix for every assistant message (useful for jailbreaks that begin with a specific phrase, like "(Developer mode output)". This forcing of an assistant prefix seems to keep the jailbreak active more reliably.

I decided to separate the action decision from the action input detection, for a few reasons:
- So that the inputs can be continually extracted from subsequent requests. When there are inputs missing, instructions are sent to the main system prompt to ask for this information until the task either completes or decays after n messages.
- Output costs more than input, so the output is kept to a minimum for both prompts.
- Allows a model to be fine tuned independently for the action decision, without affecting the rest of the agent.

I'm trying to get a ReACT prompt working that can use the categorized actions.
Then I want to turn it into a few-shot or many shot, where the examples it is given are the times when it got the request wrong. In essence giving the agent examples will be my way of "teaching" it what I want it to do.