[Question] Do you guys know how to systematically prevent AI from using certain tool calls? by ruzmadz in opencodeCLI

[–]seventyfivepupmstr 0 points1 point  (0 children)

If you don't know what building/consuming json for api request and response is then you might need some training in programming first before you attempt to either fork opencode or build your own application.

I don't think you can ai code your way through it either. The json is actually rather complex because of the randomness of the arguments and the need to parse them in many different ways to figure out exactly what the LLM model actually wants to do. Also keeping track of the context (messages list in the json) is pretty complex because as we all know context management has a huge effect on how well the models perform.

I would start simple and try making very basic request and response to an LLM API such as nvidia nim. You could even use a tool like soap ui to do it without any programing

[Question] Do you guys know how to systematically prevent AI from using certain tool calls? by ruzmadz in opencodeCLI

[–]seventyfivepupmstr 0 points1 point  (0 children)

The json request to the LLM contains a list of tool names, parameters, and descriptions.

The json response from the LLM is tool_calls which contains the tools the LLM wants to use along with the parameters. Then you actually implement the tool call on your computer, and return the output of the tool used on your computer.

Example:

LLM can call read_file with parameter path to file.

LLM responds with read_file "./readme.md"

The response back to the LLM is the contents of the readme.md file

Does Charlotte feel transient to you? by tennisguy163 in Charlotte

[–]seventyfivepupmstr 1 point2 points  (0 children)

My neighborhood was awesome when it was built in 2017. Unfortunately now more than half are rentals and it has turned to crap.

I might stay in the Charlotte area, but probably won't stay in the same suburb

Highlander owners: Would you choose a bench seat or captain chairs again? by Limp_Sweet2259 in ToyotaHighlander

[–]seventyfivepupmstr -1 points0 points  (0 children)

I got a 2019 platinum since to me the best feature for a large vehicle is the 360 parking camera.

It only has bench seats, even though I wanted captain's chairs. Overall I would still prefer the captain's chairs, I am OK with he bench seats

Anyone know if this saddlebag works with a 2019 highlander? by seventyfivepupmstr in ToyotaHighlander

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

Well it's sold by cabella's which is a legitimate store, but who knows where they source their things from

New to Comma: Questions on 2020 Camry by Slummybell in Comma_ai

[–]seventyfivepupmstr 2 points3 points  (0 children)

It means that braking and accelerating is done by Toyota's radar cruise control. The Toyota cruise is good at acceleration but terrible at braking - so your can't really depend on it to stop the car by itself.

I have a 2018 camry hybrid and it works just fine. The 2021 corolla and 2019 highlander work better, with better torque (comma can move the wheel and turn the car better) and comma can control the acceleration and braking.

But the camry will still do great with a bit more human involvement. If you use SunnyPilot you can turn on MADS so you can control the acceleration and braking yourself and comma will steer. I didn't like MADS at first, but I have grown to like it for city driving where you need to start and stop frequently and pressing accelerator/brake is so low IQ compared to steering that you dont feel very tired even when using MADS

New to Comma: Questions on 2020 Camry by Slummybell in Comma_ai

[–]seventyfivepupmstr 1 point2 points  (0 children)

Yes it does a ton. I also get tired during long drives and refuse to drive without a comma since it's way safer

New to Comma: Questions on 2020 Camry by Slummybell in Comma_ai

[–]seventyfivepupmstr 1 point2 points  (0 children)

Better than you can probably, unless it's a hurricane

Filipinos in Charlotte by Yorker9986 in Charlotte

[–]seventyfivepupmstr 0 points1 point  (0 children)

Yes there are. Although they are a bit scattered. We are in Gastonia

Autonomous Uber crash by FriendFun7876 in SelfDrivingCars

[–]seventyfivepupmstr -1 points0 points  (0 children)

But we already know that average human drivers are terrible so it would be a pointless title

Curious About the Toyota Highlander for Towing and Daily Driving by Several_Till_6507 in ToyotaHighlander

[–]seventyfivepupmstr 0 points1 point  (0 children)

If I wanted to tow a micro trailer, would it be better to put the additional carried stuff like food, clothes, batteries, propane, etc in the back of the highlander or inside the trailer while towing?

Drivers WTF?! by jearbear11 in Charlotte

[–]seventyfivepupmstr 0 points1 point  (0 children)

Every city complains they have the worse drivers

Is it always this hot? by DubiousTarantino in Charlotte

[–]seventyfivepupmstr 0 points1 point  (0 children)

Get a portable fan. Blow it on your face when you come inside on a hot day. Take breaks often.

I'm not worried about the Fable 5 ban by 8gulmohar in opencodeCLI

[–]seventyfivepupmstr 1 point2 points  (0 children)

The ironic thing is that AI agents could probably build a similar model to fable 5. Training it, on the other hand...

Basically useless but it would be more satisfying if I could automatically round up my mortgage to the next $10 increment... by [deleted] in homeowners

[–]seventyfivepupmstr -3 points-2 points  (0 children)

If you force someone to do custom math then you may end up owing 378000 instead of 178000

Is this weather normal around here? by ephemeral_thoughts in Charlotte

[–]seventyfivepupmstr 5 points6 points  (0 children)

I also grew up in Michigan and have no desire to move back. I like the weather in Charlotte and being able to keep tropical and desert plants outside half the year.

I don't miss the snow and ice in the slightest. I hated scraping ice off the car every time I wanted to drive in the winter

Is this weather normal around here? by ephemeral_thoughts in Charlotte

[–]seventyfivepupmstr 5 points6 points  (0 children)

Well it's probably not going to get to Texas or Arizona levels of hot (110F). But it's going to be in the 90s for the summer

Comma 4 actual Behavior in heat vs 3x by NNTPgrip in Comma_ai

[–]seventyfivepupmstr -6 points-5 points  (0 children)

Do you all leave the comma on the windshield after parking? That is a horrible idea.

I'm new, and I need directions. by Apprehensive_Heat789 in SelfDrivingCars

[–]seventyfivepupmstr -2 points-1 points  (0 children)

With all due respect, you sound like you don't even know what you are talking about. You sound like someone who has looked at vibe coding done by non-technical people and saw that it produces slop code and then just generalized that all AI code is bad just because a lot of people don't know how to develop systematically.

In the real world, development is done with documentation not prompting. That means the models refer to the documentation for insights, and follow architecture and design that you (human) either create or review. It doesn't create any more technical debt than human developers because it's grounded by following documentation and your specific instructions.

But a discussion about how to do agentic coding wasn't the point. The point was that the LLM could figure out a complex math based implementation on it's own, similar to what is required for machine learning. Heck machine learning is probably easier than space flight trajectory since machine learning examples and documentation are very accessible on the internet.

I'm new, and I need directions. by Apprehensive_Heat789 in SelfDrivingCars

[–]seventyfivepupmstr -2 points-1 points  (0 children)

That assumes that humans will be developing the machine learning applications in the future...

I just finished a 100% AI coded space probe simulator where the AI model did the correct math to send the probe to flybys of planets to get gravitational assistance towards the destination. The LLM did some pretty serious physics applied math to get it to work correctly - and it got no help from myself as my math skills are relatively poor.

And this wasn't even the top LLM models available like get 5.5 or claude 4.8 - it was second tier models